diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-20 08:12:35 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-20 08:12:35 -0500 |
commit | d82c14148a8eaf8b79e5e428f8ae422d7bf081c4 (patch) | |
tree | 6a4705d8962921d23535cdaffa24bb02e2411547 /cryptography | |
parent | 75db7f4902ffd756f06c14e4328ebeda6a527800 (diff) | |
parent | 5823e85cbb74f5c5109a984fa88d18868b168a1c (diff) | |
download | cryptography-d82c14148a8eaf8b79e5e428f8ae422d7bf081c4.tar.gz cryptography-d82c14148a8eaf8b79e5e428f8ae422d7bf081c4.tar.bz2 cryptography-d82c14148a8eaf8b79e5e428f8ae422d7bf081c4.zip |
Merge pull request #938 from public/bn-inplace
Inplace mode for _int_to_bn
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/backends/openssl/backend.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py index 9ac062c2..86fa704b 100644 --- a/cryptography/hazmat/backends/openssl/backend.py +++ b/cryptography/hazmat/backends/openssl/backend.py @@ -293,7 +293,7 @@ class Backend(object): self._lib.OPENSSL_free(hex_cdata) return int(hex_str, 16) - def _int_to_bn(self, num): + def _int_to_bn(self, num, bn=None): """ Converts a python integer to a BIGNUM. The returned BIGNUM will not be garbage collected (to support adding them to structs that take @@ -301,11 +301,14 @@ class Backend(object): be discarded after use. """ + if bn is None: + bn = self._ffi.NULL + if six.PY3: # Python 3 has constant time to_bytes, so use that. binary = num.to_bytes(int(num.bit_length() / 8.0 + 1), "big") - bn_ptr = self._lib.BN_bin2bn(binary, len(binary), self._ffi.NULL) + bn_ptr = self._lib.BN_bin2bn(binary, len(binary), bn) assert bn_ptr != self._ffi.NULL return bn_ptr @@ -314,6 +317,7 @@ class Backend(object): hex_num = hex(num).rstrip("L").lstrip("0x").encode("ascii") or b"0" bn_ptr = self._ffi.new("BIGNUM **") + bn_ptr[0] = bn res = self._lib.BN_hex2bn(bn_ptr, hex_num) assert res != 0 assert bn_ptr[0] != self._ffi.NULL |