summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/man3/EVP_EncryptInit.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/EVP_EncryptInit.pod b/doc/man3/EVP_EncryptInit.pod
index 15834349f0..f774d7c283 100644
--- a/doc/man3/EVP_EncryptInit.pod
+++ b/doc/man3/EVP_EncryptInit.pod
@@ -1637,9 +1637,9 @@ Encryption using AES-CBC with a 256-bit key with "CS1" ciphertext stealing.
goto err;
/* NOTE: CTS mode does not support multiple calls to EVP_CipherUpdate() */
- if (!EVP_CipherUpdate(ctx, encrypted, &outlen, msg, msglen))
+ if (!EVP_CipherUpdate(ctx, out, &outlen, msg, msg_len))
goto err;
- if (!EVP_CipherFinal_ex(ctx, encrypted + outlen, &len))
+ if (!EVP_CipherFinal_ex(ctx, out + outlen, &len))
goto err;
ret = 1;
err: