scalarmult5.c 1.2 KB

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