aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-03-16 21:37:23 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2016-03-16 21:37:23 -0400
commit63d665e42689f459ea192827bdc0d18d883ac6a1 (patch)
tree078062d45d02189c783743596352dab8454fa0f7
parentf790b4289ed026cab590fd98aca4d6777f62d719 (diff)
parent4b1aa9cc54eb5c3d47ac804a64308864d5e886aa (diff)
downloadcryptography-63d665e42689f459ea192827bdc0d18d883ac6a1.tar.gz
cryptography-63d665e42689f459ea192827bdc0d18d883ac6a1.tar.bz2
cryptography-63d665e42689f459ea192827bdc0d18d883ac6a1.zip
Merge pull request #2830 from reaperhulk/110-patch-36
remove more DSA bindings we don't use
-rw-r--r--src/_cffi_src/openssl/dsa.py8
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 *);