summaryrefslogtreecommitdiff
path: root/src/libsodium/crypto_auth/hmacsha512/cp/verify_hmacsha512.c
blob: fccdc1a44ee7913a4c82947cf40757d4c66eb052 (plain)
1
2
3
4
5
6
7
8
9
10
#include "api.h"
#include "crypto_verify_64.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);
}