mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-04-05 03:29:35 +08:00
9 lines
317 B
C
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 |