Sha256: 0ba63fc675d61bb0e5913f628d0ea99495c5befce9aea6c08b456724fec24c06
Contents?: true
Size: 351 Bytes
Versions: 4
Compression:
Stored size: 351 Bytes
Contents
#include "api.h" #include "crypto_verify_32.h" #include "utils.h" int crypto_auth_verify(const unsigned char *h,const unsigned char *in,unsigned long long inlen,const unsigned char *k) { unsigned char correct[32]; crypto_auth(correct,in,inlen,k); return crypto_verify_32(h,correct) | (-(h == correct)) | sodium_memcmp(correct,h,32); }
Version data entries
4 entries across 4 versions & 1 rubygems