summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine (follow)
Commit message (Expand)AuthorAgeFilesLines
* $OpenBSD$tb2019-01-191-0/+1
* Partial port of EC_KEY_METHOD from OpenSSL 1.1.tb2019-01-195-4/+152
* Add automatic threading initialization for libcrypto.bcook2018-11-111-6/+1
* In ENGINE_up_ref(), check return value of CRYPTO_add() and reporttb2018-08-241-3/+5
* Make ENGINE_free() succeed on NULL. Matches OpenSSL's behavior andtb2018-04-145-27/+25
* make ENGINE_finish() succeed on NULL and simplify callers as intb2018-04-141-5/+3
* Bring in compatibility for OpenSSL 1.1 style init functions.beck2018-03-172-6/+19
* Send the function codes from the error functions to the bit bucket,beck2017-01-2914-171/+80
* Explicitly export a list of symbols from libcrypto.jsing2016-12-211-7/+3
* Replace all uses of magic numbers when operating on OPENSSL_ia32_P[] bymiod2016-11-041-11/+5
* Remove I386_ONLY define. It was only used to prefer amiod2016-11-041-2/+2
* Remove SHA0 check, as we did in v1.21 of sha.h.bcook2015-12-071-2/+2
* Kill coverity 128475beck2015-08-281-2/+2
* Remove OpenSSL engine RSAX.doug2015-07-193-701/+2
* abort when ENGINE_remove fails, fix Coverity 21656bcook2015-07-191-5/+2
* Return the failing engine ID in the error stack.bcook2015-06-191-2/+4
* Disable ENGINE_load_dynamic (dynamic engine support).bcook2015-06-193-513/+7
* Remove all getenv() calls, especially those wrapped by issetugid().deraadt2015-04-111-7/+2
* Enable building with -DOPENSSL_NO_DEPRECATED.doug2015-02-1114-14/+38
* Remove assert() or OPENSSL_assert() of pointers being non-NULL. The policymiod2015-02-101-6/+1
* BN_CTX_get() can fail - consistently check its return value.jsing2015-02-091-4/+7
* Delete a lot of #if 0 code in libressl.doug2015-02-074-45/+9
* Nuke yet more obvious #include duplications.krw2014-11-191-3/+1
* Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().jsing2014-10-221-2/+3
* None of these need to include <openssl/rand.h>jsing2014-10-182-4/+2
* Guard RSA / RC4-5 ASM when NO_ASM is not definedbcook2014-08-111-3/+4
* The bell tolls for BUF_strdup - Start the migration to usingbeck2014-07-131-4/+4
* if (x) FOO_free(x) -> FOO_free(x).miod2014-07-121-7/+4
* Only import cryptlib.h in the four source files that actually need it.jsing2014-07-115-18/+16
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-109-12/+27
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-108-9/+24
* remove unused dynamic_cmd_defns_empty structure.bcook2014-07-091-4/+1
* correct issetugid sense as spotted by Stijn van Drongelen.deraadt2014-06-291-3/+7
* Since this is a library, place issetugid() before every getenv()deraadt2014-06-231-2/+3
* More KNF.jsing2014-06-221-5/+5
* KNF.jsing2014-06-223-208/+203
* KNF.jsing2014-06-226-961/+1081
* More KNF.jsing2014-06-223-9/+9
* tags as requested by miod and teduderaadt2014-06-1228-15/+28
* c-file-style hints, begone; ok beckderaadt2014-06-111-1/+1
* Abandon the auto-ENGINE /dev/crypto interface. VIA 3des cbc receivesderaadt2014-06-103-1365/+1
* KNF.jsing2014-06-108-756/+756
* KNF.jsing2014-06-1011-435/+516
* use memset instead of bzeroderaadt2014-06-091-2/+2
* malloc() result does not need a cast.deraadt2014-06-072-4/+3
* A few months back there was a big community fuss regarding direct-usederaadt2014-06-023-143/+0
* more: no need for null check before freederaadt2014-05-301-8/+4
* no need for null check before free. from Brendan MacDonelltedu2014-05-301-2/+1
* convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53deraadt2014-05-291-1/+1
* if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod2014-05-221-2/+1