Sha256: 5229115c6559d914f97f7e370e609228ad3ea7a19b8d653eb17fd9e4714a4791
Contents?: true
Size: 582 Bytes
Versions: 5
Compression:
Stored size: 582 Bytes
Contents
#include "crypto_box_curve25519xsalsa20poly1305.h" #include "crypto_secretbox_xsalsa20poly1305.h" int crypto_box_curve25519xsalsa20poly1305_afternm( unsigned char *c, const unsigned char *m,unsigned long long mlen, const unsigned char *n, const unsigned char *k ) { return crypto_secretbox_xsalsa20poly1305(c,m,mlen,n,k); } int crypto_box_curve25519xsalsa20poly1305_open_afternm( unsigned char *m, const unsigned char *c,unsigned long long clen, const unsigned char *n, const unsigned char *k ) { return crypto_secretbox_xsalsa20poly1305_open(m,c,clen,n,k); }
Version data entries
5 entries across 5 versions & 1 rubygems