aboutsummaryrefslogtreecommitdiffstats
path: root/apps/smime.c
Commit message (Collapse)AuthorAgeFilesLines
* Use new X509_STORE_set_verify_cb function instead of old macro.Dr. Stephen Henson2009-10-181-1/+1
|
* Update from 1.0.0-stableDr. Stephen Henson2009-07-271-18/+18
|
* Update obsolete email address...Dr. Stephen Henson2008-11-051-1/+1
|
* More type-checking.Ben Laurie2008-06-041-18/+18
|
* Improve error detection when streaming S/MIME.Dr. Stephen Henson2007-05-101-3/+10
| | | | Only use streaming when appropriate for detached data in smime utility.
* Add SEED encryption algorithm.Bodo Möller2007-04-231-0/+7
| | | | | | PR: 1503 Submitted by: KISA Reviewed by: Bodo Moeller
* Update smime utility to support streaming for -encrypt and -sign -nodetachDr. Stephen Henson2007-04-131-4/+14
| | | | | | | options. Add new streaming i2d (though strictly speaking it is BER format when streaming) and PEM functions. These all process content on the fly without storing it all in memory.
* There is should be no need to rewind the input stream any more.Dr. Stephen Henson2006-07-131-5/+0
| | | | | | | | | For S/MIME multipart/signed type the signature is calculated on the fly. For other detached data forms the stream isn't used after the single pass to calculate signatures. For non-detached the data is stored in a memory BIO.
* Camellia cipher, contributed by NTTBodo Möller2006-06-091-0/+12
| | | | | Submitted by: Masashi Fujita Reviewed by: Bodo Moeller
* Allow any supported cipher to be used with smime -encrypt.Dr. Stephen Henson2006-05-251-1/+1
|
* Fix smime -pk7out.Dr. Stephen Henson2006-05-221-1/+1
|
* Add -resign and -md options to smime command to support resigning anDr. Stephen Henson2006-05-181-65/+84
| | | | existing structure and using alternative digest for signing.
* Multiple signer support in smime application.Dr. Stephen Henson2006-05-181-6/+92
|
* Reformat smime.c utility.Dr. Stephen Henson2006-05-181-124/+57
|
* Allow PKCS7_decrypt() to work if no cert supplied.Dr. Stephen Henson2005-08-041-2/+2
|
* some const fixesNils Larsch2005-04-051-1/+1
|
* Reformat smime utility.Dr. Stephen Henson2004-09-071-39/+2
| | | | Add support for policy checking in verify utility.
* Don't use 'explicit' for variable name.Dr. Stephen Henson2004-09-071-3/+3
|
* Reformat smime.cDr. Stephen Henson2004-09-071-167/+331
|
* New X509_VERIFY_PARAM structure and associated functionality.Dr. Stephen Henson2004-09-061-8/+72
| | | | | | | | | | 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.
* Various S/MIME bug and compatibility fixes.Dr. Stephen Henson2003-06-011-0/+4
|
* Fix indefinite length encoding so EOC correctly updatesDr. Stephen Henson2003-02-251-2/+2
| | | | | | | | the buffer pointer. Rename PKCS7_PARTSIGN to PKCS7_STREAM. Guess what that's for :-)
* Single pass processing to cleartext S/MIME signing.Dr. Stephen Henson2003-02-151-3/+9
|
* Add the possibility to build without the ENGINE framework.Richard Levitte2003-01-301-0/+8
| | | | PR: 287
* Make it possible to load keys from stdin, and restore thatRichard Levitte2002-08-011-1/+1
| | | | | functionality in the programs that had that before. Part fo PR 164
* Reverse the change with the following log, it needs further investigation:Richard Levitte2002-07-181-3/+3
| | | | | Make S/MIME output conform with the mail and MIME standards. PR: 151
* Make S/MIME output conform with the mail and MIME standards.Richard Levitte2002-07-181-3/+3
| | | | PR: 151
* Generate an error if rewinding wasn't possible.Richard Levitte2002-05-081-1/+4
| | | | | Notified by Ken Hirsch <kenhirsch@myself.com>. PR: 23
* Add apps_startup and bio_err init code to smime.cDr. Stephen Henson2002-05-011-0/+6
|
* harmonize capitalizationBodo Möller2002-04-091-2/+2
|
* Fix new -aes command argument handlingDr. Stephen Henson2002-02-261-3/+3
|
* Config code updates.Dr. Stephen Henson2002-02-221-0/+3
| | | | | | | | | | | | | | | | | | | CONF_modules_unload() now calls CONF_modules_finish() automatically. Default use of section openssl_conf moved to CONF_modules_load() Load config file in several openssl utilities. Most utilities now load modules from the config file, though in a few (such as version) this isn't done because it couldn't be used for anything. In the case of ca and req the config file used is the same as the utility itself: that is the -config command line option can be used to specify an alternative file.
* Add AES support in the applications that support -des and -des3.Richard Levitte2002-02-201-0/+12
|
* Reduce the header dependencies on engine.h in apps/.Geoff Thorpe2001-09-121-1/+0
|
* Provide an application-common setup function for engines and use itRichard Levitte2001-06-181-17/+1
| | | | everywhere.
* Extend all the loading functions to take an engine pointer, a passRichard Levitte2001-05-301-16/+20
| | | | | | | | | | | | | | 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.
* Allow various X509_STORE_CTX properties to beDr. Stephen Henson2001-05-091-1/+9
| | | | | | inherited from X509_STORE. Add CRL checking options to other applications.
* Correct typo.Richard Levitte2001-04-111-1/+1
|
* Add -keyform.Richard Levitte2001-04-111-5/+20
|
* Add forgotten "-passin" option to smime.c usage help.Lutz Jänicke2001-04-081-0/+1
|
* Change the EVP_somecipher() and EVP_somedigest()Dr. Stephen Henson2001-03-091-1/+1
| | | | | | | functions to return constant EVP_MD and EVP_CIPHER pointers. Update docs.
* Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte2001-02-201-1/+1
| | | | | | | missed any. This compiles and runs on Linux, and external applications have no problems with it. The definite test will be to build this on VMS.
* Make all configuration macros available for application by makingRichard Levitte2001-02-191-5/+5
| | | | | | | | | | | | sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
* Initial OCSP certificate verify. Not complete,Dr. Stephen Henson2001-01-171-32/+1
| | | | it just supports a "trusted OCSP global root CA".
* Add the possibility to use keys handled by engines in moreRichard Levitte2000-10-281-1/+1
| | | | applications.
* Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte2000-10-261-1/+28
| | | | At the same time, add VMS support for Rijndael.
* On VMS, stdout may very well lead to a file that is written to in aRichard Levitte2000-09-201-2/+10
| | | | | | | | | | | | | | | | | record-oriented fashion. That means that every write() will write a separate record, which will be read separately by the programs trying to read from it. This can be very confusing. The solution is to put a BIO filter in the way that will buffer text until a linefeed is reached, and then write everything a line at a time, so every record written will be an actual line, not chunks of lines and not (usually doesn't happen, but I've seen it once) several lines in one record. Voila, BIO_f_linebuffer() is born. Since we're so close to release time, I'm making this VMS-only for now, just to make sure no code is needlessly broken by this. After the release, this BIO method will be enabled on all other platforms as well.
* Keep a not of original encoding in certificate requests.Dr. Stephen Henson2000-09-051-0/+2
| | | | Add new option to PKCS7_sign to exclude S/MIME capabilities.
* Make req seed the PRNG if signing withDr. Stephen Henson2000-07-121-0/+3
| | | | | | an already existing DSA key. Document the new smime options.
* Fix some typose in the i2d/d2i functions thatDr. Stephen Henson2000-07-101-6/+52
| | | | | | | | | | | | | call the i2c/c2i (they were not using the content length for the headers). Fix ASN1 long form tag encoding. This never worked but it was never tested since it is only used for tags > 30. New options to smime program to allow the PKCS#7 format to be specified and the content supplied externally.