diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-03-16 20:49:02 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-03-16 20:49:02 -0400 |
commit | 4b1aa9cc54eb5c3d47ac804a64308864d5e886aa (patch) | |
tree | 1970d8eec01edc1067c4e2175c882c124a8857ba /src | |
parent | 1c6e624631cb339b9e5e437083bca971530bba9f (diff) | |
download | cryptography-4b1aa9cc54eb5c3d47ac804a64308864d5e886aa.tar.gz cryptography-4b1aa9cc54eb5c3d47ac804a64308864d5e886aa.tar.bz2 cryptography-4b1aa9cc54eb5c3d47ac804a64308864d5e886aa.zip |
remove more DSA bindings we don't use
1.1.0pre4 opaqued DSA_SIG, but it turns out we don't use it
Diffstat (limited to 'src')
-rw-r--r-- | src/_cffi_src/openssl/dsa.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/_cffi_src/openssl/dsa.py b/src/_cffi_src/openssl/dsa.py index 89511e44..69935c1d 100644 --- a/src/_cffi_src/openssl/dsa.py +++ b/src/_cffi_src/openssl/dsa.py @@ -22,10 +22,6 @@ typedef struct dsa_st { BIGNUM *pub_key; ...; } DSA; -typedef struct { - BIGNUM *r; - BIGNUM *s; -} DSA_SIG; """ FUNCTIONS = """ @@ -34,10 +30,6 @@ DSA *DSA_generate_parameters(int, unsigned char *, int, int *, unsigned long *, int DSA_generate_key(DSA *); DSA *DSA_new(void); void DSA_free(DSA *); -DSA_SIG *DSA_SIG_new(void); -void DSA_SIG_free(DSA_SIG *); -int i2d_DSA_SIG(const DSA_SIG *, unsigned char **); -DSA_SIG *d2i_DSA_SIG(DSA_SIG **, const unsigned char **, long); int DSA_size(const DSA *); int DSA_sign(int, const unsigned char *, int, unsigned char *, unsigned int *, DSA *); |