Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

17 рядки
484 B

  1. #ifndef PRG_H
  2. #define PRG_H
  3. #include <stdlib.h>
  4. /**
  5. * Generates rlen output bytes using key_len-byte key and places them in r.
  6. *
  7. */
  8. void prg(unsigned char *r, unsigned long long rlen, const unsigned char *key, uint key_len);
  9. /**
  10. * Generates rlen output bytes using key_len-byte key and hash address addr and places them in r.
  11. *
  12. */
  13. void prg_with_counter(unsigned char *r, unsigned long long rlen, const unsigned char *key, uint key_len, const unsigned char addr[16]);
  14. #endif