diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-02 14:59:10 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-02 14:59:10 -0700 |
commit | 069f0024a7de3399333dac2d6b5e4cdab28e81b6 (patch) | |
tree | fe348bc06ccc15d94e984f0f99ec7fe6166834fc | |
parent | eec5c3c77f53b3d5542a6984e5321d0860b8317a (diff) | |
download | cryptography-069f0024a7de3399333dac2d6b5e4cdab28e81b6.tar.gz cryptography-069f0024a7de3399333dac2d6b5e4cdab28e81b6.tar.bz2 cryptography-069f0024a7de3399333dac2d6b5e4cdab28e81b6.zip |
Remove this, it properly belongs to ASN1, and that's for a seperate PR
-rw-r--r-- | cryptography/bindings/openssl/bignum.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cryptography/bindings/openssl/bignum.py b/cryptography/bindings/openssl/bignum.py index 40397a54..72d467c3 100644 --- a/cryptography/bindings/openssl/bignum.py +++ b/cryptography/bindings/openssl/bignum.py @@ -18,9 +18,6 @@ INCLUDES = """ TYPES = """ typedef ... BIGNUM; typedef ... BN_ULONG; - -// Possibly belongs in an asn1.py -typedef ... ASN1_INTEGER; """ FUNCTIONS = """ @@ -34,5 +31,4 @@ int BN_hex2bn(BIGNUM **, const char *); """ MACROS = """ -ASN1_INTEGER *BN_to_ASN1_INTEGER(BIGNUM *, ASN1_INTEGER *); """ |