diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-14 19:20:28 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-16 11:14:23 -0600 |
commit | 64ddb7a87d2eb5d1230b928b12dc7dca0c6c637d (patch) | |
tree | bceb2bc96d4fdd5e2bf6f338a8bf86faa2eca14b /tests/hazmat/primitives/test_rsa.py | |
parent | 99c1b803aeb2260d8dbc131aca608276a714285c (diff) | |
download | cryptography-64ddb7a87d2eb5d1230b928b12dc7dca0c6c637d.tar.gz cryptography-64ddb7a87d2eb5d1230b928b12dc7dca0c6c637d.tar.bz2 cryptography-64ddb7a87d2eb5d1230b928b12dc7dca0c6c637d.zip |
move asymmetric padding interface to primitives.asymmetric.padding
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 33e5373b..6d8e6874 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -37,7 +37,7 @@ from ...utils import ( ) -@utils.register_interface(interfaces.AsymmetricPadding) +@utils.register_interface(padding.AsymmetricPadding) class DummyPadding(object): name = "UNSUPPORTED-PADDING" |