summaryrefslogtreecommitdiff
path: root/nacl/tests/stream6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/tests/stream6.cpp')
-rw-r--r--nacl/tests/stream6.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/nacl/tests/stream6.cpp b/nacl/tests/stream6.cpp
new file mode 100644
index 00000000..d9ed61f7
--- /dev/null
+++ b/nacl/tests/stream6.cpp
@@ -0,0 +1,27 @@
1#include <string>
2using std::string;
3#include <stdio.h>
4#include "crypto_stream_salsa20.h"
5#include "crypto_hash_sha256.h"
6
7char secondkey_bytes[32] = {
8 0xdc,0x90,0x8d,0xda,0x0b,0x93,0x44,0xa9
9,0x53,0x62,0x9b,0x73,0x38,0x20,0x77,0x88
10,0x80,0xf3,0xce,0xb4,0x21,0xbb,0x61,0xb9
11,0x1c,0xbd,0x4c,0x3e,0x66,0x25,0x6c,0xe4
12} ;
13
14char noncesuffix_bytes[8] = {
15 0x82,0x19,0xe0,0x03,0x6b,0x7a,0x0b,0x37
16} ;
17
18main()
19{
20 int i;
21 string secondkey(secondkey_bytes,sizeof secondkey_bytes);
22 string noncesuffix(noncesuffix_bytes,sizeof noncesuffix_bytes);
23 string output = crypto_stream_salsa20(4194304,noncesuffix,secondkey);
24 string h = crypto_hash_sha256(output);
25 for (i = 0;i < 32;++i) printf("%02x",(unsigned int) (unsigned char) h[i]); printf("\n");
26 return 0;
27}