diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-19 10:05:34 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-19 10:05:34 -0700 |
commit | 2ed93e28aed5737f7cb54807e60d9a0e7d85b4f3 (patch) | |
tree | c445b1dd2c081900756bdf38e2446e733d6eb912 | |
parent | 1805e7219ec4150427847e2c44956d97b861aab1 (diff) | |
parent | 444abf551334c77f31d28a4cc8d70b9818786451 (diff) | |
download | cryptography-2ed93e28aed5737f7cb54807e60d9a0e7d85b4f3.tar.gz cryptography-2ed93e28aed5737f7cb54807e60d9a0e7d85b4f3.tar.bz2 cryptography-2ed93e28aed5737f7cb54807e60d9a0e7d85b4f3.zip |
Merge pull request #830 from jgiannuzzi/master
Add ASN1_TIME_free
-rw-r--r-- | cryptography/hazmat/bindings/openssl/asn1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/asn1.py b/cryptography/hazmat/bindings/openssl/asn1.py index 144a893e..dfdf1bf5 100644 --- a/cryptography/hazmat/bindings/openssl/asn1.py +++ b/cryptography/hazmat/bindings/openssl/asn1.py @@ -99,6 +99,7 @@ int i2a_ASN1_INTEGER(BIO *, ASN1_INTEGER *); /* ASN1 TIME */ ASN1_TIME *ASN1_TIME_new(void); +void ASN1_TIME_free(ASN1_TIME *); ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *, ASN1_GENERALIZEDTIME **); |