diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-10 12:36:14 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-10 12:36:14 -0600 |
commit | 44957cde537a85ad8dba524cb352f784b07fc307 (patch) | |
tree | 7e80974ab465889e0725e3a99baabe7d7086f8e7 /tests/hazmat/backends | |
parent | 82128826bb0a92779a9029645525a7dc280671be (diff) | |
download | cryptography-44957cde537a85ad8dba524cb352f784b07fc307.tar.gz cryptography-44957cde537a85ad8dba524cb352f784b07fc307.tar.bz2 cryptography-44957cde537a85ad8dba524cb352f784b07fc307.zip |
oops, bytes plz
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index a212df4a..c70446b0 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -103,5 +103,5 @@ class TestOpenSSL(object): backend._lib.SSL_CTX_free(ctx) def test_evp_ciphers_registered(self): - cipher = backend._lib.EVP_get_cipherbyname("aes-256-cbc") + cipher = backend._lib.EVP_get_cipherbyname(b"aes-256-cbc") assert cipher != backend._ffi.NULL |