summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/doc/apps
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>2001-08-01 19:51:16 +0000
committerbeck <beck@openbsd.org>2001-08-01 19:51:16 +0000
commit200c029058c06b55c32b17d710757f7a3cca1ab1 (patch)
tree3c061a100d7c302e1a7124b24e4d7cbe0e3c4bb3 /lib/libssl/src/doc/apps
parenthttp://www.openssl.org/news/secadv_prng.txt; ok beck@ (diff)
downloadwireguard-openbsd-200c029058c06b55c32b17d710757f7a3cca1ab1.tar.xz
wireguard-openbsd-200c029058c06b55c32b17d710757f7a3cca1ab1.zip
merge openssl 0.9.6b-engine
Note that this is a maintenence release, API's appear *not* to have changed. As such, I have only increased the minor number on these libraries
Diffstat (limited to 'lib/libssl/src/doc/apps')
-rw-r--r--lib/libssl/src/doc/apps/enc.pod10
-rw-r--r--lib/libssl/src/doc/apps/rsautl.pod4
-rw-r--r--lib/libssl/src/doc/apps/s_server.pod2
3 files changed, 11 insertions, 5 deletions
diff --git a/lib/libssl/src/doc/apps/enc.pod b/lib/libssl/src/doc/apps/enc.pod
index e436ccc37e6..a68ddca1394 100644
--- a/lib/libssl/src/doc/apps/enc.pod
+++ b/lib/libssl/src/doc/apps/enc.pod
@@ -96,12 +96,18 @@ of hex digits.
=item B<-K key>
the actual key to use: this must be represented as a string comprised only
-of hex digits.
+of hex digits. If only the key is specified, the IV must additionally specified
+using the B<-iv> option. When both a key and a password are specified, the
+key given with the B<-K> option will be used and the IV generated from the
+password will be taken. It probably does not make much sense to specify
+both key and password.
=item B<-iv IV>
the actual IV to use: this must be represented as a string comprised only
-of hex digits.
+of hex digits. When only the key is specified using the B<-K> option, the
+IV must explicitly be defined. When a password is being specified using
+one of the other options, the IV is generated from this password.
=item B<-p>
diff --git a/lib/libssl/src/doc/apps/rsautl.pod b/lib/libssl/src/doc/apps/rsautl.pod
index 7a334bc8d6a..a7c1681d985 100644
--- a/lib/libssl/src/doc/apps/rsautl.pod
+++ b/lib/libssl/src/doc/apps/rsautl.pod
@@ -101,11 +101,11 @@ Sign some data using a private key:
Recover the signed data
- openssl rsautl -sign -in sig -inkey key.pem
+ openssl rsautl -verify -in sig -inkey key.pem
Examine the raw signed data:
- openssl rsautl -sign -in file -inkey key.pem -raw -hexdump
+ openssl rsautl -verify -in file -inkey key.pem -raw -hexdump
0000 - 00 01 ff ff ff ff ff ff-ff ff ff ff ff ff ff ff ................
0010 - ff ff ff ff ff ff ff ff-ff ff ff ff ff ff ff ff ................
diff --git a/lib/libssl/src/doc/apps/s_server.pod b/lib/libssl/src/doc/apps/s_server.pod
index 419383b55db..313116ab666 100644
--- a/lib/libssl/src/doc/apps/s_server.pod
+++ b/lib/libssl/src/doc/apps/s_server.pod
@@ -7,7 +7,7 @@ s_server - SSL/TLS server program
=head1 SYNOPSIS
-B<openssl> B<s_client>
+B<openssl> B<s_server>
[B<-accept port>]
[B<-context id>]
[B<-verify depth>]