aboutsummaryrefslogtreecommitdiffstats
path: root/include/openssl/pem.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-12-11 16:10:38 +0100
committerRichard Levitte <levitte@openssl.org>2015-12-11 16:18:01 +0100
commit601ab3151f4e17739465533fc159169f54f43a02 (patch)
tree75f75c0b05399a9f78300ca524287930a708c399 /include/openssl/pem.h
parentb518d2d5f8bad3fd4bb630acae2dafd5b68da9ff (diff)
downloadopenssl-601ab3151f4e17739465533fc159169f54f43a02.tar.gz
Adapt PEM routines to the opaque EVP_ENCODE_CTX
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include/openssl/pem.h')
-rw-r--r--include/openssl/pem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/pem.h b/include/openssl/pem.h
index 2746e0eb2e..fe2cf11f14 100644
--- a/include/openssl/pem.h
+++ b/include/openssl/pem.h
@@ -103,7 +103,7 @@ extern "C" {
* by PEM_SealFinal (at least for now)
*/
typedef struct PEM_Encode_Seal_st {
- EVP_ENCODE_CTX encode;
+ EVP_ENCODE_CTX *encode;
EVP_MD_CTX *md;
EVP_CIPHER_CTX cipher;
} PEM_ENCODE_SEAL_CTX;