libsodium/test/default/onetimeauth7.c

37 lines
948 B
C
Raw Normal View History

2013-01-20 18:55:10 -05:00
#define TEST_NAME "onetimeauth7"
#include "cmptest.h"
2015-11-23 10:07:13 -05:00
static unsigned char key[32];
static unsigned char c[1000];
2015-11-23 10:07:13 -05:00
static unsigned char a[16];
2013-01-20 18:41:17 -05:00
2017-02-23 05:20:37 -05:00
int
main(void)
2013-01-20 18:41:17 -05:00
{
int clen;
for (clen = 0; clen < 1000; ++clen) {
2017-02-19 15:20:45 -05:00
crypto_onetimeauth_keygen(key);
2014-09-14 14:32:55 -04:00
randombytes_buf(c, clen);
crypto_onetimeauth(a, c, clen, key);
if (crypto_onetimeauth_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_onetimeauth_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_onetimeauth_verify(a, c, clen, key) == 0) {
printf("forgery %d\n", clen);
return 100;
}
}
2013-01-20 18:41:17 -05:00
}
return 0;
2013-01-20 18:41:17 -05:00
}