From 77acc3638722fb55744478c00efba07abd6d5a0b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 13 Aug 2014 14:46:15 -0700 Subject: Fixes #145 -- fixes loading pkcs7 data from ASN1 --- OpenSSL/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py index 54569ea..313a30a 100644 --- a/OpenSSL/crypto.py +++ b/OpenSSL/crypto.py @@ -2351,7 +2351,7 @@ def load_pkcs7_data(type, buffer): if type == FILETYPE_PEM: pkcs7 = _lib.PEM_read_bio_PKCS7(bio, _ffi.NULL, _ffi.NULL, _ffi.NULL) elif type == FILETYPE_ASN1: - pass + pkcs7 = _lib.d2i_PKCS7_bio(bio, _ffi.NULL) else: # TODO: This is untested. _raise_current_error() -- cgit v1.2.1