aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorashfall <ashwini.oruganti@gmail.com>2014-05-01 10:04:04 -0700
committerashfall <ashwini.oruganti@gmail.com>2014-05-01 10:04:04 -0700
commit0450a14ae5028cc2bf1a57d5924090bda5e91a1d (patch)
tree412f48d52f2bcec16ff1aa2f736571cdf1bb17a4
parent2d6ea66a5ef078ec000dee05ba855ee5e22fbd6c (diff)
downloadcryptography-0450a14ae5028cc2bf1a57d5924090bda5e91a1d.tar.gz
cryptography-0450a14ae5028cc2bf1a57d5924090bda5e91a1d.tar.bz2
cryptography-0450a14ae5028cc2bf1a57d5924090bda5e91a1d.zip
Fix another function signature
-rw-r--r--cryptography/hazmat/bindings/openssl/dh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/dh.py b/cryptography/hazmat/bindings/openssl/dh.py
index ea965f1f..a0f99479 100644
--- a/cryptography/hazmat/bindings/openssl/dh.py
+++ b/cryptography/hazmat/bindings/openssl/dh.py
@@ -41,7 +41,7 @@ int DH_generate_key(DH *);
int DH_compute_key(unsigned char *, const BIGNUM *, DH *);
int DH_set_ex_data(DH *, int, void *);
void *DH_get_ex_data(DH *, int);
-DH *d2iDHparams(DH **, unsigned char **, long);
+DH *d2i_DHparams(DH **, const unsigned char **, long);
int i2d_DHparams(const DH *, unsigned char **);
int DHparams_print_fp(FILE *, const DH *);
int DHparams_print(BIO *, const DH *);