stream.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #define TEST_NAME "stream"
  2. #include "cmptest.h"
  3. static unsigned char firstkey[32] = { 0x1b, 0x27, 0x55, 0x64, 0x73, 0xe9, 0x85,
  4. 0xd4, 0x62, 0xcd, 0x51, 0x19, 0x7a, 0x9a,
  5. 0x46, 0xc7, 0x60, 0x09, 0x54, 0x9e, 0xac,
  6. 0x64, 0x74, 0xf2, 0x06, 0xc4, 0xee, 0x08,
  7. 0x44, 0xf6, 0x83, 0x89 };
  8. static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6,
  9. 0x2b, 0x73, 0xcd, 0x62, 0xbd, 0xa8,
  10. 0x75, 0xfc, 0x73, 0xd6, 0x82, 0x19,
  11. 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
  12. static unsigned char output[4194304];
  13. static unsigned char h[32];
  14. static char hex[2 * 192 + 1];
  15. int
  16. main(void)
  17. {
  18. int i;
  19. randombytes_buf(output, sizeof output);
  20. crypto_stream(output, sizeof output, nonce, firstkey);
  21. crypto_hash_sha256(h, output, sizeof output);
  22. sodium_bin2hex(hex, sizeof hex, h, sizeof h);
  23. printf("%s\n", hex);
  24. assert(sizeof output > 4000);
  25. crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 0U, firstkey);
  26. for (i = 0; i < 4000; i++) {
  27. assert(output[i] == 0);
  28. }
  29. crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 1U, firstkey);
  30. crypto_hash_sha256(h, output, sizeof output);
  31. sodium_bin2hex(hex, sizeof hex, h, sizeof h);
  32. printf("%s\n", hex);
  33. for (i = 0; i < 64; i++) {
  34. memset(output, i, 64);
  35. crypto_stream(output, (int) (i & 0xff), nonce, firstkey);
  36. sodium_bin2hex(hex, sizeof hex, output, 64);
  37. printf("%s\n", hex);
  38. }
  39. memset(output, 0, 192);
  40. crypto_stream_xsalsa20_xor_ic(output, output, 192, nonce,
  41. (1ULL << 32) - 1ULL, firstkey);
  42. sodium_bin2hex(hex, 192 * 2 + 1, output, 192);
  43. printf("%s\n", hex);
  44. assert(crypto_stream_keybytes() > 0U);
  45. assert(crypto_stream_noncebytes() > 0U);
  46. assert(crypto_stream_messagebytes_max() > 0U);
  47. assert(strcmp(crypto_stream_primitive(), "xsalsa20") == 0);
  48. assert(crypto_stream_keybytes() == crypto_stream_xsalsa20_keybytes());
  49. assert(crypto_stream_noncebytes() == crypto_stream_xsalsa20_noncebytes());
  50. assert(crypto_stream_messagebytes_max() == crypto_stream_xsalsa20_messagebytes_max());
  51. return 0;
  52. }