aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-05-26 20:04:55 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-05-26 20:04:55 -0400
commite44a56e5add6e11b0c129ce604e1d8ccffeacd66 (patch)
tree47ebf47960c279837b3188c53681aeb81e41fc7d
parentb1d59e76d3f6ebb5fdb08537593024e864331725 (diff)
downloadcryptography-e44a56e5add6e11b0c129ce604e1d8ccffeacd66.tar.gz
cryptography-e44a56e5add6e11b0c129ce604e1d8ccffeacd66.tar.bz2
cryptography-e44a56e5add6e11b0c129ce604e1d8ccffeacd66.zip
Added these to the macros area as well
-rw-r--r--src/cryptography/hazmat/bindings/openssl/x509.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/x509.py b/src/cryptography/hazmat/bindings/openssl/x509.py
index 55b57206..d9aea629 100644
--- a/src/cryptography/hazmat/bindings/openssl/x509.py
+++ b/src/cryptography/hazmat/bindings/openssl/x509.py
@@ -334,8 +334,13 @@ int (*i2d_EC_PUBKEY)(EC_KEY *, unsigned char **) = NULL;
EC_KEY *(*d2i_EC_PUBKEY)(EC_KEY **, const unsigned char **, long) = NULL;
EC_KEY *(*d2i_EC_PUBKEY_bio)(BIO *, EC_KEY **) = NULL;
int (*i2d_EC_PUBKEY_bio)(BIO *, EC_KEY *) = NULL;
+EC_KEY *(*d2i_ECPrivateKey)(EC_KEY **, const unsigned char **, long) = NULL;
EC_KEY *(*d2i_ECPrivateKey_bio)(BIO *, EC_KEY **) = NULL;
+int (*i2d_ECPrivateKey)(EC_KEY *, unsigned char **) = NULL;
int (*i2d_ECPrivateKey_bio)(BIO *, EC_KEY *) = NULL;
+
+EC_KEY *(*o2i_ECPrivateKey)(EC_KEY **, const unsigned char **, long) = NULL;
+int (*i2o_ECPrivateKey)(EC_KEY *, unsigned char **) = NULL;
#endif
"""