summaryrefslogtreecommitdiffstats
path: root/doc/crypto
diff options
context:
space:
mode:
authorAlok Menghrajani <alok@squareup.com>2014-11-11 14:39:11 -0800
committerMatt Caswell <matt@openssl.org>2014-11-12 21:05:01 +0000
commit2ad842b86a0b544f1dec6c75d3600d28bb627147 (patch)
tree357e5a8d67989e7847bf942f8299b20bb3d0a001 /doc/crypto
parent297a8fd4aca359ad555a795023ec9a4dc00db23f (diff)
Fixes a minor typo in the EVP docs.
Out is the buffer which needs to contain at least inl + cipher_block_size - 1 bytes. Outl is just an int*. Reviewed-by: Emilia Käsper <emilia@openssl.org> (cherry picked from commit 5211e094dec9486a540ac480f345df1a8d2b2862)
Diffstat (limited to 'doc/crypto')
-rw-r--r--doc/crypto/EVP_EncryptInit.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod
index 526447c0a6..fb6036f959 100644
--- a/doc/crypto/EVP_EncryptInit.pod
+++ b/doc/crypto/EVP_EncryptInit.pod
@@ -125,7 +125,7 @@ writes the encrypted version to B<out>. This function can be called
multiple times to encrypt successive blocks of data. The amount
of data written depends on the block alignment of the encrypted data:
as a result the amount of data written may be anything from zero bytes
-to (inl + cipher_block_size - 1) so B<outl> should contain sufficient
+to (inl + cipher_block_size - 1) so B<out> should contain sufficient
room. The actual number of bytes written is placed in B<outl>.
If padding is enabled (the default) then EVP_EncryptFinal_ex() encrypts