openldap/libraries/liblmdb/chacha8.h
2020-10-10 12:52:10 +01:00

8 lines
197 B
C

#include <stdint.h>
#include <stddef.h>
#define CHACHA8_KEY_SIZE 32
#define CHACHA8_IV_SIZE 8
void chacha8(const void* data, size_t length, const uint8_t* key, const uint8_t* iv, char* cipher);