summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2014-07-17 11:25:02 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-07-17 12:08:52 +0100
commit9aeb41041933dcf0eff305d1f01eeccfa93608f0 (patch)
tree078307680b6dd3a41c5f4e508303ac00369c33a4 /doc
parentbf4519cde539703889df952c4f68ef1f015157a4 (diff)
downloadopenssl-new-9aeb41041933dcf0eff305d1f01eeccfa93608f0.tar.gz
Fix typo, add reference.
PR#3456 Reviewed-by: Stephen Henson <steve@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (cherry picked from commit d48e78f0cf22aaddb563f4bcfccf25b1a45ac8a4)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/pem.pod8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/crypto/pem.pod b/doc/crypto/pem.pod
index 54414a3f6f..21e9fe3b98 100644
--- a/doc/crypto/pem.pod
+++ b/doc/crypto/pem.pod
@@ -450,9 +450,9 @@ byte B<salt> encoded as a set of hexadecimal digits.
After this is the base64 encoded encrypted data.
-The encryption key is determined using EVP_bytestokey(), using B<salt> and an
+The encryption key is determined using EVP_BytesToKey(), using B<salt> and an
iteration count of 1. The IV used is the value of B<salt> and *not* the IV
-returned by EVP_bytestokey().
+returned by EVP_BytesToKey().
=head1 BUGS
@@ -474,3 +474,7 @@ The read routines return either a pointer to the structure read or NULL
if an error occurred.
The write routines return 1 for success or 0 for failure.
+
+=head1 SEE ALSO
+
+L<EVP_get_cipherbyname(3)|EVP_get_cipherbyname>, L<EVP_BytesToKey(3)|EVP_BytesToKey(3)>