libsodium/test/default/secretbox8.c

42 lines
1.2 KiB
C
Raw Normal View History

2013-01-20 18:55:10 -05:00
#define TEST_NAME "secretbox8"
#include "cmptest.h"
2015-11-23 10:07:13 -05:00
static unsigned char k[crypto_secretbox_KEYBYTES];
static unsigned char n[crypto_secretbox_NONCEBYTES];
static unsigned char m[10000];
static unsigned char c[10000];
static unsigned char m2[10000];
2013-01-20 18:41:17 -05:00
2017-02-23 05:22:36 -05:00
int
main(void)
2013-01-20 18:41:17 -05:00
{
size_t mlen;
size_t i;
2017-02-23 05:22:36 -05:00
int caught;
2013-01-20 18:41:17 -05:00
2014-09-14 14:32:55 -04:00
for (mlen = 0; mlen < 1000 && mlen + crypto_secretbox_ZEROBYTES < sizeof m;
++mlen) {
2017-02-19 15:20:45 -05:00
crypto_secretbox_keygen(k);
2014-09-14 14:32:55 -04:00
randombytes_buf(n, crypto_secretbox_NONCEBYTES);
randombytes_buf(m + crypto_secretbox_ZEROBYTES, mlen);
crypto_secretbox(c, m, mlen + crypto_secretbox_ZEROBYTES, n, k);
caught = 0;
while (caught < 10) {
c[rand() % (mlen + crypto_secretbox_ZEROBYTES)] = rand();
2014-09-14 14:32:55 -04:00
if (crypto_secretbox_open(m2, c, mlen + crypto_secretbox_ZEROBYTES,
n, k) == 0) {
for (i = 0; i < mlen + crypto_secretbox_ZEROBYTES; ++i) {
if (m2[i] != m[i]) {
printf("forgery\n");
return 100;
}
}
} else {
++caught;
}
}
2013-01-20 18:41:17 -05:00
}
return 0;
2013-01-20 18:41:17 -05:00
}