History log of /openssl/apps/rsautl.c (Results 51 – 68 of 68)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: OpenSSL-engine-0_9_6j, OpenSSL_0_9_7b, OpenSSL_0_9_6j, OpenSSL-engine-0_9_6i, OpenSSL_0_9_6i, OpenSSL_0_9_7a
# 0b13e9f0 30-Jan-2003 Richard Levitte

Add the possibility to build without the ENGINE framework.
PR: 287


Revision tags: OpenSSL_0_9_7, OpenSSL_0_9_7-beta6, STATE_after_zlib, STATE_before_zlib, OpenSSL_0_9_7-beta5, OpenSSL-engine-0_9_6h, OpenSSL_0_9_6h, OpenSSL_0_9_7-beta4, OpenSSL-engine-0_9_6g, OpenSSL_0_9_6g, OpenSSL-engine-0_9_6f, OpenSSL_0_9_6f
# da9b9724 01-Aug-2002 Richard Levitte

Make it possible to load keys from stdin, and restore that
functionality in the programs that had that before.
Part fo PR 164


Revision tags: OpenSSL_0_9_7-beta3, OpenSSL-engine-0_9_6e, OpenSSL_0_9_6e, OpenSSL_0_9_7-beta2, OpenSSL_0_9_7-beta1, AFTER_COMPAQ_PATCH, BEFORE_COMPAQ_PATCH, OpenSSL-engine-0_9_6d, OpenSSL_0_9_6d, OpenSSL-engine-0_9_6d-beta1, OpenSSL_0_9_6d-beta1
# 3647bee2 22-Feb-2002 Dr. Stephen Henson

Config code updates.

CONF_modules_unload() now calls CONF_modules_finish()
automatically.

Default use of section openssl_conf moved to
CONF_modules_load()

Load conf

Config code updates.

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.

show more ...


Revision tags: OpenSSL-engine-0_9_6c
# 404dcc5e 25-Jan-2002 Richard Levitte

I must learn to compile before I commit...


# 17bcb8d4 25-Jan-2002 Richard Levitte

Add -keyform. Document -engine.


Revision tags: OpenSSL_0_9_6c
# 1372965e 12-Sep-2001 Geoff Thorpe

Reduce the header dependencies on engine.h in apps/.


Revision tags: OpenSSL-engine-0_9_6b, OpenSSL_0_9_6b
# 531d630b 18-Jun-2001 Richard Levitte

Provide an application-common setup function for engines and use it
everywhere.


# 30b4c272 30-May-2001 Richard Levitte

Extend all the loading functions to take an engine pointer, a pass
string (some engines may have certificates protected by a PIN!) and
a description to put into error messages.

Also,

Extend all the loading functions to take an engine pointer, a pass
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.

show more ...


Revision tags: OpenSSL_0_9_6a, OpenSSL-engine-0_9_6a, OpenSSL-engine-0_9_6a-beta3, OpenSSL_0_9_6a-beta3, OpenSSL-engine-0_9_6a-beta2, OpenSSL_0_9_6a-beta2, OpenSSL-engine-0_9_6a-beta1, OpenSSL_0_9_6a-beta1
# bc36ee62 20-Feb-2001 Richard Levitte

Use new-style system-id macros everywhere possible. I hope I haven't
missed any.

This compiles and runs on Linux, and external applications have no
problems with it. The definite t

Use new-style system-id macros everywhere possible. I hope I haven't
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.

show more ...


# cf1b7d96 19-Feb-2001 Richard Levitte

Make all configuration macros available for application by making
sure they are available in opensslconf.h, by giving them names starting
with "OPENSSL_" to avoid conflicts with other package

Make all configuration macros available for application by making
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.

show more ...


Revision tags: rsaref
# 32d862ed 28-Oct-2000 Richard Levitte

Add the possibility to use keys handled by engines in more
applications.


Revision tags: BEFORE_engine
# 28967cf0 26-Oct-2000 Bodo Möller

rsautl.c requires RSA.


Revision tags: OpenSSL_0_9_6-beta2, OpenSSL_0_9_6-beta1, OpenSSL_0_9_6, OpenSSL-engine-0_9_6, OpenSSL-engine-0_9_6-beta3, OpenSSL_0_9_6-beta3
# 645749ef 20-Sep-2000 Richard Levitte

On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the

On VMS, stdout may very well lead to a file that is written to in a
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.

show more ...


Revision tags: OpenSSL-engine-0_9_6-beta2, OpenSSL-engine-0_9_6-beta1
# 0baed24c 09-Sep-2000 Richard Levitte

More VMS synchronisation


# 1af407e7 06-Sep-2000 Bodo Möller

typo


# 2b40660e 06-Sep-2000 Bodo Möller

Add OAEP. Seed the PRNG.


# bbb72003 05-Sep-2000 Dr. Stephen Henson

Fix typo in rsautl.

Add support for settable verify time in X509_verify_cert().

Document rsautl utility.


# bd08a2bd 03-Sep-2000 Dr. Stephen Henson

Add 'rsautl' low level RSA utility.

Add DER public key routines.

Add -passin argument to 'ca' utility.

Document sign and verify options to dgst.


123