summaryrefslogtreecommitdiff
path: root/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c')
-rw-r--r--src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c b/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
index b6cf489..be9d34f 100644
--- a/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
+++ b/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
@@ -1,9 +1,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);
+ return crypto_verify_32(h,correct) | (-(h - correct == 0)) |
+ sodium_memcmp(correct,h,32);
}