libsodium 1.0.8
[tomato.git] / release / src / router / libsodium / test / default / scalarmult5.c
blob2bc06d19d9b68cd2272ea439468b116cdea86652
2 #define TEST_NAME "scalarmult5"
3 #include "cmptest.h"
5 static unsigned char alicesk[32]
6 = { 0x77, 0x07, 0x6d, 0x0a, 0x73, 0x18, 0xa5, 0x7d, 0x3c, 0x16, 0xc1,
7 0x72, 0x51, 0xb2, 0x66, 0x45, 0xdf, 0x4c, 0x2f, 0x87, 0xeb, 0xc0,
8 0x99, 0x2a, 0xb1, 0x77, 0xfb, 0xa5, 0x1d, 0xb9, 0x2c, 0x2a };
10 static unsigned char bobpk[32]
11 = { 0xde, 0x9e, 0xdb, 0x7d, 0x7b, 0x7d, 0xc1, 0xb4, 0xd3, 0x5b, 0x61,
12 0xc2, 0xec, 0xe4, 0x35, 0x37, 0x3f, 0x83, 0x43, 0xc8, 0x5b, 0x78,
13 0x67, 0x4d, 0xad, 0xfc, 0x7e, 0x14, 0x6f, 0x88, 0x2b, 0x4f };
15 static unsigned char k[32];
17 int main(void)
19 int i;
20 int ret;
22 ret = crypto_scalarmult(k, alicesk, bobpk);
23 assert(ret == 0);
25 for (i = 0; i < 32; ++i) {
26 if (i > 0) {
27 printf(",");
28 } else {
29 printf(" ");
31 printf("0x%02x", (unsigned int)k[i]);
32 if (i % 8 == 7) {
33 printf("\n");
36 return 0;