libsodium/test/default/auth7.c

36 lines
962 B
C
Raw Normal View History

2014-04-15 00:32:01 -04:00
#define TEST_NAME "auth7"
#include "cmptest.h"
2015-11-23 10:07:13 -05:00
static unsigned char key[32];
2015-12-07 11:41:20 -05:00
static unsigned char c[600];
2015-11-23 10:07:13 -05:00
static unsigned char a[64];
2014-04-15 00:32:01 -04:00
int main(void)
{
int clen;
2015-12-07 11:41:20 -05:00
for (clen = 0; clen < sizeof c; ++clen) {
2014-09-14 14:32:55 -04:00
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);
2014-09-14 14:32:55 -04:00
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
printf("forgery %d\n", clen);
return 100;
}
a[rand() % sizeof a] += 1 + (rand() % 255);
2014-09-14 14:32:55 -04:00
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
printf("forgery %d\n", clen);
return 100;
}
}
2014-04-15 00:32:01 -04:00
}
return 0;
2014-04-15 00:32:01 -04:00
}