aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-09 16:33:46 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-09 16:33:46 -0800
commitaf3ce2efc5ec0ccea02f8cafa3cc04e772a385a3 (patch)
treede26b353f079670666f9538db5bf2118be1db5e6
parent29d6de51c83d066cfd177296c019727887e2caac (diff)
parent65c9171cc1b7ab617dbb95524b0f3b019f8d65fb (diff)
downloadcryptography-af3ce2efc5ec0ccea02f8cafa3cc04e772a385a3.tar.gz
cryptography-af3ce2efc5ec0ccea02f8cafa3cc04e772a385a3.tar.bz2
cryptography-af3ce2efc5ec0ccea02f8cafa3cc04e772a385a3.zip
Merge pull request #291 from reaperhulk/load-private-key-bindings
add additional bindings to load private keys
-rw-r--r--cryptography/hazmat/bindings/openssl/pem.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/pem.py b/cryptography/hazmat/bindings/openssl/pem.py
index 00f0dc36..cef7839f 100644
--- a/cryptography/hazmat/bindings/openssl/pem.py
+++ b/cryptography/hazmat/bindings/openssl/pem.py
@@ -29,6 +29,15 @@ int PEM_write_bio_PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
EVP_PKEY *PEM_read_bio_PrivateKey(BIO *, EVP_PKEY **, pem_password_cb *,
void *);
+int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
+ char *, int, pem_password_cb *, void *);
+
+int i2d_PKCS8PrivateKey_bio(BIO *, EVP_PKEY *, const EVP_CIPHER *,
+ char *, int, pem_password_cb *, void *);
+
+EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *, EVP_PKEY **, pem_password_cb *,
+ void *);
+
int PEM_write_bio_X509_REQ(BIO *, X509_REQ *);
X509_REQ *PEM_read_bio_X509_REQ(BIO *, X509_REQ **, pem_password_cb *, void *);