summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
blob: be9d34fdc8a5405261a104287ddc6684ff031907 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
}