aboutsummaryrefslogtreecommitdiffstats
path: root/apps/rsautl.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-4/+6
| | | | | | | | | | | | | | 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.
* 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-1/+1
| | | | | | | | | | | | 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.
* Add the possibility to use keys handled by engines in moreRichard Levitte2000-10-281-2/+26
| | | | applications.
* rsautl.c requires RSA.Bodo Möller2000-10-261-0/+4
|
* 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.
* More VMS synchronisationRichard Levitte2000-09-091-0/+1
|
* typoBodo Möller2000-09-061-1/+1
|
* Add OAEP. Seed the PRNG.Bodo Möller2000-09-061-1/+6
|
* Fix typo in rsautl.Dr. Stephen Henson2000-09-051-1/+1
| | | | | | Add support for settable verify time in X509_verify_cert(). Document rsautl utility.
* Add 'rsautl' low level RSA utility.Dr. Stephen Henson2000-09-031-0/+276
Add DER public key routines. Add -passin argument to 'ca' utility. Document sign and verify options to dgst.