diff options
Diffstat (limited to 'nacl/tests/scalarmult7.cpp')
-rw-r--r-- | nacl/tests/scalarmult7.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/nacl/tests/scalarmult7.cpp b/nacl/tests/scalarmult7.cpp deleted file mode 100644 index 8382d747..00000000 --- a/nacl/tests/scalarmult7.cpp +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | #include <string> | ||
2 | using std::string; | ||
3 | #include <stdio.h> | ||
4 | #include "crypto_scalarmult_curve25519.h" | ||
5 | |||
6 | char alicesk_bytes[32] = { | ||
7 | 0x77,0x07,0x6d,0x0a,0x73,0x18,0xa5,0x7d | ||
8 | ,0x3c,0x16,0xc1,0x72,0x51,0xb2,0x66,0x45 | ||
9 | ,0xdf,0x4c,0x2f,0x87,0xeb,0xc0,0x99,0x2a | ||
10 | ,0xb1,0x77,0xfb,0xa5,0x1d,0xb9,0x2c,0x2a | ||
11 | } ; | ||
12 | |||
13 | char bobpk_bytes[32] = { | ||
14 | 0xde,0x9e,0xdb,0x7d,0x7b,0x7d,0xc1,0xb4 | ||
15 | ,0xd3,0x5b,0x61,0xc2,0xec,0xe4,0x35,0x37 | ||
16 | ,0x3f,0x83,0x43,0xc8,0x5b,0x78,0x67,0x4d | ||
17 | ,0xad,0xfc,0x7e,0x14,0x6f,0x88,0x2b,0x4f | ||
18 | } ; | ||
19 | |||
20 | main() | ||
21 | { | ||
22 | int i; | ||
23 | string alicesk(alicesk_bytes,sizeof alicesk_bytes); | ||
24 | string bobpk(bobpk_bytes,sizeof bobpk_bytes); | ||
25 | string k = crypto_scalarmult_curve25519(alicesk,bobpk); | ||
26 | for (i = 0;i < k.size();++i) { | ||
27 | if (i > 0) printf(","); else printf(" "); | ||
28 | printf("0x%02x",(unsigned int) (unsigned char) k[i]); | ||
29 | if (i % 8 == 7) printf("\n"); | ||
30 | } | ||
31 | return 0; | ||
32 | } | ||