Sha256: 96062c8c80d7f72187e41a86407c55e9e8a842795e6f937cb4aa38712199b20c
Contents?: true
Size: 429 Bytes
Versions: 5
Compression:
Stored size: 429 Bytes
Contents
#include "crypto_auth_hmacsha512.h" #include "crypto_verify_64.h" #include "utils.h" int crypto_auth_hmacsha512_verify(const unsigned char *h, const unsigned char *in, unsigned long long inlen, const unsigned char *k) { unsigned char correct[64]; crypto_auth_hmacsha512(correct,in,inlen,k); return crypto_verify_64(h,correct) | (-(h == correct)) | sodium_memcmp(correct,h,64); }
Version data entries
5 entries across 5 versions & 1 rubygems