Sha256: 0949551db403830e60d0526a2074a12c9cdfc4772ea9706a6ed1e205b676d40c
Contents?: true
Size: 775 Bytes
Versions: 6
Compression:
Stored size: 775 Bytes
Contents
#include "crypto_auth.h" #include "randombytes.h" size_t crypto_auth_bytes(void) { return crypto_auth_BYTES; } size_t crypto_auth_keybytes(void) { return crypto_auth_KEYBYTES; } const char * crypto_auth_primitive(void) { return crypto_auth_PRIMITIVE; } int crypto_auth(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k) { return crypto_auth_hmacsha512256(out, in, inlen, k); } int crypto_auth_verify(const unsigned char *h, const unsigned char *in, unsigned long long inlen,const unsigned char *k) { return crypto_auth_hmacsha512256_verify(h, in, inlen, k); } void crypto_auth_keygen(unsigned char k[crypto_auth_KEYBYTES]) { randombytes_buf(k, crypto_auth_KEYBYTES); }
Version data entries
6 entries across 6 versions & 2 rubygems