summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
1999-11-12DIFFERENCE doesn't handle long (>255 chars) lines well. Use BACKUP instead. ↵Richard Levitte
No, I'm not joking.
1999-11-12adjust to changes in test/Makefile.sslRichard Levitte
1999-11-12adjust to changes in test/testsslRichard Levitte
1999-11-12Make sure installed files are world readableRichard Levitte
1999-11-12Merge some common functionality in the apps, deleteDr. Stephen Henson
the encryption option in the pkcs7 utility (they never did anything) and add a couple more options to pkcs7.
1999-11-12Oops forgot the S/MIME v3 RFC.Dr. Stephen Henson
1999-11-12More docs and corrections/updatesDr. Stephen Henson
1999-11-11Add password command line options to some utils. Fix and update manDr. Stephen Henson
pages.
1999-11-11Fix a couple of outstanding issues: update STATUS file, fix NO_FP_API problems.Dr. Stephen Henson
Update docs, change 'ca' to use the new callback parameter. Now moved key_callback into app.c because some other utilities will use it soon.
1999-11-11Oops. The pkcs8 man page wasn't finished: this is an updated versionDr. Stephen Henson
1999-11-10Very preliminary POD format documentation for someDr. Stephen Henson
of the openssl utility commands...
1999-11-09Undo silly change.Bodo Möller
1999-11-09Fix (spurious) warnings.Ben Laurie
1999-11-09Avoid some warnings.Bodo Möller
1999-11-08Fix to the -revoke option in ca. It was leaking memory, crashing and justDr. Stephen Henson
plain not working :-( Also fix some memory leaks in the new X509_NAME code. Fix so new app_rand code doesn't crash 'x509' and move #include so it compiles under Win32.
1999-11-04Allow additional information to be attached to aDr. Stephen Henson
certificate: currently this includes trust settings and a "friendly name".
1999-11-03Fix assembler for Alpha (tested only on DEC OSF not Linux or *BSD). TheMark J. Cox
problem was that one of the replacement routines had not been working since SSLeay releases. For now the offending routine has been replaced with non-optimised assembler. Even so, this now gives around 95% performance improvement for 1024 bit RSA signs.
1999-10-30*** empty log message ***Ulf Möller
1999-10-29Fix to PKCS#7 routines so it can decrypt some oddball RC2 handling.Dr. Stephen Henson
1999-10-27Continued multibyte character support.Dr. Stephen Henson
Add a bunch of functions to simplify the creation of X509_NAME structures. Change the X509_NAME_entry_add stuff in req/ca so it no longer uses X509_NAME_entry_count(): passing -1 has the same effect.
1999-10-26Always hash the pid in the first iteration in ssleay_rand_bytes,Bodo Möller
don't try to detect fork()s by looking at getpid(). The reason is that threads sharing the same memory can have different PIDs; it's inefficient to run RAND_seed each time a different thread calls RAND_bytes.
1999-10-26Make md_rand.c more robust.Bodo Möller
1999-10-26Warn about RANDFILE being overwritten.Bodo Möller
1999-10-26Don't be overly paranoid.Bodo Möller
1999-10-26New file app_rand.c with some functionality used in various opensslBodo Möller
applications.
1999-10-26Various randomness handling bugfixes and improvements --Bodo Möller
some utilities that should have used RANDFILE did not, and -rand handling was broken except in genrsa.
1999-10-26Report an error from X509_STORE_load_locationsBodo Möller
when X509_LOOKUP_load_file or X509_LOOKUP_add_dir failed.
1999-10-25Update Borland C++ builder support.Bodo Möller
Submitted by: Janez Jere <jj@void.si>
1999-10-25Improve support for running everything as a monolithic application.Bodo Möller
Submitted by: Lennart Bång, Bodo Möller
1999-10-25Respect PEX_LIBS and EX_LIBS when building binariesBodo Möller
(needed for RSAREF builds)
1999-10-25More multibyte character support.Dr. Stephen Henson
Functions to get keys from EVP_PKEY structures.
1999-10-23Constification.Ben Laurie
1999-10-23Don't return stuff from void functions.Ben Laurie
1999-10-21New function ASN1_mbstring_copy() to handle ASN1 string copying. UltimatelyDr. Stephen Henson
this will be used to clear up the horrible DN mess.
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-07More patches.Ulf Möller
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-07RC4 tune-up featuring 30-40% performance improvement on most RISCAndy Polyakov
platforms. See crypto/rc4/rc4_enc.c for further details.
1999-10-06Fix incorrect usage messages in some commands.Dr. Stephen Henson
1999-10-05Fix for bug in pkcs12 program and typo in ASN1_tag2str().Dr. Stephen Henson
1999-10-05Fix for bug in pkcs12 program and typo in ASN1_tag2str().Dr. Stephen Henson
1999-10-04New option -dhparam to s_server to allow the DH parameter file to be setDr. Stephen Henson
explicitly. Previously it couldn't be changed because it was hard coded as "server.pem".
1999-10-04Add 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-03Pass $(RANLIB) when doing "make install" in subdirectories;Bodo Möller
rsaref needs ist. Submitted by: Will Day