Sha256: 9e4acc5509c82db412fc05be4b4348b21137229faf1b0dbfd702e22b607fda12
Contents?: true
Size: 718 Bytes
Versions: 5
Compression:
Stored size: 718 Bytes
Contents
#include "crypto_onetimeauth.h" size_t crypto_onetimeauth_bytes(void) { return crypto_onetimeauth_BYTES; } size_t crypto_onetimeauth_keybytes(void) { return crypto_onetimeauth_KEYBYTES; } const char * crypto_onetimeauth_primitive(void) { return crypto_onetimeauth_PRIMITIVE; } int crypto_onetimeauth(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k) { return crypto_onetimeauth_poly1305(out, in, inlen, k); } int crypto_onetimeauth_verify(const unsigned char *h, const unsigned char *in, unsigned long long inlen, const unsigned char *k) { return crypto_onetimeauth_poly1305_verify(h, in, inlen, k); }
Version data entries
5 entries across 5 versions & 1 rubygems