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.

30 lines
785 B

  1. #define TEST_NAME "stream2"
  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 output[4194304];
  10. unsigned char h[32];
  11. int main(void)
  12. {
  13. int i;
  14. crypto_stream_salsa20(output, 4194304, noncesuffix, secondkey);
  15. crypto_hash_sha256(h, output, sizeof output);
  16. for (i = 0; i < 32; ++i)
  17. printf("%02x", h[i]);
  18. printf("\n");
  19. assert(crypto_stream_salsa20_keybytes() > 0U);
  20. assert(crypto_stream_salsa20_noncebytes() > 0U);
  21. return 0;
  22. }