RAND_egd.pod 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. =pod
  2. =head1 NAME
  3. RAND_egd - query entropy gathering daemon
  4. =head1 SYNOPSIS
  5. #include <openssl/rand.h>
  6. int RAND_egd(const char *path);
  7. int RAND_egd_bytes(const char *path, int bytes);
  8. =head1 DESCRIPTION
  9. RAND_egd() queries the entropy gathering daemon EGD on socket B<path>.
  10. It queries 255 bytes and uses L<RAND_add(3)|RAND_add(3)> to seed the
  11. OpenSSL built-in PRNG. RAND_egd(path) is a wrapper for
  12. RAND_egd_bytes(path, 255);
  13. RAND_egd_bytes() queries the entropy gathering daemon EGD on socket B<path>.
  14. It queries B<bytes> bytes and uses L<RAND_add(3)|RAND_add(3)> to seed the
  15. OpenSSL built-in PRNG.
  16. This function is more flexible than RAND_egd().
  17. When only one secret key must
  18. be generated, it is not necessary to request the full amount 255 bytes from
  19. the EGD socket. This can be advantageous, since the amount of entropy
  20. that can be retrieved from EGD over time is limited.
  21. =head1 NOTES
  22. On systems without /dev/*random devices providing entropy from the kernel,
  23. the EGD entropy gathering daemon can be used to collect entropy. It provides
  24. a socket interface through which entropy can be gathered in chunks up to
  25. 255 bytes. Several chunks can be queried during one connection.
  26. EGD is available from http://www.lothar.com/tech/crypto/ (C<perl
  27. Makefile.PL; make; make install> to install). It is run as B<egd>
  28. I<path>, where I<path> is an absolute path designating a socket. When
  29. RAND_egd() is called with that path as an argument, it tries to read
  30. random bytes that EGD has collected. The read is performed in
  31. non-blocking mode.
  32. Alternatively, the EGD-interface compatible daemon PRNGD can be used. It is
  33. available from
  34. http://www.aet.tu-cottbus.de/personen/jaenicke/postfix_tls/prngd.html .
  35. PRNGD does employ an internal PRNG itself and can therefore never run
  36. out of entropy.
  37. =head1 RETURN VALUE
  38. RAND_egd() and RAND_egd_bytes() return the number of bytes read from the
  39. daemon on success, and -1 if the connection failed or the daemon did not
  40. return enough data to fully seed the PRNG.
  41. =head1 SEE ALSO
  42. L<rand(3)|rand(3)>, L<RAND_add(3)|RAND_add(3)>,
  43. L<RAND_cleanup(3)|RAND_cleanup(3)>
  44. =head1 HISTORY
  45. RAND_egd() is available since OpenSSL 0.9.5.
  46. RAND_egd_bytes() is available since OpenSSL 0.9.6.
  47. =cut