You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
806 B

  1. #define TEST_NAME "scalarmult7"
  2. #include "cmptest.h"
  3. unsigned char p1[32] = {
  4. 0x72, 0x20, 0xf0, 0x09, 0x89, 0x30, 0xa7, 0x54,
  5. 0x74, 0x8b, 0x7d, 0xdc, 0xb4, 0x3e, 0xf7, 0x5a,
  6. 0x0d, 0xbf, 0x3a, 0x0d, 0x26, 0x38, 0x1a, 0xf4,
  7. 0xeb, 0xa4, 0xa9, 0x8e, 0xaa, 0x9b, 0x4e, 0xea
  8. };
  9. unsigned char p2[32] = {
  10. 0x85, 0x20, 0xf0, 0x09, 0x89, 0x30, 0xa7, 0x54,
  11. 0x74, 0x8b, 0x7d, 0xdc, 0xb4, 0x3e, 0xf7, 0x5a,
  12. 0x0d, 0xbf, 0x3a, 0x0d, 0x26, 0x38, 0x1a, 0xf4,
  13. 0xeb, 0xa4, 0xa9, 0x8e, 0xaa, 0x9b, 0x4e, 0x6a
  14. };
  15. unsigned char scalar[32];
  16. unsigned char out1[32];
  17. unsigned char out2[32];
  18. int main(void)
  19. {
  20. scalar[0] = 1U;
  21. crypto_scalarmult_curve25519(out1, scalar, p1);
  22. crypto_scalarmult_curve25519(out2, scalar, p2);
  23. printf("%d\n", !!memcmp(out1, out2, 32));
  24. return 0;
  25. }