libsodium/test/default/scalarmult2.c

33 lines
794 B
C
Raw Normal View History

2013-01-20 18:41:17 -05:00
2013-01-20 18:55:10 -05:00
#define TEST_NAME "scalarmult2"
#include "cmptest.h"
2017-02-23 05:22:00 -05:00
static unsigned char bobsk[32] = { 0x5d, 0xab, 0x08, 0x7e, 0x62, 0x4a, 0x8a,
0x4b, 0x79, 0xe1, 0x7f, 0x8b, 0x83, 0x80,
0x0e, 0xe6, 0x6f, 0x3b, 0xb1, 0x29, 0x26,
0x18, 0xb6, 0xfd, 0x1c, 0x2f, 0x8b, 0x27,
0xff, 0x88, 0xe0, 0xeb };
2013-01-20 18:41:17 -05:00
2015-11-23 10:07:13 -05:00
static unsigned char bobpk[32];
2013-01-20 18:41:17 -05:00
2017-02-23 05:22:00 -05:00
int
main(void)
2013-01-20 18:41:17 -05:00
{
int i;
2014-09-14 14:32:55 -04:00
crypto_scalarmult_base(bobpk, bobsk);
2014-09-14 14:32:55 -04:00
for (i = 0; i < 32; ++i) {
if (i > 0) {
printf(",");
} else {
printf(" ");
}
2017-02-23 05:22:00 -05:00
printf("0x%02x", (unsigned int) bobpk[i]);
if (i % 8 == 7) {
printf("\n");
}
}
return 0;
2013-01-20 18:41:17 -05:00
}