aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMahmoud Hashemi <mahmoud@hatnote.com>2015-04-08 19:03:22 -0700
committerMahmoud Hashemi <mahmoud@hatnote.com>2015-04-08 19:03:22 -0700
commit399e1948d0eb23ec95198a878a058e9cbeeb26f9 (patch)
treeb900d159d4b2f46b73e92e3fd69b3c9a72816565
parent9cc88f2dfecee36ea94b9b6d398cb1ecd7e14cbe (diff)
downloadcryptography-399e1948d0eb23ec95198a878a058e9cbeeb26f9.tar.gz
cryptography-399e1948d0eb23ec95198a878a058e9cbeeb26f9.tar.bz2
cryptography-399e1948d0eb23ec95198a878a058e9cbeeb26f9.zip
remove stray PKCS7_encrypt arg 'certs'
-rw-r--r--src/cryptography/hazmat/bindings/openssl/pkcs7.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/pkcs7.py b/src/cryptography/hazmat/bindings/openssl/pkcs7.py
index 4c400b20..0efce613 100644
--- a/src/cryptography/hazmat/bindings/openssl/pkcs7.py
+++ b/src/cryptography/hazmat/bindings/openssl/pkcs7.py
@@ -43,7 +43,7 @@ Cryptography_STACK_OF_X509 *PKCS7_get0_signers(PKCS7 *,
Cryptography_STACK_OF_X509 *,
int);
-PKCS7 *PKCS7_encrypt(Cryptography_STACK_OF_X509 *certs, BIO *,
+PKCS7 *PKCS7_encrypt(Cryptography_STACK_OF_X509 *, BIO *,
const EVP_CIPHER *, int);
int PKCS7_decrypt(PKCS7 *, EVP_PKEY *, X509 *, BIO *, int);
"""