Sha256: e2b56330c3a6682b5226c39e7057e048e453cdb5258519ea7a39f7b36c73fa0e
Contents?: true
Size: 355 Bytes
Versions: 4
Compression:
Stored size: 355 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 == 0)) | sodium_memcmp(correct,h,32); }
Version data entries
4 entries across 4 versions & 1 rubygems