libsodium/test/onetimeauth7.c

41 lines
981 B
C
Raw Normal View History

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