diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-07 09:04:35 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-07 09:04:35 -0600 |
commit | 5762b47bb21559a3d5bf2c1c9fd27a007ad895d5 (patch) | |
tree | 1f7668afe57ec0f8fbe099eee0f7866f54247d2d | |
parent | ffdecbfe9a72060e5335d10c946d00d852d4ced0 (diff) | |
download | cryptography-5762b47bb21559a3d5bf2c1c9fd27a007ad895d5.tar.gz cryptography-5762b47bb21559a3d5bf2c1c9fd27a007ad895d5.tar.bz2 cryptography-5762b47bb21559a3d5bf2c1c9fd27a007ad895d5.zip |
remove RSA PSS constant (for now), de-opaque RSA *
-rw-r--r-- | cryptography/hazmat/bindings/openssl/rsa.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/rsa.py b/cryptography/hazmat/bindings/openssl/rsa.py index 92770738..8ee4b0cf 100644 --- a/cryptography/hazmat/bindings/openssl/rsa.py +++ b/cryptography/hazmat/bindings/openssl/rsa.py @@ -16,14 +16,23 @@ 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; -static const int RSA_PKCS1_PSS_PADDING; """ FUNCTIONS = """ |