Sha256: 035bd04ffe36bf1cb64769b57509967efa37fed9adf7d0cd560b357ebe0b552e
Contents?: true
Size: 392 Bytes
Versions: 5
Compression:
Stored size: 392 Bytes
Contents
#include "crypto_auth_hmacsha256.h" #include "crypto_verify_32.h" #include "utils.h" int crypto_auth_hmacsha256_verify(const unsigned char *h,const unsigned char *in,unsigned long long inlen,const unsigned char *k) { unsigned char correct[32]; crypto_auth_hmacsha256(correct,in,inlen,k); return crypto_verify_32(h,correct) | (-(h == correct)) | sodium_memcmp(correct,h,32); }
Version data entries
5 entries across 5 versions & 1 rubygems