2013-01-20 18:41:17 -05:00
|
|
|
|
2013-01-20 18:55:10 -05:00
|
|
|
#define TEST_NAME "core3"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
static unsigned char secondkey[32] = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44,
|
|
|
|
0xa9, 0x53, 0x62, 0x9b, 0x73, 0x38, 0x20,
|
|
|
|
0x77, 0x88, 0x80, 0xf3, 0xce, 0xb4, 0x21,
|
|
|
|
0xbb, 0x61, 0xb9, 0x1c, 0xbd, 0x4c, 0x3e,
|
|
|
|
0x66, 0x25, 0x6c, 0xe4 };
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
static unsigned char noncesuffix[8] = { 0x82, 0x19, 0xe0, 0x03,
|
|
|
|
0x6b, 0x7a, 0x0b, 0x37 };
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
static unsigned char c[16] = { 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x20, 0x33,
|
|
|
|
0x32, 0x2d, 0x62, 0x79, 0x74, 0x65, 0x20, 0x6b };
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char in[16];
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char output[64 * 256 * 256];
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char h[32];
|
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
|
|
|
{
|
2017-02-23 05:19:53 -05:00
|
|
|
int i;
|
2014-09-14 13:34:16 -04:00
|
|
|
long long pos = 0;
|
|
|
|
|
2017-02-23 05:19:53 -05:00
|
|
|
for (i = 0; i < 8; ++i)
|
2014-09-14 14:32:55 -04:00
|
|
|
in[i] = noncesuffix[i];
|
2013-01-20 18:41:17 -05:00
|
|
|
do {
|
2014-09-14 13:34:16 -04:00
|
|
|
do {
|
2014-09-14 14:32:55 -04:00
|
|
|
crypto_core_salsa20(output + pos, in, secondkey, c);
|
2014-09-14 13:34:16 -04:00
|
|
|
pos += 64;
|
|
|
|
} while (++in[8]);
|
|
|
|
} while (++in[9]);
|
2014-09-14 14:32:55 -04:00
|
|
|
crypto_hash_sha256(h, output, sizeof output);
|
|
|
|
for (i = 0; i < 32; ++i) {
|
|
|
|
printf("%02x", h[i]);
|
2014-09-14 13:34:16 -04:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
assert(crypto_core_salsa20_outputbytes() > 0U);
|
|
|
|
assert(crypto_core_salsa20_inputbytes() > 0U);
|
|
|
|
assert(crypto_core_salsa20_keybytes() > 0U);
|
|
|
|
assert(crypto_core_salsa20_constbytes() > 0U);
|
|
|
|
|
|
|
|
return 0;
|
2013-01-20 18:41:17 -05:00
|
|
|
}
|