diff options
| author | Ayrx <terrycwk1994@gmail.com> | 2014-02-17 12:26:10 +0800 |
|---|---|---|
| committer | Ayrx <terrycwk1994@gmail.com> | 2014-02-21 11:13:35 +0800 |
| commit | 64a3fbd6365a33fdd5fc247c49831a22aa11a303 (patch) | |
| tree | 1c790e179465f07a678dcdceb28c903149dd1e6b /cryptography | |
| parent | ebadb6b293748786c45fb34685b25000be4df2e7 (diff) | |
| download | cryptography-64a3fbd6365a33fdd5fc247c49831a22aa11a303.tar.gz cryptography-64a3fbd6365a33fdd5fc247c49831a22aa11a303.tar.bz2 cryptography-64a3fbd6365a33fdd5fc247c49831a22aa11a303.zip | |
Final changes to module names
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/primitives/otp/__init__.py (renamed from cryptography/hazmat/oath/__init__.py) | 0 | ||||
| -rw-r--r-- | cryptography/hazmat/primitives/otp/hotp.py (renamed from cryptography/hazmat/oath/hotp.py) | 3 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cryptography/hazmat/oath/__init__.py b/cryptography/hazmat/primitives/otp/__init__.py index e69de29b..e69de29b 100644 --- a/cryptography/hazmat/oath/__init__.py +++ b/cryptography/hazmat/primitives/otp/__init__.py diff --git a/cryptography/hazmat/oath/hotp.py b/cryptography/hazmat/primitives/otp/hotp.py index 9f5a0f13..0bc4cc56 100644 --- a/cryptography/hazmat/oath/hotp.py +++ b/cryptography/hazmat/primitives/otp/hotp.py @@ -12,9 +12,10 @@ # limitations under the License. import struct -from cryptography.exceptions import InvalidToken + import six +from cryptography.exceptions import InvalidToken from cryptography.hazmat.primitives import constant_time, hmac from cryptography.hazmat.primitives.hashes import SHA1 |
