diff options
author | Christian Heimes <christian@python.org> | 2015-11-19 15:14:47 +0100 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2015-12-20 00:51:33 +0100 |
commit | c8b893f453f7ac47ff6d64ca1467099b0d1d252c (patch) | |
tree | d3ba2eecf77f393f05ae8e4b416c5150bb28bd8e /tests | |
parent | e3f46c6d228161957e0549bfa838ba8791c1bb36 (diff) | |
download | cryptography-c8b893f453f7ac47ff6d64ca1467099b0d1d252c.tar.gz cryptography-c8b893f453f7ac47ff6d64ca1467099b0d1d252c.tar.bz2 cryptography-c8b893f453f7ac47ff6d64ca1467099b0d1d252c.zip |
Change password callback to use userdata pointer
Instead of a closure the pem_password_cb now uses the void *userdata
argument to exchange data with the callback function. It's a necessary
step to port all callbacks to new static callbacks.
See: #2477
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 85331595..d048fe68 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -503,8 +503,21 @@ class TestOpenSSLSignX509Certificate(object): class TestOpenSSLSerialisationWithOpenSSL(object): def test_pem_password_cb_buffer_too_small(self): - ffi_cb, cb = backend._pem_password_cb(b"aa") - assert cb(None, 1, False, None) == 0 + ffi_cb, userdata = backend._pem_password_cb(b"aa") + handle = backend._ffi.new_handle(userdata) + buf = backend._ffi.new('char *') + assert ffi_cb(buf, 1, False, handle) == 0 + assert userdata.called == 1 + assert isinstance(userdata.exception, ValueError) + + def test_pem_password_cb(self): + password = b'abcdefg' + ffi_cb, userdata = backend._pem_password_cb(password) + handle = backend._ffi.new_handle(userdata) + buf = backend._ffi.new('char *') + assert ffi_cb(buf, len(password) + 1, False, handle) == len(password) + assert userdata.called == 1 + assert backend._ffi.string(buf, len(password)) == password def test_unsupported_evp_pkey_type(self): key = pretend.stub(type="unsupported") |