aboutsummaryrefslogtreecommitdiffstats
path: root/engines/e_aep.c
Commit message (Collapse)AuthorAgeFilesLines
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-951/+978
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Undo a90081576c94f9f54de1755188a00ccc1760549aRich Salz2014-08-091-1/+1
| | | | Undo unapproved commit that removed DJGPP and WATT32
* Remove DJGPP (and therefore WATT32) #ifdef's.Rich Salz2014-08-081-1/+1
| | | | | | DJGPP is no longer a supported platform. Remove all #ifdef, etc., cases that refer to it. DJGPP also #define'd WATT32, so that is now removed as well.
* Fix warning.Dr. Stephen Henson2013-11-011-1/+1
|
* engines/e_aep.c: make it BN_ULONG-size and endian "neutral".Andy Polyakov2013-10-281-43/+61
|
* Version skew reduction: trivia (I hope).Ben Laurie2012-06-031-1/+0
|
* PR: 2375Dr. Stephen Henson2010-11-181-6/+2
| | | | | | | Submitted by: Guenter <lists@gknw.net> Reviewed by: steve cleanup/fix e_aep.c for OpenWatcom
* This _WIN32-specific patch makes it possible to "wrap" OpenSSL in anotherAndy Polyakov2008-12-221-3/+5
| | | | | | | .DLL, in particular static build. The issue has been discussed in RT#1230 and later on openssl-dev, and mutually exclusive approaches were suggested. This completes compromise solution suggested in RT#1230. PR: 1230
* Add initial support for mingw64.Andy Polyakov2008-11-031-1/+1
| | | | | PR: 1693 Submitted by: Alon Bar-Lev
* Netware support.Dr. Stephen Henson2008-01-031-0/+5
| | | | Submitted by: Guenter Knauf <eflash@gmx.net>
* makeNils Larsch2005-07-161-0/+14
| | | | | | | | ./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa] make depend all test work again PR: 1159
* clear dso pointer in case of an errorNils Larsch2005-06-171-0/+1
| | | | PR: 816
* Update util/ck_errf.pl script, and have it run automaticallyBodo Möller2005-05-091-2/+2
| | | | | | | | during "make errors" and thus during "make update". Fix lots of bugs that util/ck_errf.pl can detect automatically. Various others of these are still left to fix; that's why "make update" will complain loudly when run now.
* The inclusion of bn.h from the engine.h API header has been deprecated, soGeoff Thorpe2004-05-171-0/+1
| | | | the engine implementations need to include bn.h to manipulate bignums.
* More updates for the header cleanups (and apologies, again, for not havingGeoff Thorpe2004-04-191-0/+1
| | | | consolidated these prior to committing).
* Reduce header interdependencies, initially in engine.h (the rest of theGeoff Thorpe2004-04-191-3/+2
| | | | | | | | | changes are the fallout). As this could break source code that doesn't directly include headers for interfaces it uses, changes to recursive includes are covered by the OPENSSL_NO_DEPRECATED symbol. It's better to define this when building and using openssl, and then adapt code where necessary - this is how to stay current. However the mechanism exists for the lethargic.
* By adding a BN_CTX parameter to the 'rsa_mod_exp' callback, private keyGeoff Thorpe2004-03-251-9/+3
| | | | | | | | | | | operations no longer require two distinct BN_CTX structures. This may put more "strain" on the current BN_CTX implementation (which has a fixed limit to the number of variables it will hold), but so far this limit is not triggered by any of the tests pass and I will be changing BN_CTX in the near future to avoid this problem anyway. This also changes the default RSA implementation code to use the BN_CTX in favour of initialising some of its variables locally in each function.
* Netware-specific changes,Richard Levitte2003-11-281-0/+4
| | | | | | PR: 780 Submitted by: Verdon Walker <VWalker@novell.com> Reviewed by: Richard Levitte
* Conform with the standard prototype for engine control functions.Richard Levitte2003-06-261-2/+2
|
* As with RSA, which was modified recently, this change makes it possible toGeoff Thorpe2003-01-151-1/+4
| | | | | | override key-generation implementations by placing handlers in the methods for DSA and DH. Also, parameter generation for DSA and DH is possible by another new handler for each method.
* RSA_METHOD now supports key-generation, but (for now) none of theseGeoff Thorpe2003-01-071-1/+2
| | | | ENGINEs implement it.
* Step 7 of move of engines: Engines should not depend on privateRichard Levitte2002-10-111-1/+1
| | | | OpenSSL header files.
* Step 6 of move of engines: rename the macro ENGINE_DYNAMIC_SUPPORT toRichard Levitte2002-10-111-1/+1
| | | | | OPENSSL_NO_DYNAMIC_ENGINE and make sure that gets defined unless shared library support has been specifically requested.
* Step 2 of move of engines: copy engines to new directory and rename themRichard Levitte2002-10-111-0/+1119
to be prefixed with e_ instead of hw_. They aren't necessarely hardware engines. The files commited here are exact copies of the corresponding hw_ files found in crypto/engine/.