summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_egd.c
AgeCommit message (Collapse)Author
2013-09-05misspellings fixes by https://github.com/vlajos/misspell_fixerVeres Lajos
2012-06-03Version skew reduction: trivia (I hope).Ben Laurie
2011-02-16Experimental symbol renaming to avoid clashes with regular OpenSSL.Dr. Stephen Henson
Make sure crypto.h is included first in any affected files.
2008-11-12Revert commit #17603, it should have been part of #17617.Andy Polyakov
2008-11-12Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe
knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
2008-11-05PR: 1777Dr. Stephen Henson
Submitted by: "Alon Bar-Lev" <alon.barlev@gmail.com> Approved by: steve@openssl.org Fix some size_t issues.
2008-11-01More size_tification.Ben Laurie
2006-04-11Add BeOS support.Ulf Möller
PR: 1312 Submitted by: Oliver Tappe <zooey@hirschkaefer.de> Reviewed by: Ulf Moeller
2005-02-19Fix hang in EGD/PRNGD query when communication socket is closedLutz Jänicke
prematurely by EGD/PRNGD. PR: 1014 Submitted by: Darren Tucker <dtucker@zip.com.au>
2004-06-28Changes for VOS, submitted by Paul Green <Paul.Green@stratus.com>.Richard Levitte
PR: 499
2003-12-27Use BUF_strlcpy() instead of strcpy().Richard Levitte
Use BUF_strlcat() instead of strcat(). Use BIO_snprintf() instead of sprintf(). In some cases, keep better track of buffer lengths. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
2003-11-28Netware-specific changes,Richard Levitte
PR: 780 Submitted by: Verdon Walker <VWalker@novell.com> Reviewed by: Richard Levitte
2002-11-13Security fixes brought forward from 0.9.7.Ben Laurie
2002-10-14Complete the VxWorks fix by implementing a NULL RAND_poll() for it.Richard Levitte
PR: 253
2002-10-09Add a few more VxWorks targets.Richard Levitte
Correct misspelled VXWORKS macros. Add VXWORKS identifying macros to e_os2.h. Add required inclusions and mappings for VxWorks in e_os.h. A few small modifications to make OpenSSL build and work on VxWorks. PR: 253, except for the change that was handled in an earlier commit, and a request for easy build of just parts of OpenSSL.
2002-09-22use OPENSSL_SYS_MSDOS rather than __DJGPP__ to disable egd, this is notUlf Möller
compiler specific
2002-06-13Add support for DJGPP.Richard Levitte
PR: 75
2002-05-22Use OPENSSL_SYS_VMS instead of just VMSRichard Levitte
2002-02-14Add the configuration target VxWorks.Richard Levitte
2001-04-03Make sure OPENSSL_SYS_... is defined when we need it.Bodo Möller
2001-03-18New cofiguration for Unixwre and SCO,with slightly better granularity. ↵Richard Levitte
Contributed by Tim Rice <tim@multitalents.net>
2001-02-20Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte
missed any. This compiles and runs on Linux, and external applications have no problems with it. The definite test will be to build this on VMS.
2001-02-07Modify access to EGD socket to deal with EINTR etc that can appearLutz Jänicke
during connect() and other calls. First seen on Unixware-7. Unify access to EGD-socket for all RAND_egd_*() methods.
2001-01-11OCSP basic response verify. Very incompleteDr. Stephen Henson
but will verify the signatures on a response and locate the signers certifcate. Still needs to implement a proper OCSP certificate verify. Fix warning in RAND_egd().
2001-01-09Add automatic query of EGD sockets to RAND_poll(). The EGD sockets areLutz Jänicke
only queried when the /dev/[u]random devices did not return enough entropy. Only the amount of entropy missing to reach the required minimum is queried, as EGD may be drained. Queried locations are: /etc/entropy, /var/run/egd-pool
2000-06-28Undo the changes I just made. I'm not sure what I was thinking of.Richard Levitte
The message to everyone is "Do not hack OpenSSL when stressed"...
2000-06-28Make it possible for people to tell where the EGD socket is throughRichard Levitte
the RANDEGD environment variable.
2000-06-03EVP constification.Ben Laurie
2000-02-28Switch for turning on the predictable "random" number generator.Ulf Möller
2000-02-27Use standard header file string.h for memset prototype (whereBodo Möller
"standard" refers to the C language, probably there's also some standard that defines memory.h).
2000-02-27Declare memset.Ben Laurie
2000-02-26For safety, check __VMS as well.Richard Levitte
2000-02-25EGD bugfix.Ulf Möller
Submitted by: Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2000-02-24Add an evil cast, because POSIX/SUSv2 define connect(2) requireRalf S. Engelschall
the second argument to be of type ``struct sockaddr *''.
2000-02-24Support EGD.Ulf Möller