diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-14 21:15:36 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-14 21:15:36 -0400 |
commit | 27c750de99df6818b5bc0414dd7995fb514f5c28 (patch) | |
tree | 3da23585595b6defdcf290e680d71800ce166c64 /tests/hazmat | |
parent | 3bf44db428e98058e29cd5e7ddd97fd5baad3dee (diff) | |
parent | d14dcc577ffc851eb32a2f77431f043fa5a7ce37 (diff) | |
download | cryptography-27c750de99df6818b5bc0414dd7995fb514f5c28.tar.gz cryptography-27c750de99df6818b5bc0414dd7995fb514f5c28.tar.bz2 cryptography-27c750de99df6818b5bc0414dd7995fb514f5c28.zip |
Merge pull request #1848 from reaperhulk/invalid-token
Twofactor invalid token
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/primitives/twofactor/test_hotp.py | 3 | ||||
-rw-r--r-- | tests/hazmat/primitives/twofactor/test_totp.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/twofactor/test_hotp.py b/tests/hazmat/primitives/twofactor/test_hotp.py index a76aa6e3..a5d1c284 100644 --- a/tests/hazmat/primitives/twofactor/test_hotp.py +++ b/tests/hazmat/primitives/twofactor/test_hotp.py @@ -8,10 +8,11 @@ import os import pytest -from cryptography.exceptions import InvalidToken, _Reasons +from cryptography.exceptions import _Reasons from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.hashes import MD5, SHA1 +from cryptography.hazmat.primitives.twofactor import InvalidToken from cryptography.hazmat.primitives.twofactor.hotp import HOTP from ....utils import ( diff --git a/tests/hazmat/primitives/twofactor/test_totp.py b/tests/hazmat/primitives/twofactor/test_totp.py index 05321089..6039983e 100644 --- a/tests/hazmat/primitives/twofactor/test_totp.py +++ b/tests/hazmat/primitives/twofactor/test_totp.py @@ -6,9 +6,10 @@ from __future__ import absolute_import, division, print_function import pytest -from cryptography.exceptions import InvalidToken, _Reasons +from cryptography.exceptions import _Reasons from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.twofactor import InvalidToken from cryptography.hazmat.primitives.twofactor.totp import TOTP from ....utils import ( |