Sha256: 8c3092a5ddbe28e8adb7f07783496d6cf9da3455f2bc23df8592a8203b90523d
Contents?: true
Size: 299 Bytes
Versions: 5
Compression:
Stored size: 299 Bytes
Contents
#include "api.h" #include "crypto_verify_32.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); }
Version data entries
5 entries across 5 versions & 1 rubygems