diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-19 19:09:46 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-19 19:09:46 -0800 |
commit | cf20f41ae4b27ea1c89ebac0d38fc179cc8bca60 (patch) | |
tree | 3e74aa56ca75ff3667eab0f86c19c59903a1789f | |
parent | 5fa42e6d4f645070262107b25bae28055f055856 (diff) | |
parent | 48204a06ee2435b6a9a3b667864513252656dad2 (diff) | |
download | cryptography-cf20f41ae4b27ea1c89ebac0d38fc179cc8bca60.tar.gz cryptography-cf20f41ae4b27ea1c89ebac0d38fc179cc8bca60.tar.bz2 cryptography-cf20f41ae4b27ea1c89ebac0d38fc179cc8bca60.zip |
Merge pull request #646 from reaperhulk/evp-pkey-size
add EVP_PKEY_size binding to OpenSSL backend
-rw-r--r-- | cryptography/hazmat/bindings/openssl/evp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/evp.py b/cryptography/hazmat/bindings/openssl/evp.py index 02776490..e882bb33 100644 --- a/cryptography/hazmat/bindings/openssl/evp.py +++ b/cryptography/hazmat/bindings/openssl/evp.py @@ -86,6 +86,7 @@ EVP_PKEY *EVP_PKEY_new(void); void EVP_PKEY_free(EVP_PKEY *); int EVP_PKEY_type(int); int EVP_PKEY_bits(EVP_PKEY *); +int EVP_PKEY_size(EVP_PKEY *); RSA *EVP_PKEY_get1_RSA(EVP_PKEY *); int EVP_SignInit(EVP_MD_CTX *, const EVP_MD *); |