diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-28 14:59:13 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-28 14:59:13 -0500 |
commit | 349cad67978a46d170b27ee2b680e878761755d9 (patch) | |
tree | d7a055f75fb78708208cac122baf64b2e2a93fad /tests/conftest.py | |
parent | fd3572923816d3bf89b5a57671ce21ee9959f222 (diff) | |
parent | 57496d9fe3991158569400599ab08d0f45a75eae (diff) | |
download | cryptography-349cad67978a46d170b27ee2b680e878761755d9.tar.gz cryptography-349cad67978a46d170b27ee2b680e878761755d9.tar.bz2 cryptography-349cad67978a46d170b27ee2b680e878761755d9.zip |
Merge pull request #877 from public/pkcs8-loading
PKCS #8 loading
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 86d5a03b..b1326dc8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -18,7 +18,8 @@ import pytest from cryptography.hazmat.backends import _available_backends from cryptography.hazmat.backends.interfaces import ( CMACBackend, CipherBackend, DSABackend, HMACBackend, HashBackend, - PBKDF2HMACBackend, RSABackend, TraditionalOpenSSLSerializationBackend + PBKDF2HMACBackend, PKCS8SerializationBackend, RSABackend, + TraditionalOpenSSLSerializationBackend ) from .utils import check_backend_support, check_for_iface, select_backends @@ -45,6 +46,11 @@ def pytest_runtest_setup(item): TraditionalOpenSSLSerializationBackend, item ) + check_for_iface( + "pkcs8_serialization", + PKCS8SerializationBackend, + item + ) check_backend_support(item) |