aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Tang <mrjefftang@gmail.com>2014-04-16 14:13:49 -0400
committerJeff Tang <mrjefftang@gmail.com>2014-04-16 14:13:49 -0400
commit380e61372737dd9f90464900cf924965be9f5f2f (patch)
tree105d44c7bea1afa99c3345d563f029bed9ac9100
parent04fb2bcbd5084154c799d1c694d1fbeed29d8041 (diff)
downloadcryptography-380e61372737dd9f90464900cf924965be9f5f2f.tar.gz
cryptography-380e61372737dd9f90464900cf924965be9f5f2f.tar.bz2
cryptography-380e61372737dd9f90464900cf924965be9f5f2f.zip
Expose EVP_PKEY_EC and EVP_PKEY_assign_EC_KEY
-rw-r--r--cryptography/hazmat/bindings/openssl/evp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/evp.py b/cryptography/hazmat/bindings/openssl/evp.py
index 88cf5c34..5ffbe43f 100644
--- a/cryptography/hazmat/bindings/openssl/evp.py
+++ b/cryptography/hazmat/bindings/openssl/evp.py
@@ -37,6 +37,7 @@ typedef struct evp_pkey_st {
typedef ... EVP_PKEY_CTX;
static const int EVP_PKEY_RSA;
static const int EVP_PKEY_DSA;
+static const int EVP_PKEY_EC;
static const int EVP_MAX_MD_SIZE;
static const int EVP_CTRL_GCM_SET_IVLEN;
static const int EVP_CTRL_GCM_GET_TAG;
@@ -122,6 +123,7 @@ MACROS = """
void OpenSSL_add_all_algorithms(void);
int EVP_PKEY_assign_RSA(EVP_PKEY *, RSA *);
int EVP_PKEY_assign_DSA(EVP_PKEY *, DSA *);
+int EVP_PKEY_assign_EC_KEY(EVP_PKEY *, EC_KEY *);
int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *);
int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *, int, int, void *);