2013-01-20 18:41:17 -05:00
|
|
|
|
2013-01-20 18:55:10 -05:00
|
|
|
#define TEST_NAME "box7"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char alicesk[crypto_box_SECRETKEYBYTES];
|
|
|
|
static unsigned char alicepk[crypto_box_PUBLICKEYBYTES];
|
|
|
|
static unsigned char bobsk[crypto_box_SECRETKEYBYTES];
|
|
|
|
static unsigned char bobpk[crypto_box_PUBLICKEYBYTES];
|
|
|
|
static unsigned char n[crypto_box_NONCEBYTES];
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
int
|
|
|
|
main(void)
|
2013-01-20 18:41:17 -05:00
|
|
|
{
|
2015-12-08 19:41:30 -05:00
|
|
|
unsigned char *m;
|
|
|
|
unsigned char *c;
|
|
|
|
unsigned char *m2;
|
|
|
|
size_t mlen;
|
2015-12-08 19:43:57 -05:00
|
|
|
size_t mlen_max = 1000;
|
2015-12-08 19:41:30 -05:00
|
|
|
size_t i;
|
|
|
|
int ret;
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
m = (unsigned char *) sodium_malloc(mlen_max);
|
|
|
|
c = (unsigned char *) sodium_malloc(mlen_max);
|
2015-12-08 19:41:30 -05:00
|
|
|
m2 = (unsigned char *) sodium_malloc(mlen_max);
|
|
|
|
memset(m, 0, crypto_box_ZEROBYTES);
|
|
|
|
crypto_box_keypair(alicepk, alicesk);
|
|
|
|
crypto_box_keypair(bobpk, bobsk);
|
|
|
|
for (mlen = 0; mlen + crypto_box_ZEROBYTES <= mlen_max; mlen++) {
|
2014-09-14 14:32:55 -04:00
|
|
|
randombytes_buf(n, crypto_box_NONCEBYTES);
|
|
|
|
randombytes_buf(m + crypto_box_ZEROBYTES, mlen);
|
2015-11-16 18:43:12 -05:00
|
|
|
ret = crypto_box(c, m, mlen + crypto_box_ZEROBYTES, n, bobpk, alicesk);
|
|
|
|
assert(ret == 0);
|
2014-09-14 14:32:55 -04:00
|
|
|
if (crypto_box_open(m2, c, mlen + crypto_box_ZEROBYTES, n, alicepk,
|
|
|
|
bobsk) == 0) {
|
|
|
|
for (i = 0; i < mlen + crypto_box_ZEROBYTES; ++i) {
|
2014-09-14 13:34:16 -04:00
|
|
|
if (m2[i] != m[i]) {
|
|
|
|
printf("bad decryption\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("ciphertext fails verification\n");
|
2013-04-21 09:15:25 -04:00
|
|
|
}
|
2013-01-20 18:41:17 -05:00
|
|
|
}
|
2015-12-08 19:41:30 -05:00
|
|
|
sodium_free(m);
|
|
|
|
sodium_free(c);
|
|
|
|
sodium_free(m2);
|
|
|
|
|
2014-09-14 13:34:16 -04:00
|
|
|
return 0;
|
2013-01-20 18:41:17 -05:00
|
|
|
}
|