aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/o_init.c
Commit message (Collapse)AuthorAgeFilesLines
* Dead code cleanup: crypto/*.c, x509v3, demosRich Salz2015-02-021-3/+0
| | | | | | | Some of the #if 0 code in demo's was kept, but given helpful #ifdef names, to show more sample code. Reviewed-by: Andy Polyakov <appro@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-18/+19
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* remove unnecessary attempt to automatically call OPENSSL_initDr. Stephen Henson2012-07-011-51/+0
|
* Extensive reorganisation of PRNG handling in FIPS module: all callsDr. Stephen Henson2011-04-051-0/+2
| | | | | | | | | now use an internal RAND_METHOD. All dependencies to OpenSSL standard PRNG are now removed: it is the applications resposibility to setup the FIPS PRNG and initalise it. Initial OpenSSL RAND_init_fips() function that will setup the DRBG for the "FIPS capable OpenSSL".
* Disable test fprintf.Dr. Stephen Henson2011-04-041-1/+1
|
* Allow FIPS malloc callback setting. Automatically set some callbacksDr. Stephen Henson2011-04-011-0/+8
| | | | in OPENSSL_init().
* Add additional OPENSSL_init() handling add dummy call to (hopefully)Dr. Stephen Henson2011-04-011-1/+6
| | | | ensure OPENSSL_init() is always linked into an application.
* Provisional support for auto called OPENSSL_init() function. This can beDr. Stephen Henson2011-04-011-0/+118
used to set up any appropriate functions such as FIPS callbacks without requiring an explicit application call.