Commit 719b289d authored by Paul Yang's avatar Paul Yang Committed by Matt Caswell
Browse files

Fix typo in doc/man3/EVP_EncrypInit.pod



In the example section.

CLA: trivial

Signed-off-by: default avatarPaul Yang <paulyang.inf@gmail.com>

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3520)
parent 67a8c105
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();