Sha256: e63f0ea8d5ed3ad77ce3f7f61a2106929d2b560705852a772ce60fa29d6c9d9b
Contents?: true
Size: 847 Bytes
Versions: 2
Compression:
Stored size: 847 Bytes
Contents
#ifndef crypto_auth_hmacsha256_H #define crypto_auth_hmacsha256_H #include <stddef.h> #include "export.h" #define crypto_auth_hmacsha256_BYTES 32U #define crypto_auth_hmacsha256_KEYBYTES 32U #ifdef __cplusplus extern "C" { #endif SODIUM_EXPORT size_t crypto_auth_hmacsha256_bytes(void); SODIUM_EXPORT size_t crypto_auth_hmacsha256_keybytes(void); SODIUM_EXPORT const char * crypto_auth_hmacsha256_primitive(void); SODIUM_EXPORT int crypto_auth_hmacsha256(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *); SODIUM_EXPORT int crypto_auth_hmacsha256_verify(const unsigned char *,const unsigned char *,unsigned long long,const unsigned char *); #ifdef __cplusplus } #endif #define crypto_auth_hmacsha256_ref crypto_auth_hmacsha256 #define crypto_auth_hmacsha256_ref_verify crypto_auth_hmacsha256_verify #endif
Version data entries
2 entries across 2 versions & 1 rubygems