aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Initial support for MacOS.Andy Polyakov1999-09-1118-35/+91
| | | | | | | | | | | | | | This will soon be complemented with MacOS specific source code files and INSTALL.MacOS. I (Andy) have decided to get rid of a number of #include <sys/types.h>. I've verified it's ok (both by examining /usr/include/*.h and compiling) on a number of Unix platforms. Unfortunately I don't have Windows box to verify this on. I really appreciate if somebody could try to compile it and contact me a.s.a.p. in case a problem occurs. Submitted by: Roy Wood <roy@centricsystems.ca> Reviewed by: Andy Polyakov <appro@fy.chalmers.se>
* Fix yet another bug for client hello handling.Bodo Möller1999-09-111-1/+1
|
* Repair another bug in s23_get_client_hello:Bodo Möller1999-09-103-23/+20
| | | | tls1 did not survive to restarts, so get rid of it.
* Parantheses not needed.Ulf Möller1999-09-102-3/+3
|
* "make update"Bodo Möller1999-09-107-7/+19
|
* Use non-copying BIO interface in ssltest.c.Bodo Möller1999-09-103-54/+56
|
* typoBodo Möller1999-09-101-1/+1
|
* Correction for the testapps lines.Ulf Möller1999-09-101-2/+2
|
* Truncate message about "new" include filenamesBodo Möller1999-09-101-30/+2
|
* Re-enable message about transition <foo.h> => <openssl/foo.h>Bodo Möller1999-09-091-32/+32
| | | | | because various programs are not updated that often and hence still expect header files names without the openssl/ prefix.
* Correct warnings.Ben Laurie1999-09-092-2/+6
|
* some more patches for avoiding problems with non-automatic variablesBodo Möller1999-09-0810-30/+33
|
* Fix typo.Dr. Stephen Henson1999-09-081-1/+1
|
* Oops... forgot the other RSA_NULL patches...Dr. Stephen Henson1999-09-086-5/+19
|
* This is preliminary support for an "RSA null" cipher. Unfortunately whenDr. Stephen Henson1999-09-082-0/+152
| | | | | | | | | | | | | | | OpenSSL is compiled with NO_RSA, no RSA operations can be used: including key generation storage and display of RSA keys. Since these operations are not covered by the RSA patent (my understanding is it only covers encrypt, decrypt, sign and verify) they can be included: this is an often requested feature, attempts to use the patented operations return an error code. This is enabled by setting RSA_NULL. This means that if a particular application has its own legal US RSA implementation then it can use that instead by setting it as the default RSA method. Still experimental and needs some fiddling of the other libraries so they have some options that don't attempt to use RSA if it isn't allowed.
* Use proper flags to build the testapps (default CC value causes confusionUlf Möller1999-09-081-2/+2
| | | | on Solaris)
* Non-copying interface to BIO pairs.Bodo Möller1999-09-074-2/+239
| | | | It's still totally untested ...
* Correct address in a comment.Ulf Möller1999-09-071-1/+1
|
* *** empty log message ***Ulf Möller1999-09-071-1/+1
|
* Check the as version on Solaris x86. People don't read INSTALL anyway. :)Ulf Möller1999-09-072-3/+9
|
* New function to convert ASN1 tag values to strings. Also fix typo in asn1.hDr. Stephen Henson1999-09-073-49/+28
|
* Fix warnings.Ben Laurie1999-09-064-9/+8
|
* Fix warnings.Ben Laurie1999-09-064-17/+18
|
* Reinitialize conf to NULL whenver ca application is started.Bodo Möller1999-09-051-1/+2
| | | | Submitted by: Lennart Bang
* SHA clean-up Intel assembler companion.Andy Polyakov1999-09-052-573/+672
| | | | | | | I've chosen to nest two functions in order to save about 4K. As a result s1-win32.asm doesn't look right (nested PROC/ENDP SEGMENT/ENDS) and it's probably impossible to compile. I assume I have to reconsider... But not today...
* SHA clean-up and (LP64) tune-up.Andy Polyakov1999-09-055-1051/+367
| | | | | | | | | | | "Clean-up" stands for the fact that it's using common message digest template ../md32_common.h and sha[1_]dgst.c are reduced down to '#define SHA_[01]' and then '#include "sha_locl.h"'. It stands "(LP64)" there because it's 64 bit platforms which benefit most from the tune-up. The updated code exhibits 40% performance improvement on IRIX64 (sounds too good, huh? I probably should double check if it's not some cache trashing that was holding it back before), 28% - on Alpha Linux and 12% - Solaris 7/64.
* New UTF8 utility functions to parse/generate UTF8 strings.Dr. Stephen Henson1999-09-044-0/+159
|
* Reinitialize global variables when necessary (for monolith application).Bodo Möller1999-09-034-5/+17
|
* use explicit constant 11 just onceBodo Möller1999-09-031-3/+3
|
* Make previous bugfix actually workBodo Möller1999-09-031-9/+4
|
* Fix server behaviour when facing backwards-compatible client hellos.Bodo Möller1999-09-035-17/+54
|
* -no_dhe option for ssltest.cBodo Möller1999-09-032-24/+35
|
* Use closesocket macro consistently, not close directly, for easierBodo Möller1999-09-031-2/+2
| | | | | portability. Submitted by: Lennart Bång
* Handle "#if 0" correctly (I hope)Bodo Möller1999-09-031-0/+6
|
* Add new 'spkac' utility and several SPKAC utility functions.Dr. Stephen Henson1999-09-0312-29/+564
|
* Make DH_free() free up any ex_data and also call the finish method.Dr. Stephen Henson1999-09-011-0/+4
|
* RIPEMD160 shape-up. Final touch.Andy Polyakov1999-08-282-1/+4
|
* RIPEMD160 shape-up Intel assembler companion. Cycle counter benchmarksAndy Polyakov1999-08-283-1767/+1780
| | | | | went down from 1050 to 921 cycles on Pentium II. I haven't checked the figures on Pentium yet.
* RIPEMD160 shape-up. Major news are that it's operational on all platformsAndy Polyakov1999-08-284-366/+293
| | | | now and I'm putting it back to 'make test' later today.
* make testapps after the library.Ulf Möller1999-08-284-2/+7
|
* md32_common.h update and accompanying MD5 update.Andy Polyakov1999-08-282-7/+19
|
* Allow the extension section specified in config files to be overriddenDr. Stephen Henson1999-08-274-7/+46
| | | | on the command line for various utilities.
* Allow the 1.OU="my OU" syntax in 'ca' for SPKACs.Dr. Stephen Henson1999-08-252-1/+17
|
* Allow extensions to be added to certificate requests, update the sampleDr. Stephen Henson1999-08-255-4/+78
| | | | config file (change RAW to DER).
* make update.Ulf Möller1999-08-245-10/+53
|
* Minor MIPS III/IV tune-up.Andy Polyakov1999-08-243-76/+79
|
* Fix for a bug which meant encrypting BIOs sometimes wouldn't read the finalDr. Stephen Henson1999-08-242-3/+18
| | | | block.
* Initial support for DH_METHOD. Also added a DH lock. A few changes made toDr. Stephen Henson1999-08-238-18/+189
| | | | DSA_METHOD to make it more consistent with RSA_METHOD.
* Initial support for DSA_METHOD...Dr. Stephen Henson1999-08-227-200/+439
|
* Allow memory bios to be read only and change PKCS#7 routines to use them.Dr. Stephen Henson1999-08-195-28/+95
|