summaryrefslogtreecommitdiff
path: root/nist/TestVectorGen/crypto_aead.h
blob: e2ca9b0a90ee103e45b535005fd1ce6405dd11f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

int crypto_aead_encrypt(
	unsigned char *c, unsigned long long *clen,
	const unsigned char *m, unsigned long long mlen,
	const unsigned char *ad, unsigned long long adlen,
	const unsigned char *nsec,
	const unsigned char *npub,
	const unsigned char *k
);

int crypto_aead_decrypt(
	unsigned char *m, unsigned long long *mlen,
	unsigned char *nsec,
	const unsigned char *c, unsigned long long clen,
	const unsigned char *ad, unsigned long long adlen,
	const unsigned char *npub,
	const unsigned char *k
);