crypto_entropy.h 260 B

1234567891011121314
  1. #ifndef CRYPTO_ENTROPY_H_
  2. #define CRYPTO_ENTROPY_H_
  3. #include <stddef.h>
  4. #include <stdint.h>
  5. /**
  6. * crypto_entropy_read(buf, buflen):
  7. * Fill the buffer with unpredictable bits.
  8. */
  9. int crypto_entropy_read(uint8_t *, size_t);
  10. #endif /* !CRYPTO_ENTROPY_H_ */