libsodium/test/default/auth7.c
2015-12-07 17:41:20 +01:00

36 lines
962 B
C

#define TEST_NAME "auth7"
#include "cmptest.h"
static unsigned char key[32];
static unsigned char c[600];
static unsigned char a[64];
int main(void)
{
int clen;
for (clen = 0; clen < sizeof c; ++clen) {
randombytes_buf(key, sizeof key);
randombytes_buf(c, clen);
crypto_auth_hmacsha512(a, c, clen, key);
if (crypto_auth_hmacsha512_verify(a, c, clen, key) != 0) {
printf("fail %d\n", clen);
return 100;
}
if (clen > 0) {
c[rand() % clen] += 1 + (rand() % 255);
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
printf("forgery %d\n", clen);
return 100;
}
a[rand() % sizeof a] += 1 + (rand() % 255);
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
printf("forgery %d\n", clen);
return 100;
}
}
}
return 0;
}