wangyu-udp2raw/lib/chacha20.h
Le.Beta 351329fbaa
Add chacha12 and chacha20
code form sectun
2019-03-19 10:53:47 +08:00

9 lines
317 B
C

#ifndef __CHACHA20_H
#define __CHACHA20_H
#include <stdint.h>
void ChaCha12XOR(uint8_t key[32], uint32_t counter, uint8_t nonce[12], uint8_t *input, uint8_t *output, int inputlen);
void ChaCha20XOR(uint8_t key[32], uint32_t counter, uint8_t nonce[12], uint8_t *input, uint8_t *output, int inputlen);
#endif