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.

46 lines
1.2 KiB

  1. #define TEST_NAME "core3"
  2. #include "cmptest.h"
  3. unsigned char secondkey[32]
  4. = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, 0xa9, 0x53, 0x62, 0x9b,
  5. 0x73, 0x38, 0x20, 0x77, 0x88, 0x80, 0xf3, 0xce, 0xb4, 0x21, 0xbb,
  6. 0x61, 0xb9, 0x1c, 0xbd, 0x4c, 0x3e, 0x66, 0x25, 0x6c, 0xe4 };
  7. unsigned char noncesuffix[8]
  8. = { 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
  9. unsigned char c[16] = { 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x20, 0x33,
  10. 0x32, 0x2d, 0x62, 0x79, 0x74, 0x65, 0x20, 0x6b };
  11. unsigned char in[16] = { 0 };
  12. unsigned char output[64 * 256 * 256];
  13. unsigned char h[32];
  14. int main(void)
  15. {
  16. int i;
  17. long long pos = 0;
  18. for (i = 0; i < 8; ++i)
  19. in[i] = noncesuffix[i];
  20. do {
  21. do {
  22. crypto_core_salsa20(output + pos, in, secondkey, c);
  23. pos += 64;
  24. } while (++in[8]);
  25. } while (++in[9]);
  26. crypto_hash_sha256(h, output, sizeof output);
  27. for (i = 0; i < 32; ++i) {
  28. printf("%02x", h[i]);
  29. }
  30. printf("\n");
  31. assert(crypto_core_salsa20_outputbytes() > 0U);
  32. assert(crypto_core_salsa20_inputbytes() > 0U);
  33. assert(crypto_core_salsa20_keybytes() > 0U);
  34. assert(crypto_core_salsa20_constbytes() > 0U);
  35. return 0;
  36. }