aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/ssl_ciph.c
Commit message (Collapse)AuthorAgeFilesLines
* Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte2001-02-201-4/+4
| | | | | | | missed any. This compiles and runs on Linux, and external applications have no problems with it. The definite test will be to build this on VMS.
* Fix AES code.Dr. Stephen Henson2001-02-071-22/+18
| | | | | | | | | | Update Rijndael source to v3.0 Add AES OIDs. Change most references of Rijndael to AES. Add new draft AES ciphersuites.
* Rijdael CBC mode and partial undebugged SSL support.Ben Laurie2001-02-061-1/+30
|
* It's completely unnecessary to add a compression algorithm that isRichard Levitte2000-12-041-0/+3
| | | | | really undefined. Spotted by Jeffrey Altman <jaltman@columbia.edu>
* First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. ↵Richard Levitte2000-11-301-1/+29
| | | | Implemented by Vern Staats <staatsvr@asc.hpc.mil>, further hacked and distributed by Jeffrey Altman <jaltnab@columbia.edu>
* Turn off memory checking when loading new compression algorithms.Richard Levitte2000-11-301-1/+5
|
* Use sk_*_new_null() instead of sk_*_new(NULL), since that takes careRichard Levitte2000-09-171-1/+1
| | | | | of complaints from the compiler about data pointers and function pointers not being compatible with each other.
* There have been a number of complaints from a number of sources that namesRichard Levitte2000-06-011-12/+12
| | | | | | | | | like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
* The previous commit to crypto/stack/*.[ch] pulled the type-safety stringsGeoff Thorpe2000-06-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | yet tighter, and also put some heat on the rest of the library by insisting (correctly) that compare callbacks used in stacks are prototyped with "const" parameters. This has led to a depth-first explosion of compiler warnings in the code where 1 constification has led to 3 or 4 more. Fortunately these have all been resolved to completion and the code seems cleaner as a result - in particular many of the _cmp() functions should have been prototyped with "const"s, and now are. There was one little problem however; X509_cmp() should by rights compare "const X509 *" pointers, and it is now declared as such. However, it's internal workings can involve recalculating hash values and extensions if they have not already been setup. Someone with a more intricate understanding of the flow control of X509 might be able to tighten this up, but for now - this seemed the obvious place to stop the "depth-first" constification of the code by using an evil cast (they have migrated all the way here from safestack.h). Fortunately, this is the only place in the code where this was required to complete these type-safety changes, and it's reasonably clear and commented, and seemed the least unacceptable of the options. Trying to take the constification further ends up exploding out considerably, and indeed leads directly into generalised ASN functions which are not likely to cooperate well with this.
* Avoid sprintf.Bodo Möller2000-05-211-2/+3
|
* Fix the indentation, and avoid a compiler warning.Bodo Möller2000-03-061-38/+39
|
* ispell (and minor modifications)Ulf Möller2000-02-031-5/+5
|
* Add new -notext option to 'ca', -pubkey option to spkac.Dr. Stephen Henson2000-02-031-1/+1
| | | | | | | | Remove some "WTF??" casts from applications. Fixes to keep VC++ happy and avoid warnings. Docs tidy.
* Minor patch: check only match @STRENGTH and remove eNULLDr. Stephen Henson2000-01-221-11/+4
| | | | | | | comment. Add documentation for the ciphers command including a full description of cipher lists.
* Apply Lutz Behnke's 56 bit cipher patch with a fewDr. Stephen Henson2000-01-221-295/+535
| | | | | | | minor changes. Docs haven't been added at this stage. They are probably best included in the 'ciphers' program docs.
* Don't mix real tabs with tabs expanded as 8 spaces -- that'sBodo Möller1999-06-071-8/+8
| | | | a pain to read when using 4-space tabs.
* Support the EBCDIC character set and BS2000/OSD-POSIX (work in progress).Ulf Möller1999-06-041-0/+4
| | | | Submitted by: Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-231-2/+2
| | | | | | Submitted by: Reviewed by: PR:
* Change functions to ANSI C.Ulf Möller1999-04-191-33/+17
|
* Massive constification.Ben Laurie1999-04-171-7/+7
|
* Just use an ANSI declaration, instead.Ben Laurie1999-04-151-6/+1
|
* Make Windows compilers happy.Bodo Möller1999-04-141-0/+4
| | | | | | Submitted by:Tom Titchener Reviewed by: PR:
* Add type-safe STACKs and SETs.Ben Laurie1999-04-121-20/+21
|
* Remove deleted PKCS#12 functions from pkcs12.h, get rid of object creationDr. Stephen Henson1999-03-291-8/+8
| | | | | kludge, remove CRs from ssl_ciph.c and update Win32 functions for PKCS#12 code. It might compile under Win32 now ...
* Delete NULL ciphers from 'ALL' in the cipher list aliases. This means thatDr. Stephen Henson1999-03-121-2/+3
| | | | | | | NULL ciphers specifically have to be enabled with e.g. "DEFAULT:eNULL". This prevents cipher lists from inadvertantly having NULL ciphers at the top of their list (e.g. the default ones) because they didn't have to be taken into account before.
* Permit null ciphers.Ben Laurie1999-03-061-1/+1
|
* Various changes to make this stuff compile under Win32 and VC++ with andDr. Stephen Henson1999-02-221-8/+8
| | | | | | | | without -debug option to mk1mf.pl. Change _export to is_export (_export is a reserved word under VC++). Add yucky function prototype function pointer casts. Sanitise the included files in crypto/x509v3. Also changed ssleay.exe target to openssl.exe
* Undo a couple of kludges.Ben Laurie1999-02-211-3/+3
|
* Add support for new TLS export ciphersuites.Ben Laurie1999-02-211-17/+21
|
* Updates to the new SSL compression codeMark J. Cox1999-02-161-3/+87
| | | | | | | | | | | | | | [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)] Fix so that the version number in the master secret, when passed via RSA, checks that if TLS was proposed, but we roll back to SSLv3 (because the server will not accept higher), that the version number is 0x03,0x01, not 0x03,0x00 [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)] Submitted by: Reviewed by: PR:
* Import of old SSLeay release: SSLeay 0.9.1b (unreleased)Ralf S. Engelschall1998-12-211-1/+1
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-211-93/+130
|
* Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1998-12-211-0/+721