diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 22:08:23 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 22:08:23 -0600 |
commit | 7a01afca611d9987714822a6078efd190864124c (patch) | |
tree | 94be41750566fdfabbea9b0ce8df850fb77482f3 /tests | |
parent | efca28007009163b29443c2f5558221f37002bf9 (diff) | |
download | cryptography-7a01afca611d9987714822a6078efd190864124c.tar.gz cryptography-7a01afca611d9987714822a6078efd190864124c.tar.bz2 cryptography-7a01afca611d9987714822a6078efd190864124c.zip |
fix rsa key loader test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index a413f10b..e7787bdb 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -123,6 +123,7 @@ class TestRSA(object): ) def test_load_pss_vect_example_keys(self, pkcs1_example): secret, public = pkcs1_example + secret.pop("examples") skey = rsa.RSAPrivateKey(**secret) assert skey |