summaryrefslogtreecommitdiffstats
path: root/apps
AgeCommit message (Collapse)Author
2005-02-03Shut whiny make's up.Andy Polyakov
2005-02-01Address run-time linker problems: LD_PRELOAD issue on multi-ABI platformsAndy Polyakov
and SafeDllSearchMode in Windows. Submitted by: Richard Levitte
2005-01-26The mix of CFLAGS and LDFLAGS is a bit confusing in my opinion, andRichard Levitte
Makefile.shared was a bit overcomplicated. Make the shell variables LDFLAGS and SHAREDFLAGS in Makefile.shared get the values of $(CFLAGS) or $(LDFLAGS) as appropriate depending on the value the shell variables LDCMD and SHAREDCMD get. That leaves much less chance of confusion, since those pairs of shell variables always are defined together.
2005-01-25Please BSD make...Andy Polyakov
2005-01-04DJGPP update.Andy Polyakov
PR: 989 Submitted by: Doug Kaufman
2004-12-30Remove naming conflict between variable and label.Andy Polyakov
2004-12-29Prompt for passphrases for PKCS12 input formatDr. Stephen Henson
2004-12-28Add functionality needed to process proxy certificates.Richard Levitte
2004-12-13Fix s_client so it works without a certificate again.Dr. Stephen Henson
2004-12-13Propagate a few more variables to Makefile.shared when linkingRichard Levitte
programs.
2004-12-05Use X509_cmp_time() in -checkend option, to support GeneralizedTime.Dr. Stephen Henson
2004-12-03Add -passin argument to dgst command.Dr. Stephen Henson
2004-11-29Make an explicit check during certificate validation to see that theRichard Levitte
CA setting in each certificate on the chain is correct. As a side- effect always do the following basic checks on extensions, not just when there's an associated purpose to the check: - if there is an unhandled critical extension (unless the user has chosen to ignore this fault) - if the path length has been exceeded (if one is set at all) - that certain extensions fit the associated purpose (if one has been given)
2004-11-23Typo.Dr. Stephen Henson
2004-11-23Fix memory leak.Dr. Stephen Henson
2004-11-17In "req" exit immediately if configuration file is needed and it can'tDr. Stephen Henson
be loaded instead of giving the misleading: "unable to find 'distinguised_name' in config" error message.
2004-11-16PR: 910Dr. Stephen Henson
Add command line options -certform, -keyform and -pass to s_client and s_server. This supports the use of alternative passphrase sources, key formats and keys handled by an ENGINE. Update docs.
2004-11-14PR: 940Dr. Stephen Henson
Typo: use prompt_info, not cb_data->prompt_info.
2004-11-14Zap obsolete der_chop script.Dr. Stephen Henson
2004-11-13Fix x509.c so it creates serial number file again if noDr. Stephen Henson
serial number is supplied on command line.
2004-11-11Cut'n'paste mistake. All tested OK now...Richard Levitte
2004-11-11Whoops, syntactic mistake...Richard Levitte
2004-11-11Some find it confusing that environment variables are set when sharedRichard Levitte
libraries aren't built or used. I can see the point, so I'm reorganising a little for clarity.
2004-11-11Use the default_md config file value when signing CRLs.Dr. Stephen Henson
PR:662
2004-11-11Don't return an error with crl -noout.Dr. Stephen Henson
PR:917 Sumbmitted by: Michael Konietzka <konietzka@schlund.de>
2004-11-05Make sure LD_PRELOAD is only set when we build shared libraries (andRichard Levitte
therefore link with them). Add LD_PRELOAD setting code where it was still missing. PR: 966
2004-10-21Update ECDSA and ECDH for OPENSSL_NO_ENGINE.Geoff Thorpe
Reported by: Maxim Masiutin Submitted by: Nils Larsch
2004-09-10make updateRichard Levitte
2004-09-07Reformat smime utility.Dr. Stephen Henson
Add support for policy checking in verify utility.
2004-09-07Don't use 'explicit' for variable name.Dr. Stephen Henson
2004-09-07Reformat smime.cDr. Stephen Henson
2004-09-06New X509_VERIFY_PARAM structure and associated functionality.Dr. Stephen Henson
This tidies up verify parameters and adds support for integrated policy checking. Add support for policy related command line options. Currently only in smime application. WARNING: experimental code subject to change.
2004-08-12On systems that use case-insensitive symbol names (i.e. they're allRichard Levitte
converted to upper case or something like that), the application- level bio_dump_cb() has a name clash with the new library function BIO_dump_cb(). The easiest fix is to rename the function at the application level.
2004-08-06Call setup_engine after autoconfig.Dr. Stephen Henson
2004-08-05Don't ignore return value of EVP_DigestInit_ex() in md BIOs and dgst utility.Dr. Stephen Henson
2004-07-25'apps/openssl dgst -help' update and minor apps/speed.c update.Andy Polyakov
2004-07-01Don't try to parse non string types.Dr. Stephen Henson
2004-06-28Changes for VOS, submitted by Paul Green <Paul.Green@stratus.com>.Richard Levitte
PR: 499
2004-06-28Make the tests of EVP operations without padding. As a consequence,Richard Levitte
there's no need for a larger BUFSIZE any more... PR: 904
2004-06-28Make sure that the buffers are large enough to contain padding.Richard Levitte
PR: 904
2004-06-28NetWare fixes provided by Verdon Walker for OpenSSL 0.9.8-dev.Richard Levitte
The changes have been mailed to <crypt@bis.doc.gov> as well. PR: 903
2004-06-24Reformat pkcs8 source.Dr. Stephen Henson
2004-05-31Working on HP-UX shared support...Andy Polyakov
2004-05-31Make sha-256/-512 naming in speed.c consistent with their names as theyAndy Polyakov
will appear at EVP leyer.
2004-05-20SHA-256/-512 test and benchmark.Andy Polyakov
2004-05-17After the latest round of header-hacking, regenerate the dependencies inGeoff Thorpe
the Makefiles. NB: this commit is probably going to generate a huge posting and it is highly uninteresting to read.
2004-05-17Remove some unnecessary recursive includes from the internal apps.h header,Geoff Thorpe
and include bn.h in those C files that need bignum functionality.
2004-05-13make updateRichard Levitte
2004-05-12Make self signing option of 'x509' use random serial numbers too.Dr. Stephen Henson
2004-04-26Allow RSA key-generation to specify an arbitrary public exponent. JelteGeoff Thorpe
proposed the change and submitted the patch, I jiggled it slightly and adjusted the other parts of openssl that were affected. PR: 867 Submitted by: Jelte Jansen Reviewed by: Geoff Thorpe