summaryrefslogtreecommitdiffstats
path: root/crypto/engine
AgeCommit message (Collapse)Author
2008-10-31Fix warnings after commit#17578.Andy Polyakov
2008-09-15From branch OpenSSL_0_9_8-stable: Allow soft-loading engines.Bodo Möller
Also, fix CHANGES (consistency with stable branch).
2008-08-06Remove the dual-callback scheme for numeric and pointer thread IDs,Geoff Thorpe
deprecate the original (numeric-only) scheme, and replace with the CRYPTO_THREADID object. This hides the platform-specifics and should reduce the possibility for programming errors (where failing to explicitly check both thread ID forms could create subtle, platform-specific bugs). Thanks to Bodo, for invaluable review and feedback.
2008-07-04Avoid warnings with -pedantic, specifically:Dr. Stephen Henson
Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument.
2008-07-03Revert my earlier CRYPTO_THREADID commit, I will commit a reworkedGeoff Thorpe
version some time soon.
2008-06-04More type-checking.Ben Laurie
2008-06-03Add support for client cert engine setting in s_client app.Dr. Stephen Henson
Add appropriate #ifdefs round client cert functions in headers.
2008-06-01Allow ENGINE client cert callback to specify a set of other certs, forDr. Stephen Henson
the rest of the certificate chain. Currently unused.
2008-06-01Update error codes, move typedef of SSL, SSL_CTX to ossl_typ.hDr. Stephen Henson
2008-06-01Add support for ENGINE supplied SSL client auth.Dr. Stephen Henson
2008-05-31Update VC-32.pl and load CryptoAPI engine in the right place.Dr. Stephen Henson
2008-05-31More CryptoAPI engine code from stable branch.Dr. Stephen Henson
2008-05-27Avoid "duplicate const" warnings.Dr. Stephen Henson
2008-05-26LHASH revamp. make depend.Ben Laurie
2008-04-28Fix auto-discovery of ENGINEs. See the CHANGES entry for details (and/orGeoff Thorpe
ticket #1668). PR: 1668 Submitted by: Ian Lister Reviewed by: Geoff Thorpe
2008-03-28There was a need to support thread ID types that couldn't be reliably castGeoff Thorpe
to 'unsigned long' (ie. odd platforms/compilers), so a pointer-typed version was added but it required portable code to check *both* modes to determine equality. This commit maintains the availability of both thread ID types, but deprecates the type-specific accessor APIs that invoke the callbacks - instead a single type-independent API is used. This simplifies software that calls into this interface, and should also make it less error-prone - as forgetting to call and compare *both* thread ID accessors could have led to hard-to-debug/infrequent bugs (that might only affect certain platforms or thread implementations). As the CHANGES note says, there were corresponding deprecations and replacements in the thread-related functions for BN_BLINDING and ERR too.
2008-03-22Update dependencies.Dr. Stephen Henson
2008-03-16Fix a variety of warnings generated by some elevated compiler-fascism,Geoff Thorpe
OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
2007-11-21Lookup public key ASN1 methods by string by iterating through allDr. Stephen Henson
implementations instead of all added ENGINEs to cover case where an ENGINE is not added.
2007-09-07Change safestack reimplementation to match 0.9.8.Dr. Stephen Henson
Fix additional gcc 4.2 value not used warnings.
2006-12-29Minor clean-up in crypto/engine.Andy Polyakov
2006-12-29Move eng_padlock.c to ./engines.Andy Polyakov
Submitted by: Michal Ludvig <michal@logix.cz>
2006-11-24register the engine as default engine in ENGINE_set_default()Nils Larsch
PR: 1431
2006-11-21Update from 0.9.8 stable. Eliminate duplicate error codes.Dr. Stephen Henson
2006-10-23Fix mingw warnings.Andy Polyakov
2006-10-23Allow for mingw cross-compile configuration.Andy Polyakov
2006-10-19Gcc over-optimizes PadLock AES CFB codepath, tell it not to.Andy Polyakov
2006-09-21Add missing prototype. Fix various warnings (C++ comments, ; outside function).Dr. Stephen Henson
2006-09-21Compile in gost engine.Dr. Stephen Henson
2006-08-28Make things static that should be. Declare stuff in headers that should be.Ben Laurie
Fix warnings.
2006-06-09Camellia cipher, contributed by NTTBodo Möller
Submitted by: Masashi Fujita Reviewed by: Bodo Moeller
2006-06-05Clarify comment and add #ifdef.Dr. Stephen Henson
2006-06-05Complete EVP_PKEY_ASN1_METHOD ENGINE support.Dr. Stephen Henson
2006-06-02Make update.Dr. Stephen Henson
2006-06-02Initial public key ASN1 method engine support. Not integrated yet.Dr. Stephen Henson
2006-06-02Automatically free up dynamically allocated public key methods whenDr. Stephen Henson
and ENGINE is destroyed.
2006-06-02Extend default method string to include public key methods.Dr. Stephen Henson
Add missing prototypes. Fix engine method lookup.
2006-06-02Add ENGINE support for EVP_PKEY_METHOD including lookups of ENGINEDr. Stephen Henson
implementations and functional reference counting when a context is allocated, free or copied.
2006-06-01Fix error code. make updateDr. Stephen Henson
2006-06-01Add missing prototype. Extend engine utility to print public key algorithms.Dr. Stephen Henson
2006-06-01Add engine table for EVP_PKEY_METHOD. Doesn't do much yet.Dr. Stephen Henson
2006-03-20Stop compiler warnings.Dr. Stephen Henson
2005-12-28Fix CFB and OFB modes in eng_padlock.c. Engine was consistent with itself,Andy Polyakov
but not interoperable with the rest of the world. test_padlock script is added mostly for reference.
2005-12-27Lower PADLOCK_CHUNK till value, which doesn't affect the benchmark results.Andy Polyakov
Well, it's even contrary, 512 was observed to *improve* performance by 5%. Excuse ourselves from treating C7 specially.
2005-11-06Update from stable branch.Dr. Stephen Henson
2005-09-09bugfix: register engine as default engine in ENGINE_set_default_DSANils Larsch
Submitted by: Jonathon Green
2005-08-28fix warnings when building openssl with the following compiler options:Nils Larsch
-Wmissing-prototypes -Wcomment -Wformat -Wimplicit -Wmain -Wmultichar -Wswitch -Wshadow -Wtrigraphs -Werror -Wchar-subscripts -Wstrict-prototypes -Wreturn-type -Wpointer-arith -W -Wunused -Wno-unused-parameter -Wuninitialized
2005-08-06avoid infinite recursion if dynamic engine isn't loadedNils Larsch
Submitted by: Jonathon Green <jonathon_au@yahoo.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-31changes from 0.9.8Nils Larsch