aboutsummaryrefslogtreecommitdiffstats
path: root/doc/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-09-06 11:49:43 +0000
committerBodo Möller <bodo@openssl.org>2000-09-06 11:49:43 +0000
commit2b40660ec1ee69ff4121937d12a50937d9fb0bfb (patch)
tree4027b5f6b290c3921d22ed990e036c79cc403c57 /doc/apps
parentf5882ce75840b815eb61e9908b53e99e76966912 (diff)
downloadopenssl-2b40660ec1ee69ff4121937d12a50937d9fb0bfb.tar.gz
Add OAEP. Seed the PRNG.
Diffstat (limited to 'doc/apps')
-rw-r--r--doc/apps/rsautl.pod10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/apps/rsautl.pod b/doc/apps/rsautl.pod
index 6a2466a386..7a334bc8d6 100644
--- a/doc/apps/rsautl.pod
+++ b/doc/apps/rsautl.pod
@@ -70,10 +70,12 @@ encrypt the input data using an RSA public key.
decrypt the input data using an RSA private key.
-=item B<-pkcs, -ssl, -raw>
+=item B<-pkcs, -oaep, -ssl, -raw>
-the padding to use, PKCS#1 v1.5 (the default) SSL v2 or no padding
-respectively.
+the padding to use: PKCS#1 v1.5 (the default), PKCS#1 OAEP,
+special padding used in SSL v2 backwards compatible handshakes,
+or no padding, respectively.
+For signatures, only B<-pkcs> and B<-raw> can be used.
=item B<-hexdump>
@@ -93,7 +95,7 @@ used to sign or verify small pieces of data.
=head1 EXAMPLES
-Sign the some data using a private key:
+Sign some data using a private key:
openssl rsautl -sign -in file -inkey key.pem -out sig