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