1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-28 22:21:15 -07:00
libsodium/test/default/onetimeauth7.c

37 lines
824 B
C
Raw Normal View History

2013-01-20 16:41:17 -07:00
#include "windows/windows-quirks.h"
2013-01-20 16:55:10 -07:00
#define TEST_NAME "onetimeauth7"
#include "cmptest.h"
2013-01-20 16:41:17 -07:00
unsigned char key[32];
unsigned char c[10000];
unsigned char a[16];
2013-01-20 16:48:08 -07:00
int main(void)
2013-01-20 16:41:17 -07:00
{
int clen;
for (clen = 0;clen < 10000;++clen) {
randombytes(key,sizeof key);
randombytes(c,clen);
2014-09-13 13:56:41 -07:00
crypto_onetimeauth(a,c,clen,key);
if (crypto_onetimeauth_verify(a,c,clen,key) != 0) {
2013-01-20 16:41:17 -07:00
printf("fail %d\n",clen);
return 100;
}
if (clen > 0) {
c[rand() % clen] += 1 + (rand() % 255);
2014-09-13 13:56:41 -07:00
if (crypto_onetimeauth_verify(a,c,clen,key) == 0) {
2013-01-20 16:41:17 -07:00
printf("forgery %d\n",clen);
return 100;
}
a[rand() % sizeof a] += 1 + (rand() % 255);
2014-09-13 13:56:41 -07:00
if (crypto_onetimeauth_verify(a,c,clen,key) == 0) {
2013-01-20 16:41:17 -07:00
printf("forgery %d\n",clen);
return 100;
}
}
}
return 0;
}