2013-01-20 18:41:17 -05:00
|
|
|
|
2013-01-20 18:55:10 -05:00
|
|
|
#define TEST_NAME "stream2"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2019-04-23 03:57:36 -04:00
|
|
|
static const 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
|
|
|
|
2019-04-23 03:57:36 -04:00
|
|
|
static const unsigned char noncesuffix[8] = {
|
|
|
|
0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37
|
|
|
|
};
|
2013-01-20 18:41:17 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 05:23:19 -05:00
|
|
|
int
|
|
|
|
main(void)
|
2013-01-20 18:41:17 -05:00
|
|
|
{
|
2019-04-23 03:57:36 -04:00
|
|
|
unsigned char *output;
|
|
|
|
char *hex;
|
|
|
|
unsigned char h[32];
|
|
|
|
size_t sizeof_hex = 32 * 2 + 1;
|
|
|
|
size_t sizeof_output = 4194304;
|
|
|
|
int i;
|
2015-02-02 15:19:41 -05:00
|
|
|
|
2019-04-23 03:57:36 -04:00
|
|
|
output = (unsigned char *) sodium_malloc(sizeof_output);
|
|
|
|
hex = (char *) sodium_malloc(sizeof_hex);
|
|
|
|
|
|
|
|
crypto_stream_salsa20(output, sizeof_output, noncesuffix, secondkey);
|
|
|
|
crypto_hash_sha256(h, output, sizeof_output);
|
|
|
|
sodium_bin2hex(hex, sizeof_hex, h, sizeof h);
|
|
|
|
printf("%s\n", hex);
|
|
|
|
|
|
|
|
assert(sizeof_output > 4000);
|
2015-02-02 15:19:41 -05:00
|
|
|
|
2017-02-23 05:23:19 -05:00
|
|
|
crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 0U,
|
|
|
|
secondkey);
|
2019-04-23 03:57:36 -04:00
|
|
|
for (i = 0; i < 4000; i++) {
|
2015-02-02 15:19:41 -05:00
|
|
|
assert(output[i] == 0);
|
2019-04-23 03:57:36 -04:00
|
|
|
}
|
2015-02-02 15:19:41 -05:00
|
|
|
|
2017-02-23 05:23:19 -05:00
|
|
|
crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 1U,
|
|
|
|
secondkey);
|
2019-04-23 03:57:36 -04:00
|
|
|
crypto_hash_sha256(h, output, sizeof_output);
|
|
|
|
sodium_bin2hex(hex, sizeof_hex, h, sizeof h);
|
|
|
|
printf("%s\n", hex);
|
|
|
|
|
|
|
|
sodium_free(hex);
|
|
|
|
sodium_free(output);
|
2014-09-13 18:17:19 -04:00
|
|
|
|
2014-09-14 13:34:16 -04:00
|
|
|
assert(crypto_stream_salsa20_keybytes() > 0U);
|
|
|
|
assert(crypto_stream_salsa20_noncebytes() > 0U);
|
2017-08-03 07:34:31 -04:00
|
|
|
assert(crypto_stream_salsa20_messagebytes_max() > 0U);
|
2014-09-13 18:17:19 -04:00
|
|
|
|
2014-09-14 13:34:16 -04:00
|
|
|
return 0;
|
2013-01-20 18:41:17 -05:00
|
|
|
}
|