diff options
| author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-06 18:32:31 +0200 |
|---|---|---|
| committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-06 18:32:31 +0200 |
| commit | 86bc00f13d422f7c2ede027f574cd815ffb99e8b (patch) | |
| tree | f5aa9fa7e1bd7c5c948949b672bdf2c6f026ee0b | |
| parent | 1e8aa9b09351bf0fb47bed24defc4d9f37560e31 (diff) | |
| download | cryptography-86bc00f13d422f7c2ede027f574cd815ffb99e8b.tar.gz cryptography-86bc00f13d422f7c2ede027f574cd815ffb99e8b.tar.bz2 cryptography-86bc00f13d422f7c2ede027f574cd815ffb99e8b.zip | |
Add binding for DSA_new
| -rw-r--r-- | cryptography/hazmat/bindings/openssl/dsa.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/dsa.py b/cryptography/hazmat/bindings/openssl/dsa.py index e04507ca..664296d3 100644 --- a/cryptography/hazmat/bindings/openssl/dsa.py +++ b/cryptography/hazmat/bindings/openssl/dsa.py @@ -35,6 +35,7 @@ FUNCTIONS = """ DSA *DSA_generate_parameters(int, unsigned char *, int, int *, unsigned long *, void (*)(int, int, void *), void *); int DSA_generate_key(DSA *); +DSA *DSA_new(void); void DSA_free(DSA *); """ |
