libsodium: Needed for Dnscrypto-proxy Release 1.3.0
[tomato.git] / release / src / router / libsodium / test / default / stream2.c
blob25cdb3521d1e7b4a3cbc4fc1c67a546d311fbb3e
1 #include <stdio.h>
3 #define TEST_NAME "stream2"
4 #include "cmptest.h"
6 unsigned char secondkey[32] = {
7 0xdc,0x90,0x8d,0xda,0x0b,0x93,0x44,0xa9
8 ,0x53,0x62,0x9b,0x73,0x38,0x20,0x77,0x88
9 ,0x80,0xf3,0xce,0xb4,0x21,0xbb,0x61,0xb9
10 ,0x1c,0xbd,0x4c,0x3e,0x66,0x25,0x6c,0xe4
11 } ;
13 unsigned char noncesuffix[8] = {
14 0x82,0x19,0xe0,0x03,0x6b,0x7a,0x0b,0x37
15 } ;
17 unsigned char output[4194304];
19 unsigned char h[32];
21 int main(void)
23 int i;
24 crypto_stream_salsa20(output,4194304,noncesuffix,secondkey);
25 crypto_hash_sha256(h,output,sizeof output);
26 for (i = 0;i < 32;++i) printf("%02x",h[i]); printf("\n");
27 return 0;