summaryrefslogtreecommitdiff
path: root/src/libsodium/crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c
blob: 1e6e18dba06583c72a75b763c190c37f54dd7a6e (plain)
1
2
3
4
5
6
7
8
9
10
#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);
}