Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / tests / scalarmult6.c
blob89bf9bdd549f44f43403a63f8ee1892635ec81af
1 #include <stdio.h>
2 #include "crypto_scalarmult_curve25519.h"
4 unsigned char bobsk[32] = {
5 0x5d,0xab,0x08,0x7e,0x62,0x4a,0x8a,0x4b
6 ,0x79,0xe1,0x7f,0x8b,0x83,0x80,0x0e,0xe6
7 ,0x6f,0x3b,0xb1,0x29,0x26,0x18,0xb6,0xfd
8 ,0x1c,0x2f,0x8b,0x27,0xff,0x88,0xe0,0xeb
9 } ;
11 unsigned char alicepk[32] = {
12 0x85,0x20,0xf0,0x09,0x89,0x30,0xa7,0x54
13 ,0x74,0x8b,0x7d,0xdc,0xb4,0x3e,0xf7,0x5a
14 ,0x0d,0xbf,0x3a,0x0d,0x26,0x38,0x1a,0xf4
15 ,0xeb,0xa4,0xa9,0x8e,0xaa,0x9b,0x4e,0x6a
16 } ;
18 unsigned char k[32];
20 main()
22 int i;
23 crypto_scalarmult_curve25519(k,bobsk,alicepk);
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");
29 return 0;