Sha256: c40961c7d1fbacf768bb0956802193de75cd10fd58982e03c0ddce5ea1377ebf
Contents?: true
Size: 377 Bytes
Versions: 4
Compression:
Stored size: 377 Bytes
Contents
#include "api.h" #include "crypto_verify_64.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[64]; crypto_auth(correct,in,inlen,k); return crypto_verify_64(h,correct) | (-(h == correct)) | sodium_memcmp(correct,h,64); }
Version data entries
4 entries across 4 versions & 1 rubygems