Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / crypto_box / curve25519xsalsa20poly1305 / ref / after.c
blobeb243e22c8f4963a36925d624e43e48666b55b48
1 #include "crypto_secretbox_xsalsa20poly1305.h"
2 #include "crypto_box.h"
4 int crypto_box_afternm(
5 unsigned char *c,
6 const unsigned char *m,unsigned long long mlen,
7 const unsigned char *n,
8 const unsigned char *k
11 return crypto_secretbox_xsalsa20poly1305(c,m,mlen,n,k);
14 int crypto_box_open_afternm(
15 unsigned char *m,
16 const unsigned char *c,unsigned long long clen,
17 const unsigned char *n,
18 const unsigned char *k
21 return crypto_secretbox_xsalsa20poly1305_open(m,c,clen,n,k);