diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-19 19:13:30 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-19 19:13:30 -0600 |
commit | 48204a06ee2435b6a9a3b667864513252656dad2 (patch) | |
tree | c6cfa9119a72dac8bb03914d47b6b8cb3950e980 | |
parent | a1caeff390f0500c90e7b7ff1a9050778c714c67 (diff) | |
download | cryptography-48204a06ee2435b6a9a3b667864513252656dad2.tar.gz cryptography-48204a06ee2435b6a9a3b667864513252656dad2.tar.bz2 cryptography-48204a06ee2435b6a9a3b667864513252656dad2.zip |
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 *); |