1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 10:37:24 -07:00
libsodium/test/default/auth5.c

42 lines
1.1 KiB
C
Raw Normal View History

2013-01-20 16:55:10 -07:00
#define TEST_NAME "auth5"
#include "cmptest.h"
2015-11-23 08:07:13 -07:00
static unsigned char key[32];
2015-12-07 01:09:04 -07:00
static unsigned char c[1000];
2015-11-23 08:07:13 -07:00
static unsigned char a[32];
2013-01-20 16:41:17 -07:00
2017-02-23 03:15:29 -07:00
int
main(void)
2013-01-20 16:41:17 -07:00
{
2014-09-14 11:32:55 -07:00
size_t clen;
2015-12-07 01:09:04 -07:00
for (clen = 0; clen < 1000; ++clen) {
2017-02-19 13:20:45 -07:00
crypto_auth_keygen(key);
2014-09-14 11:32:55 -07:00
randombytes_buf(c, clen);
crypto_auth(a, c, clen, key);
if (crypto_auth_verify(a, c, clen, key) != 0) {
2014-09-14 12:58:42 -07:00
printf("fail %u\n", (unsigned int) clen);
return 100;
}
if (clen > 0) {
c[rand() % clen] += 1 + (rand() % 255);
2014-09-14 11:32:55 -07:00
if (crypto_auth_verify(a, c, clen, key) == 0) {
2014-09-14 12:58:42 -07:00
printf("forgery %u\n", (unsigned int) clen);
return 100;
}
a[rand() % sizeof a] += 1 + (rand() % 255);
2014-09-14 11:32:55 -07:00
if (crypto_auth_verify(a, c, clen, key) == 0) {
2014-09-14 12:58:42 -07:00
printf("forgery %u\n", (unsigned int) clen);
return 100;
}
}
2013-01-20 16:41:17 -07:00
}
crypto_auth_keygen(key);
crypto_auth(a, guard_page, 0U, key);
assert(crypto_auth_verify(a, guard_page, 0U, key) == 0);
return 0;
2013-01-20 16:41:17 -07:00
}