diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-04-05 22:24:32 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-04-05 22:24:32 +0100 |
commit | c2a2ee0365cd4f7b96f8794fef4f405107721816 (patch) | |
tree | 1129eadbd3711842889bf4a535444a16e698044a | |
parent | e45a4b510174df78462183824fc2eff0408bf6e2 (diff) | |
download | cryptography-c2a2ee0365cd4f7b96f8794fef4f405107721816.tar.gz cryptography-c2a2ee0365cd4f7b96f8794fef4f405107721816.tar.bz2 cryptography-c2a2ee0365cd4f7b96f8794fef4f405107721816.zip |
BN_cmp macro
-rw-r--r-- | cryptography/hazmat/bindings/openssl/bignum.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/bignum.py b/cryptography/hazmat/bindings/openssl/bignum.py index 48350a38..d505b177 100644 --- a/cryptography/hazmat/bindings/openssl/bignum.py +++ b/cryptography/hazmat/bindings/openssl/bignum.py @@ -92,6 +92,7 @@ MACROS = """ int BN_zero(BIGNUM *); int BN_one(BIGNUM *); int BN_mod(BIGNUM *, const BIGNUM *, const BIGNUM *, BN_CTX *); +BIGNUM *BN_cmp(const BIGNUM *, const BIGNUM *); """ CUSTOMIZATIONS = """ |