summaryrefslogtreecommitdiffstats
path: root/apps
AgeCommit message (Collapse)Author
2001-08-05Start to reduce some of the header bloat.Ben Laurie
2001-08-03Oops, one SSL_OP_NON_EXPORT_FIRST was left.Lutz Jänicke
2001-07-31make updateRichard Levitte
2001-07-30Really add the EVP and all of the DES changes.Ben Laurie
2001-07-13Allow OCSP server to handle multiple requests.Dr. Stephen Henson
Document new OCSP options.
2001-07-12Initial OCSP server support, using index.txt format.Dr. Stephen Henson
This can process internal requests or behave like a mini responder. Todo: documentation, update usage info.
2001-07-11openssl speed is quite useful for testing hardware support (among otherGeoff Thorpe
things), especially as the RSA keys are fixed. However, DSA only fixes the DSA parameters and then generates the public and private components on the fly each time - this commit hard-codes some sampled key values so that this is no longer the case.
2001-07-10make updateRichard Levitte
2001-07-09Patches from Vern Staats <staatsvr@asc.hpc.mil> to get Kerberos 5 inRichard Levitte
SSL according to RFC 2712. His comment is: This is a patch to openssl-SNAP-20010702 to support Kerberized SSL authentication. I'm expecting to have the full kssl-0.5 kit up on sourceforge by the end of the week. The full kit includes patches for mod-ssl, apache, and a few text clients. The sourceforge URL is http://sourceforge.net/projects/kssl/ . Thanks to a note from Simon Wilkinson I've replaced my KRB5 AP_REQ message with a real KerberosWrapper struct. I think this is fully RFC 2712 compliant now, including support for the optional authenticator field. I also added openssl-style ASN.1 macros for a few Kerberos structs; see crypto/krb5/ if you're interested.
2001-07-08Don't update argc, argv for decrypt flag!Ben Laurie
2001-07-08Speed test decrypt EVP operations.Ben Laurie
2001-07-03When only the key is given to "enc", the IV is undefinedLutz Jänicke
(found by Andy Brown <logic@warthog.com>).
2001-07-02Fix warning.Ben Laurie
2001-06-28Modify apps to use NCONF code instead of old CONF code.Dr. Stephen Henson
Add new extension functions which work with NCONF. Tidy up extension config routines and remove redundant code. Fix NCONF_get_number(). Todo: more testing of apps to see they still work...
2001-06-27Make better use of load_cert, load_certs and load_key.Richard Levitte
2001-06-25Make better use of load_cert, load_certs and load_key.Richard Levitte
2001-06-25Make better use of load_cert, load_certs and load_key.Richard Levitte
2001-06-25Call apps_shutdown() to take down what apps_startup() set up.Richard Levitte
2001-06-23make updateRichard Levitte
2001-06-23Use apps_shutdown() in all applications, in case someone decides notRichard Levitte
to go the monolith way (does anyone do that these days?). NOTE: a few applications are missing in this commit. I've a few more changes in them that I haven't tested yet.
2001-06-23apps_startup() needs a corresponding apps_shutdown().Richard Levitte
2001-06-23Make use of new features in UI's. Among others, the applicationRichard Levitte
password callbak doesn't need to check for sizes any more.
2001-06-23Fix UI leak in apps.Dr. Stephen Henson
2001-06-20Modify "openssl engine" to handle and display internal controlRichard Levitte
commands appropriately.
2001-06-19Change all calls to low level digest routines in the library andDr. Stephen Henson
applications to use EVP. Add missing calls to HMAC_cleanup() and don't assume HMAC_CTX can be copied using memcpy(). Note: this is almost identical to the patch submitted to openssl-dev by Verdon Walker <VWalker@novell.com> except some redundant EVP_add_digest_()/EVP_cleanup() calls were removed and some changes made to avoid compiler warnings.
2001-06-19Fix memory leaks.Dr. Stephen Henson
2001-06-19Do a proof of concept. "openssl genrsa" will make the name of theRichard Levitte
file part of the password prompt unless it's standard input... More will be added...
2001-06-19Change the common application routines to use a UI_METHOD for passwordRichard Levitte
prompting, even when done through the callback.
2001-06-19make apps compile againDr. Stephen Henson
2001-06-18One feature wasn't quite commited yetRichard Levitte
2001-06-18Provide an application-common setup function for engines and use itRichard Levitte
everywhere.
2001-06-11Add support for MS CSP Name PKCS#12 attribute.Dr. Stephen Henson
2001-06-05'make update'Richard Levitte
2001-05-30Extend all the loading functions to take an engine pointer, a passRichard Levitte
string (some engines may have certificates protected by a PIN!) and a description to put into error messages. Also, have our own password callback that we can send both a password and some prompt info to. The default password callback in EVP assumes that the passed parameter is a password, which isn't always the right thing, and the ENGINE code (at least the nCipher one) makes other assumptions... Also, in spite of having the functions to load keys, some utilities did the loading all by themselves... That's changed too.
2001-05-22VMS doesn't support more than on period in a file nameRichard Levitte
2001-05-09Allow various X509_STORE_CTX properties to beDr. Stephen Henson
inherited from X509_STORE. Add CRL checking options to other applications.
2001-05-07Initial CRL based revocation checking.Dr. Stephen Henson
2001-04-29Win32 fixes:Dr. Stephen Henson
define LLONG properly for VC++. stop compiler complaining about signed/unsigned mismatch in apps/engine.c
2001-04-26Clean up ENGINE before exiting.Richard Levitte
2001-04-19Changes to "openssl engine" to support the new control command code inGeoff Thorpe
ENGINE. * Extra verbosity can be added with more "v"'s, eg. '-vvv' gives information about input flags and descriptions for each control command in each ENGINE. Check the output of "openssl engine -vvv" for example. * '-pre <cmd>' and '-post <cmd>' can be used to invoke control commands on the specified ENGINE (or on all of them if no engine id is specified, although that usually gets pretty ugly). '-post' commands are only attempted if '-t' is specified and the engine successfully initialises. '-pre' commands are always attempted whether or not '-t' causes an initialisation to be tried afterwards. Multiple '-pre' and/or '-post' commands can be specified and they will be called in the order they occur on the command line. Parameterised commands (the normal case, there are currently no unparameterised ones) are split into command and argument via a separating colon. Eg. "openssl engine -pre SO_PATH:/lib/libdriver.so <id>" results in the call; ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libdriver.so", 0); Application code should similarly allow arbitrary name-value string pairs to be passed into ENGINEs in a manner matching that in apps/engine.c, either using the same colon-separated format, or entered as two distinct strings. Eg. as stored in a registry. The last parameter of ENGINE_ctrl_cmd_string can be changed from 0 to 1 if the command should only be attempted if it's supported by the specified ENGINE (eg. for commands like "FORK_CHECK:1" that may or may not apply to the run-time ENGINE).
2001-04-11Correct typo.Richard Levitte
2001-04-11Add -keyform.Richard Levitte
2001-04-11Show an example of moving the emailAddress object from the subkect DNRichard Levitte
to subjectAltName when signing a certificate.
2001-04-11NetBSD and OpenBSD use TOD as wellRichard Levitte
2001-04-08Add forgotten "-passin" option to smime.c usage help.Lutz Jänicke
2001-04-04Incorporate some changes that make OpenSSL compilable in CygWin.Richard Levitte
2001-03-31avoid buffer overflowBodo Möller
2001-03-30this time *really* fix the /../ check ...Bodo Möller
2001-03-30For -WWW, fix test for ".." directory references (and avoid warning forBodo Möller
index -1).
2001-03-24make updateRichard Levitte