diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-07 09:28:40 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-07 09:28:40 -0800 |
commit | 44f391a81a5df4f38002cbcf611782b93193ec3b (patch) | |
tree | 1f7668afe57ec0f8fbe099eee0f7866f54247d2d | |
parent | 9c74b18ff63b798ad33885a7598c765e4138ead1 (diff) | |
parent | 5762b47bb21559a3d5bf2c1c9fd27a007ad895d5 (diff) | |
download | cryptography-44f391a81a5df4f38002cbcf611782b93193ec3b.tar.gz cryptography-44f391a81a5df4f38002cbcf611782b93193ec3b.tar.bz2 cryptography-44f391a81a5df4f38002cbcf611782b93193ec3b.zip |
Merge pull request #287 from reaperhulk/rsa-enc-dec-bindings
Expand OpenSSL RSA bindings
-rw-r--r-- | cryptography/hazmat/bindings/openssl/rsa.py | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/rsa.py b/cryptography/hazmat/bindings/openssl/rsa.py index 21ed5d67..8ee4b0cf 100644 --- a/cryptography/hazmat/bindings/openssl/rsa.py +++ b/cryptography/hazmat/bindings/openssl/rsa.py @@ -16,15 +16,39 @@ INCLUDES = """ """ TYPES = """ -typedef ... RSA; +typedef struct rsa_st { + BIGNUM *n; + BIGNUM *e; + BIGNUM *d; + BIGNUM *p; + BIGNUM *q; + BIGNUM *dmp1; + BIGNUM *dmq1; + BIGNUM *iqmp; + ...; +} 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; """ 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 = """ |