summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/verify_hmacsha512.c
blob: 28e0dfbe126b33ee1028f9705e22e6cbecc2720c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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 == 0)) |
         sodium_memcmp(correct,h,64);
}