[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Matt Caswell
matt at openssl.org
Tue May 23 08:33:15 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via e242656cb1184a713911dd53206799bda02fe15b (commit)
from 51ab051ba62a1ceabb2724d69b2d4c954c697f89 (commit)
- Log -----------------------------------------------------------------
commit e242656cb1184a713911dd53206799bda02fe15b
Author: Paul Yang <paulyang.inf at gmail.com>
Date: Mon May 22 23:18:45 2017 +0800
Fix typo in doc/man3/EVP_EncrypInit.pod
In the example section.
CLA: trivial
Signed-off-by: Paul Yang <paulyang.inf at gmail.com>
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3520)
(cherry picked from commit 719b289d62d32fe45226e8bc5b4fb0d76f6a1b5d)
-----------------------------------------------------------------------
Summary of changes:
doc/crypto/EVP_EncryptInit.pod | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod
index 813f7dc..b0832eb 100644
--- a/doc/crypto/EVP_EncryptInit.pod
+++ b/doc/crypto/EVP_EncryptInit.pod
@@ -549,7 +549,7 @@ Encrypt a string using IDEA:
unsigned char key[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
unsigned char iv[] = {1,2,3,4,5,6,7,8};
char intext[] = "Some Crypto Text";
- EVP_CIPHER_CTX ctx;
+ EVP_CIPHER_CTX *ctx;
FILE *out;
ctx = EVP_CIPHER_CTX_new();
More information about the openssl-commits
mailing list