summaryrefslogtreecommitdiffstats
path: root/engines/e_sureware.c
AgeCommit message (Collapse)Author
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-01More size_tification.Ben Laurie
2006-03-18remove unnecessary codeNils Larsch
2006-01-29add additional checks + cleanupNils Larsch
Submitted by: David Hartman <david_hartman@symantec.com>
2005-07-16makeNils Larsch
./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa] make depend all test work again PR: 1159
2005-05-09Update util/ck_errf.pl script, and have it run automaticallyBodo Möller
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.
2004-05-17The inclusion of bn.h from the engine.h API header has been deprecated, soGeoff Thorpe
the engine implementations need to include bn.h to manipulate bignums.
2004-04-19More updates for the header cleanups (and apologies, again, for not havingGeoff Thorpe
consolidated these prior to committing).
2004-04-19Reduce header interdependencies, initially in engine.h (the rest of theGeoff Thorpe
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.
2003-06-26Conform with the standard prototype for engine control functions.Richard Levitte
2003-01-15As with RSA, which was modified recently, this change makes it possible toGeoff Thorpe
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.
2003-01-07RSA_METHOD now supports key-generation, but (for now) none of theseGeoff Thorpe
ENGINEs implement it.
2002-11-28Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte
I've covered all the memset()s I felt safe modifying, but may have missed some.
2002-10-16The ENGINE implementations in ./engines/ should be role models on how toGeoff Thorpe
write external engines (and thus should require only installed openssl headers and libs to compile without warnings). So this gets rid of recently introduced compilation warnings (no longer including internal headers) by including string.h directly.
2002-10-11Step 7 of move of engines: Engines should not depend on privateRichard Levitte
OpenSSL header files.
2002-10-11Step 6 of move of engines: rename the macro ENGINE_DYNAMIC_SUPPORT toRichard Levitte
OPENSSL_NO_DYNAMIC_ENGINE and make sure that gets defined unless shared library support has been specifically requested.
2002-10-11Step 2 of move of engines: copy engines to new directory and rename themRichard Levitte
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/.