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