diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-07 20:44:38 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-01-07 20:44:38 -0800 |
commit | a49042e3b47a20ae15432388f5e3fa7e56b282ce (patch) | |
tree | c4f527af767bdaf735277ff5168de2b3d8b0751d | |
parent | 952df2ffa4723b390b47205ea932b413a65405fd (diff) | |
download | cryptography-a49042e3b47a20ae15432388f5e3fa7e56b282ce.tar.gz cryptography-a49042e3b47a20ae15432388f5e3fa7e56b282ce.tar.bz2 cryptography-a49042e3b47a20ae15432388f5e3fa7e56b282ce.zip |
rename _create_mem_bio to _create_mem_bio_gc for consistency
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/backend.py | 8 | ||||
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/x509.py | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/backend.py b/src/cryptography/hazmat/backends/openssl/backend.py index e8b0322e..cf9b98e8 100644 --- a/src/cryptography/hazmat/backends/openssl/backend.py +++ b/src/cryptography/hazmat/backends/openssl/backend.py @@ -1045,7 +1045,7 @@ class Backend(object): return _MemoryBIO(self._ffi.gc(bio, self._lib.BIO_free), data_char_p) - def _create_mem_bio(self): + def _create_mem_bio_gc(self): """ Creates an empty memory BIO. """ @@ -2168,7 +2168,7 @@ class Backend(object): else: raise TypeError("encoding must be an item from the Encoding enum") - bio = self._create_mem_bio() + bio = self._create_mem_bio_gc() res = write_bio( bio, key, @@ -2191,7 +2191,7 @@ class Backend(object): self.openssl_assert(key_type == self._lib.EVP_PKEY_DSA) write_bio = self._lib.i2d_DSAPrivateKey_bio - bio = self._create_mem_bio() + bio = self._create_mem_bio_gc() res = write_bio(bio, cdata) self.openssl_assert(res == 1) return self._read_mem_bio(bio) @@ -2223,7 +2223,7 @@ class Backend(object): "format must be an item from the PublicFormat enum" ) - bio = self._create_mem_bio() + bio = self._create_mem_bio_gc() res = write_bio(bio, key) self.openssl_assert(res == 1) return self._read_mem_bio(bio) diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index b8614e0b..76920867 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -353,7 +353,7 @@ class _Certificate(object): return self._backend._ffi.buffer(pp[0], res)[:] def public_bytes(self, encoding): - bio = self._backend._create_mem_bio() + bio = self._backend._create_mem_bio_gc() if encoding is serialization.Encoding.PEM: res = self._backend._lib.PEM_write_bio_X509(bio, self._x509) elif encoding is serialization.Encoding.DER: @@ -827,7 +827,7 @@ class _CertificateRevocationList(object): def fingerprint(self, algorithm): h = hashes.Hash(algorithm, self._backend) - bio = self._backend._create_mem_bio() + bio = self._backend._create_mem_bio_gc() res = self._backend._lib.i2d_X509_CRL_bio( bio, self._x509_crl ) @@ -880,7 +880,7 @@ class _CertificateRevocationList(object): return self._backend._ffi.buffer(pp[0], res)[:] def public_bytes(self, encoding): - bio = self._backend._create_mem_bio() + bio = self._backend._create_mem_bio_gc() if encoding is serialization.Encoding.PEM: res = self._backend._lib.PEM_write_bio_X509_CRL( bio, self._x509_crl @@ -975,7 +975,7 @@ class _CertificateSigningRequest(object): return _CSR_EXTENSION_PARSER.parse(self._backend, x509_exts) def public_bytes(self, encoding): - bio = self._backend._create_mem_bio() + bio = self._backend._create_mem_bio_gc() if encoding is serialization.Encoding.PEM: res = self._backend._lib.PEM_write_bio_X509_REQ( bio, self._x509_req |