summaryrefslogtreecommitdiffstats
path: root/engines
AgeCommit message (Collapse)Author
2008-09-12AIX build updates.Andy Polyakov
2008-08-13fix error function codesBodo Möller
2008-06-25Update from stable branch.Dr. Stephen Henson
2008-06-18Update from stable branch.Dr. Stephen Henson
2008-06-18Update from stable branch.Dr. Stephen Henson
2008-06-05Don't change _WIN32_WINNT and detect GetConsoleWindow() andDr. Stephen Henson
CryptUIDlgSelectCertificateFromStore() at runtime. Add callback function for selection mechanism.
2008-06-05Update from stable branch.Dr. Stephen Henson
2008-06-05Update from stable branch.Dr. Stephen Henson
2008-06-04Update from stable branch.Dr. Stephen Henson
2008-06-04Use an appropriate Window for selection dialog.Dr. Stephen Henson
2008-06-04Add support for Windoes dialog box based certificate selection.Dr. Stephen Henson
2008-06-04Tidy up and add comments to selection code.Dr. Stephen Henson
2008-06-04More type-checking.Ben Laurie
2008-06-04Avoid name clash.Dr. Stephen Henson
2008-06-04Only include windows headers when under windows.Ben Laurie
2008-06-03Add initial support for multiple SSL client certifcate selection inDr. Stephen Henson
CryptoAPI ENGINE.
2008-06-03Match empty CA list to anything for ssl client auth in CryptoAPI engine.Dr. Stephen Henson
2008-06-03Add preliminary SSL client auth callback to CryptoAPI ENGINE.Dr. Stephen Henson
2008-06-02Windows batch file to rebuild error codes for CryptoAPI ENGINE.Dr. Stephen Henson
2008-06-02Fix indentation.Dr. Stephen Henson
2008-06-01Free old store name (if any).Dr. Stephen Henson
2008-06-01Add ctrl for alternative certificate store names.Dr. Stephen Henson
2008-06-01Use keyspec for DSA too.Dr. Stephen Henson
2008-06-01Get and note keyspec when signing.Dr. Stephen Henson
2008-05-31Add CryptoAPI error file too.Dr. Stephen Henson
2008-05-31Add CryptoAPI ENGINE from stable branch.Dr. Stephen Henson
2008-05-26LHASH revamp. make depend.Ben Laurie
2008-04-27Paul Sheer optimised the OpenSSL to/from libGMP conversions for the caseGeoff Thorpe
where they both use the same limb size. I've tweaked his patch slightly, so blame me if it breaks. Submitted by: Paul Sheer Reviewed by: Geoff Thorpe
2008-04-18Add missing 'extern "C" {' to some _err.h files in crypto/engines/Lutz Jänicke
PR: 1609
2008-04-18Another minor update from the mingw developmentLutz Jänicke
PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>
2008-04-17Apply mingw patches as supplied by Roumen Petrov an Alon Bar-LevLutz Jänicke
PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
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...
2008-02-28Fix error code function name mismatches in GOST engine, rebuild errors.Dr. Stephen Henson
2008-01-05engine/ccgost Win32 portability fixes.Andy Polyakov
2008-01-04Avoid WIN32 signed/unsigned warnings.Dr. Stephen Henson
2008-01-03Netware support.Dr. Stephen Henson
Submitted by: Guenter Knauf <eflash@gmx.net>
2007-12-04gmp engine was non-operational.Andy Polyakov
2007-11-21Submitted by: "Victor B. Wagner" <vitus@cryptocom.ru>Dr. Stephen Henson
Update gost algorithm print routines.
2007-11-20Avoid warning.Dr. Stephen Henson
2007-11-16Fix warnings.Ben Laurie
2007-10-26GOST ENGINE information.Dr. Stephen Henson
2007-10-261. Changes for s_client.c to make it return non-zero exit code in caseDr. Stephen Henson
of handshake failure 2. Changes to x509_certificate_type function (crypto/x509/x509type.c) to make it recognize GOST certificates as EVP_PKT_SIGN|EVP_PKT_EXCH (required for s3_srvr to accept GOST client certificates). 3. Changes to EVP - adding of function EVP_PKEY_CTX_get0_peerkey - Make function EVP_PKEY_derive_set_peerkey work for context with ENCRYPT operation, because we use peerkey field in the context to pass non-ephemeral secret key to GOST encrypt operation. - added EVP_PKEY_CTRL_SET_IV control command. It is really GOST-specific, but it is used in SSL code, so it has to go in some header file, available during libssl compilation 4. Fix to HMAC to avoid call of OPENSSL_cleanse on undefined data 5. Include des.h if KSSL_DEBUG is defined into some libssl files, to make debugging output which depends on constants defined there, work and other KSSL_DEBUG output fixes 6. Declaration of real GOST ciphersuites, two authentication methods SSL_aGOST94 and SSL_aGOST2001 and one key exchange method SSL_kGOST 7. Implementation of these methods. 8. Support for sending unsolicited serverhello extension if GOST ciphersuite is selected. It is require for interoperability with CryptoPro CSP 3.0 and 3.6 and controlled by SSL_OP_CRYPTOPRO_TLSEXT_BUG constant. This constant is added to SSL_OP_ALL, because it does nothing, if non-GOST ciphersuite is selected, and all implementation of GOST include compatibility with CryptoPro. 9. Support for CertificateVerify message without length field. It is another CryptoPro bug, but support is made unconditional, because it does no harm for draft-conforming implementation. 10. In tls1_mac extra copy of stream mac context is no more done. When I've written currently commited code I haven't read EVP_DigestSignFinal manual carefully enough and haven't noticed that it does an internal digest ctx copying. This implementation was tested against 1. CryptoPro CSP 3.6 client and server 2. Cryptopro CSP 3.0 server
2007-09-19Clean up error codes a bit.Bodo Möller
(engines/ccgost/ remains utter chaos, though; "make errors" is not happy.)
2007-06-07Finish gcc 4.2 changes.Dr. Stephen Henson
2007-05-31Fix for GOST engine on platforms where sizeof(size_t) != sizeof(int).Dr. Stephen Henson
2007-05-22Revert broken change to ccgost.Dr. Stephen Henson
Initialize context properly for HMAC pkey method.
2007-05-21Fix warning and back out bad modification.Dr. Stephen Henson
2007-05-20Padlock engine fails to compile with -O0 -fPIC.Andy Polyakov
2007-05-18Updated GOST MAC support.Dr. Stephen Henson
Submitted by: vitus@cryptocom.ru