diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-06 23:13:40 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-06 23:14:39 -0600 |
commit | ffdecbfe9a72060e5335d10c946d00d852d4ced0 (patch) | |
tree | e8f38a0b57844b858cb4c504be009d0956a91608 | |
parent | 9c74b18ff63b798ad33885a7598c765e4138ead1 (diff) | |
download | cryptography-ffdecbfe9a72060e5335d10c946d00d852d4ced0.tar.gz cryptography-ffdecbfe9a72060e5335d10c946d00d852d4ced0.tar.bz2 cryptography-ffdecbfe9a72060e5335d10c946d00d852d4ced0.zip |
expand rsa bindings
-rw-r--r-- | cryptography/hazmat/bindings/openssl/rsa.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/rsa.py b/cryptography/hazmat/bindings/openssl/rsa.py index 21ed5d67..92770738 100644 --- a/cryptography/hazmat/bindings/openssl/rsa.py +++ b/cryptography/hazmat/bindings/openssl/rsa.py @@ -18,13 +18,28 @@ INCLUDES = """ TYPES = """ typedef ... RSA; typedef ... BN_GENCB; +static const int RSA_PKCS1_PADDING; +static const int RSA_SSLV23_PADDING; +static const int RSA_NO_PADDING; +static const int RSA_PKCS1_OAEP_PADDING; +static const int RSA_X931_PADDING; +static const int RSA_PKCS1_PSS_PADDING; """ FUNCTIONS = """ RSA *RSA_new(); void RSA_free(RSA *); +int RSA_size(const RSA *); int RSA_generate_key_ex(RSA *, int, BIGNUM *, BN_GENCB *); int RSA_check_key(const RSA *); +int RSA_public_encrypt(int, const unsigned char *, unsigned char *, + RSA *, int); +int RSA_private_encrypt(int, const unsigned char *, unsigned char *, + RSA *, int); +int RSA_public_decrypt(int, const unsigned char *, unsigned char *, + RSA *, int); +int RSA_private_decrypt(int, const unsigned char *, unsigned char *, + RSA *, int); """ MACROS = """ |