aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-04-24 08:36:54 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-04-24 08:36:54 -0700
commit13ec5478f95cdffc7f0d224c80eb1a595a2538b0 (patch)
treec27b0ddd389b47726e399cf24de58ca0cd84dbcf
parentff2b8cebe85c5326c52a0b4ffe467f99e5526849 (diff)
parent6fb1b24a3cf1a4cdb3bd35c6f575d96cb2da9415 (diff)
downloadcryptography-13ec5478f95cdffc7f0d224c80eb1a595a2538b0.tar.gz
cryptography-13ec5478f95cdffc7f0d224c80eb1a595a2538b0.tar.bz2
cryptography-13ec5478f95cdffc7f0d224c80eb1a595a2538b0.zip
Merge pull request #961 from skeuomorf/dsa-size-binding
Add binding for DSA_size
-rw-r--r--cryptography/hazmat/bindings/openssl/dsa.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/dsa.py b/cryptography/hazmat/bindings/openssl/dsa.py
index 51a02666..a5305893 100644
--- a/cryptography/hazmat/bindings/openssl/dsa.py
+++ b/cryptography/hazmat/bindings/openssl/dsa.py
@@ -47,6 +47,7 @@ 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 *);
"""
MACROS = """