summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
1999-05-13VMS support.Ulf Möller
Submitted by: Richard Levitte <richard@levitte.org>
1999-05-13Spacing in comment corrected.Bodo Möller
1999-05-13First tiny changes in preparation of changing of "sess_cert" handling.Bodo Möller
Also I've subsituted real tabs for 8-spaces sequences in some lines so that things don't look that weird with a tab-width of 4.
1999-05-13mk1mf.pl and mkdef.pl read OPTIONS from toplevel Makefile.Ulf Möller
Configure no longer changes files in place.
1999-05-12Several of the EVP_CIPHER structures had the get and set asn1 parameterDr. Stephen Henson
functions transposed.
1999-05-12Add new -out option to asn1parse to allow the parsed data to be output.Dr. Stephen Henson
Fixed -strparse option: it didn't work if used more than once (this was due to the d2i_ASN1_TYPE call parsing a freed buffer). On Win32 the file wincrypt.h #define's X509_NAME and PKCS7_SIGNER_INFO causing clashes so these are #undef'ed
1999-05-12Caldera OpenLinux passes test now.Ulf Möller
1999-05-12Missing argument in prototype.Ulf Möller
Submitted by: Andreas Ley <ley@rz.uni-karlsruhe.de>
1999-05-11Use ifndef PEDANTIC for all inline assembler.Ulf Möller
1999-05-11Comment.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-11argc counting bug fixed.Bodo Möller
Submitted by: Tomas Hulek Reviewed by: PR:
1999-05-11Clarify comment.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-11Move openssl.cnf out of lib/.Ulf Möller
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-05-11And I thought I could spell ... but in caps really everything looks the same.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-11Make SSL library a little more fool-proof by not requiring any longerBodo Möller
that SSL_set_{accept,connect}_state be called before SSL_{accept,connect} may be used. Submitted by: Reviewed by: PR:
1999-05-11Various PKCS#7 related fixes,tidies and comments.Dr. Stephen Henson
1999-05-10Move openssl.cnf out of lib/.Ulf Möller
1999-05-10Update.Ulf Möller
1999-05-10Fix for +xxx options.Ulf Möller
Submitted by: Anonymous
1999-05-10Ok, give us more time....Ralf S. Engelschall
1999-05-10Changed a comment.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-10The various character predicates (isspace and the like) may not beBodo Möller
used with negative char values, so I've added casts to unsigned char. Maybe what really should be done is change all those arrays and pointers to type unsigned char [] or unsigned char *, respectively; but using plain char with those predicates is just wrong, so something had to be done. Submitted by: Reviewed by: PR:
1999-05-10Moved some variable declarations inside blocks where they are neededBodo Möller
so that warnings about unused variables (for certain -D... constellations) are avoided; this corresponds to the earlier change for SHA1. Submitted by: Reviewed by: PR:
1999-05-10New entry debug-solaris-usparc-gcc, as debug-solaris-sparc-gcc no longerBodo Möller
applies to usparc systems. Submitted by: Reviewed by: PR:
1999-05-10Fix various things to let OpenSSL even pass ``egcc -pipe -O2 -Wall -WshadowRalf S. Engelschall
-Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline'' with EGCS 1.1.2+
1999-05-10Various PKCS#7 fixes to properly (maybe!) handle PKCS#7 enveloped data.Dr. Stephen Henson
Containts elements of code by Sebastian Akerman <sak@parallelconsulting.com> and made a bit less "naughty" by Steve.
1999-05-09No actual change, but the cert_st member of struct ssl_session_st is nowBodo Möller
called sess_cert instead of just cert. This is in preparation of further changes: Probably often when s->session->sess_cert is used, we should use s->cert instead; s->session->sess_cert should be a new structure containing only the stuff that is for just one connection (e.g. the peer's certificate, which the SSL client implementations currently store in s->session->[sess_]cert, which is a very confusing thing to do). Submitted by: Reviewed by: PR:
1999-05-09Create a duplicate of the SSL_CTX's CERT in SSL_new instead of copyingBodo Möller
pointers. The cert_st handling is changed by this in various ways. Submitted by: Reviewed by: PR:
1999-05-09One comment was in the wrong line ... some others are new.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-09Kill evil casts, fix PKCS#7 and add new X509V3 Function.Dr. Stephen Henson
1999-05-09Makefile.save was missing here.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-09Some tiny changes to the source code to make future diffs smallerBodo Möller
when restructuring the cert_st handling (removed unnused parts, and the like). Submitted by: Reviewed by: PR:
1999-05-09Move variable definitions into the blocks where they are really needed,Bodo Möller
so that warnings about unused variables don't appear if those blocks are removed by the C preprocessor. Submitted by: Reviewed by: PR:
1999-05-09Use "const char *" instead of "char *" for filenames passed to functions.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-08Various Win32 fixes. Win95 doesn't support MoveFileEx() (which was used for aDr. Stephen Henson
Win32 version of rename() ). There isn't a precise rename() equivalent under Win95: the standard rename() complains if the destination already exists so replaced with a combination of unlink() and MoveFile().
1999-05-08Allows PKCS#12 password to be placed on command line and add allow configDr. Stephen Henson
file name for 'ca' to come from the environment.
1999-05-08GeneralizedTime setting fixes.Dr. Stephen Henson
1999-05-08no-xxx option to exclude ciphers.Ulf Möller
1999-05-08The libssl32.dll definition file is called ssleay32.def. (why?)Ulf Möller
1999-05-08Mingw32.Ulf Möller
1999-05-08pass $PERL on make files.Ulf Möller
1999-05-08Superseded by sparcv8.S and sparcv8plus.s.Ulf Möller
1999-05-08This was an unused derivate of an old version of s_client.c that hadBodo Möller
been changed so that it almost could be used under Windows. No one asked to keep it (and no one volunteered to bring it into useable state), so away with it. Submitted by: Reviewed by: PR:
1999-05-07Generate DLLs with Mingw32.Ulf Möller
1999-05-07Get the Mingw32 makefiles right.Ulf Möller
1999-05-07Make -pedantic work again.Ben Laurie
1999-05-07Bodo didn't do that.Ben Laurie
1999-05-06Restored path names that were changed by a previous "Configure" run.Bodo Möller
(Rather than changing the files in places, we really should use .in files.) Submitted by: Reviewed by: PR:
1999-05-06Some comments.Bodo Möller
Submitted by: Reviewed by: PR:
1999-05-06config is Unix specific.Ulf Möller