Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/crypto
AgeCommit message (Collapse)Author
1999-10-20Replace the macros in asn1.h with function equivalents. Also make UTF8StringsDr. Stephen Henson
tolerated in certificates.
1999-10-14Use of DEVRANDOM must be #ifdef'ed (the #ifdef was commented outBodo Möller
between SSLeay 0.8.1b and 0.9.0b with no apparent reason). If we *want* an error when DEVRANDOM is not defined (it always is with the current e_os.h) we should use #error.
1999-10-13Initial support for certificate purpose checking: this willDr. Stephen Henson
ultimately lead to certificate chain verification. It is VERY EXPERIMENTAL at present though.
1999-10-11Add EX_DATA support to X509.Dr. Stephen Henson
Fix a bug in the X509_get_d2i() functions which didn't check if crit was NULL.
1999-10-09New functions to parse and get extensions.Dr. Stephen Henson
1999-10-07RC4 tune-up featuring 30-40% performance improvement on most RISCAndy Polyakov
platforms. See crypto/rc4/rc4_enc.c for further details.
1999-10-05Fix for bug in pkcs12 program and typo in ASN1_tag2str().Dr. Stephen Henson
1999-10-05Add support for public key input and output in rsa and dsa utilities with someDr. Stephen Henson
new DSA public key functions that were missing. Also beginning of a cache for X509_EXTENSION structures: this will allow them to be accessed more quickly for things like certificate chain verification...
1999-10-04Fix for d2i_ASN1_bytes and stop PKCS#7 routines crashing is signed messageDr. Stephen Henson
contains no certificates. Also fix typo in RANLIB changes.
1999-10-04Add prototypes for new DSA functions Steve added recently.Ralf S. Engelschall
1999-10-02Fix for base64 BIO decoding bugDr. Stephen Henson
1999-09-30VC++ warning.Ulf Möller
1999-09-30Generate obj_dat.h in "make update".Ulf Möller
1999-09-27new control code BIO_C_RESET_READ_REQUESTBodo Möller
1999-09-26RC4 tune-up.Andy Polyakov
See comments in the code (after #if defined(RC4_CHUNK)) for more details.
1999-09-19Lots of evil casts to stop VC++ choking with "possible loss of data"Dr. Stephen Henson
warnings :-(
1999-09-19Add new sign and verify members to RSA_METHOD and change SSL code to use signDr. Stephen Henson
and verify rather than direct encrypt/decrypt.
1999-09-18Various CRL enhancements tidies and workaround for broken CRLs.Dr. Stephen Henson
1999-09-11Initial support for MacOS.Andy Polyakov
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>
1999-09-10Parantheses not needed.Ulf Möller
1999-09-10"make update"Bodo Möller
1999-09-10Use non-copying BIO interface in ssltest.c.Bodo Möller
1999-09-10typoBodo Möller
1999-09-10Correction for the testapps lines.Ulf Möller
1999-09-10Correct warnings.Ben Laurie
1999-09-09some more patches for avoiding problems with non-automatic variablesBodo Möller
1999-09-09Fix typo.Dr. Stephen Henson
1999-09-08Oops... forgot the other RSA_NULL patches...Dr. Stephen Henson
1999-09-08This is preliminary support for an "RSA null" cipher. Unfortunately whenDr. Stephen Henson
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.
1999-09-08Use proper flags to build the testapps (default CC value causes confusionUlf Möller
on Solaris)
1999-09-08Non-copying interface to BIO pairs.Bodo Möller
It's still totally untested ...
1999-09-07New function to convert ASN1 tag values to strings. Also fix typo in asn1.hDr. Stephen Henson
1999-09-06Fix warnings.Ben Laurie
1999-09-06Fix warnings.Ben Laurie
1999-09-05SHA clean-up Intel assembler companion.Andy Polyakov
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...
1999-09-05SHA clean-up and (LP64) tune-up.Andy Polyakov
"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.
1999-09-04New UTF8 utility functions to parse/generate UTF8 strings.Dr. Stephen Henson
1999-09-03Fix server behaviour when facing backwards-compatible client hellos.Bodo Möller
1999-09-03Add new 'spkac' utility and several SPKAC utility functions.Dr. Stephen Henson
1999-09-02Make DH_free() free up any ex_data and also call the finish method.Dr. Stephen Henson
1999-08-28RIPEMD160 shape-up Intel assembler companion. Cycle counter benchmarksAndy Polyakov
went down from 1050 to 921 cycles on Pentium II. I haven't checked the figures on Pentium yet.
1999-08-28RIPEMD160 shape-up. Major news are that it's operational on all platformsAndy Polyakov
now and I'm putting it back to 'make test' later today.
1999-08-28make testapps after the library.Ulf Möller
1999-08-28md32_common.h update and accompanying MD5 update.Andy Polyakov
1999-08-25Allow extensions to be added to certificate requests, update the sampleDr. Stephen Henson
config file (change RAW to DER).
1999-08-24make update.Ulf Möller
1999-08-24Minor MIPS III/IV tune-up.Andy Polyakov
1999-08-24Fix for a bug which meant encrypting BIOs sometimes wouldn't read the finalDr. Stephen Henson
block.
1999-08-24Initial support for DH_METHOD. Also added a DH lock. A few changes made toDr. Stephen Henson
DSA_METHOD to make it more consistent with RSA_METHOD.
1999-08-22Initial support for DSA_METHOD...Dr. Stephen Henson