aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-07 09:04:35 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-07 09:04:35 -0600
commit5762b47bb21559a3d5bf2c1c9fd27a007ad895d5 (patch)
tree1f7668afe57ec0f8fbe099eee0f7866f54247d2d
parentffdecbfe9a72060e5335d10c946d00d852d4ced0 (diff)
downloadcryptography-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.py13
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 = """