#ifndef JADE_STREAM_CHACHA_CHACHA20_IETF_AMD64_REF_API_H
#define JADE_STREAM_CHACHA_CHACHA20_IETF_AMD64_REF_API_H
#define JADE_STREAM_CHACHA_CHACHA20_IETF_AMD64_REF_KEYBYTES 32
#define JADE_STREAM_CHACHA_CHACHA20_IETF_AMD64_REF_NONCEBYTES 12
#define JADE_STREAM_CHACHA_CHACHA20_IETF_AMD64_REF_ALGNAME "ChaCha20-ietf"
#include <stdint.h>
int jade_stream_chacha_chacha20_ietf_amd64_ref_xor(
uint8_t *ciphertext,
uint8_t *plaintext,
uint64_t length,
uint8_t *nonce,
uint8_t *key
);
int jade_stream_chacha_chacha20_ietf_amd64_ref(
uint8_t *stream,
uint64_t length,
uint8_t *nonce,
uint8_t *key
);
#endif