summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine/eng_dyn.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Set OPENSSL_NO_ENGINE, remove engine codetb2023-07-281-64/+0
| | | | | | | | | | ENGINE was special. It's horrible code even by the low standards of this library. Some ports may now try to use the stubs which will fail, but the fallout from this should be minimal. Of course there are various language bindings that expose the ENGINE API. OpenSSL 3 disabling ENGINE by default will likely help fixing this at some point. ok jsing
* Disable ENGINE_load_dynamic (dynamic engine support).bcook2015-06-191-485/+2
| | | | | | | We do not build, test or ship any dynamic engines, so we can remove the dynamic engine loader as well. This leaves a stub initialization function in its place. ok beck@, reyk@, miod@
* Enable building with -DOPENSSL_NO_DEPRECATED.doug2015-02-111-1/+3
| | | | | | | | | | | | | | | If you didn't enable deprecated code, there were missing err.h and bn.h includes. This commit allows building with or without deprecated code. This was not derived from an OpenSSL commit. However, they recently enabled OPENSSL_NO_DEPRECATED in git and fixed these header problems in a different way. Verified with clang that this only changes line numbers in the generated asm. ok miod@
* The bell tolls for BUF_strdup - Start the migration to usingbeck2014-07-131-4/+4
| | | | | | intrinsics. This is the easy ones, a few left to check one at a time. ok miod@ deraadt@
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-101-1/+2
| | | | | | are needed in the source files that actually require them. ok beck@ miod@
* remove unused dynamic_cmd_defns_empty structure.bcook2014-07-091-4/+1
| | | | ok miod@ deraadt@ guenther@
* tags as requested by miod and teduderaadt2014-06-121-1/+1
|
* KNF.jsing2014-06-101-171/+175
|
* more: no need for null check before freederaadt2014-05-301-8/+4
| | | | ok tedu guenther
* if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod2014-05-221-2/+1
| | | | eyeballed before applying. Contributed by Cyril Roelandt on tech@
* Change library to use intrinsic memory allocation functions instead ofbeck2014-04-171-11/+11
| | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free
* resolve conflicts, fix local changesdjm2010-10-011-7/+7
|
* resolve conflictsdjm2008-09-061-10/+98
|
* merge openssl-0.9.7-beta3, tested on vax by miod@markus2002-09-101-5/+19
|
* OpenSSL 0.9.7 stable 2002 05 08 mergebeck2002-05-151-0/+446