summaryrefslogtreecommitdiff
path: root/engines
Commit message (Collapse)AuthorAgeFilesLines
* Update from stable branch.Dr. Stephen Henson2008-06-251-3/+26
|
* Update from stable branch.Dr. Stephen Henson2008-06-181-2/+6
|
* Update from stable branch.Dr. Stephen Henson2008-06-181-6/+30
|
* Don't change _WIN32_WINNT and detect GetConsoleWindow() andDr. Stephen Henson2008-06-051-16/+39
| | | | | CryptUIDlgSelectCertificateFromStore() at runtime. Add callback function for selection mechanism.
* Update from stable branch.Dr. Stephen Henson2008-06-051-5/+8
|
* Update from stable branch.Dr. Stephen Henson2008-06-051-0/+2
|
* Update from stable branch.Dr. Stephen Henson2008-06-041-1/+3
|
* Use an appropriate Window for selection dialog.Dr. Stephen Henson2008-06-041-1/+9
|
* Add support for Windoes dialog box based certificate selection.Dr. Stephen Henson2008-06-043-7/+93
|
* Tidy up and add comments to selection code.Dr. Stephen Henson2008-06-041-11/+11
|
* More type-checking.Ben Laurie2008-06-041-33/+82
|
* Avoid name clash.Dr. Stephen Henson2008-06-041-0/+2
|
* Only include windows headers when under windows.Ben Laurie2008-06-041-2/+2
|
* Add initial support for multiple SSL client certifcate selection inDr. Stephen Henson2008-06-031-12/+54
| | | | CryptoAPI ENGINE.
* Match empty CA list to anything for ssl client auth in CryptoAPI engine.Dr. Stephen Henson2008-06-031-1/+3
|
* Add preliminary SSL client auth callback to CryptoAPI ENGINE.Dr. Stephen Henson2008-06-033-34/+141
|
* Windows batch file to rebuild error codes for CryptoAPI ENGINE.Dr. Stephen Henson2008-06-021-0/+1
|
* Fix indentation.Dr. Stephen Henson2008-06-021-48/+60
|
* Free old store name (if any).Dr. Stephen Henson2008-06-011-0/+2
|
* Add ctrl for alternative certificate store names.Dr. Stephen Henson2008-06-011-0/+10
|
* Use keyspec for DSA too.Dr. Stephen Henson2008-06-011-1/+1
|
* Get and note keyspec when signing.Dr. Stephen Henson2008-06-011-1/+3
|
* Add CryptoAPI error file too.Dr. Stephen Henson2008-05-311-0/+178
|
* Add CryptoAPI ENGINE from stable branch.Dr. Stephen Henson2008-05-314-4/+1554
|
* LHASH revamp. make depend.Ben Laurie2008-05-261-4/+6
|
* Paul Sheer optimised the OpenSSL to/from libGMP conversions for the caseGeoff Thorpe2008-04-271-15/+51
| | | | | | | | 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
* Add missing 'extern "C" {' to some _err.h files in crypto/engines/Lutz Jänicke2008-04-1810-0/+40
| | | | PR: 1609
* Another minor update from the mingw developmentLutz Jänicke2008-04-181-2/+2
| | | | | PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>
* Apply mingw patches as supplied by Roumen Petrov an Alon Bar-LevLutz Jänicke2008-04-174-17/+24
| | | | | PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
* Update dependencies.Dr. Stephen Henson2008-03-221-8/+9
|
* Fix a variety of warnings generated by some elevated compiler-fascism,Geoff Thorpe2008-03-163-1/+7
| | | | OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
* Fix error code function name mismatches in GOST engine, rebuild errors.Dr. Stephen Henson2008-02-288-134/+102
|
* engine/ccgost Win32 portability fixes.Andy Polyakov2008-01-055-17/+45
|
* Avoid WIN32 signed/unsigned warnings.Dr. Stephen Henson2008-01-044-8/+7
|
* Netware support.Dr. Stephen Henson2008-01-032-0/+8
| | | | Submitted by: Guenter Knauf <eflash@gmx.net>
* gmp engine was non-operational.Andy Polyakov2007-12-041-4/+4
|
* Submitted by: "Victor B. Wagner" <vitus@cryptocom.ru>Dr. Stephen Henson2007-11-213-25/+127
| | | | Update gost algorithm print routines.
* Avoid warning.Dr. Stephen Henson2007-11-201-2/+2
|
* Fix warnings.Ben Laurie2007-11-162-4/+5
|
* GOST ENGINE information.Dr. Stephen Henson2007-10-261-0/+280
|
* 1. Changes for s_client.c to make it return non-zero exit code in caseDr. Stephen Henson2007-10-2611-910/+339
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Clean up error codes a bit.Bodo Möller2007-09-192-3/+3
| | | | (engines/ccgost/ remains utter chaos, though; "make errors" is not happy.)
* Finish gcc 4.2 changes.Dr. Stephen Henson2007-06-071-2/+2
|
* Fix for GOST engine on platforms where sizeof(size_t) != sizeof(int).Dr. Stephen Henson2007-05-311-1/+5
|
* Revert broken change to ccgost.Dr. Stephen Henson2007-05-221-1/+1
| | | | Initialize context properly for HMAC pkey method.
* Fix warning and back out bad modification.Dr. Stephen Henson2007-05-212-2/+2
|
* Padlock engine fails to compile with -O0 -fPIC.Andy Polyakov2007-05-201-1/+1
|
* Updated GOST MAC support.Dr. Stephen Henson2007-05-1810-123/+73
| | | | Submitted by: vitus@cryptocom.ru
* Initial GOST MAC support. Not fully working yet...Dr. Stephen Henson2007-05-179-86/+386
|
* Missing config file.Ben Laurie2007-04-051-0/+1
|