aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-02-21 11:30:02 +0800
committerAyrx <terrycwk1994@gmail.com>2014-02-21 11:30:02 +0800
commitc2e53409242f750f7966b5d1e45f62f9c818b07d (patch)
treea02e32e6fed266877693d281a032d040ff8e3ad6
parent94c73592a8433b4b9567f0c57c9bedadc0e927f7 (diff)
downloadcryptography-c2e53409242f750f7966b5d1e45f62f9c818b07d.tar.gz
cryptography-c2e53409242f750f7966b5d1e45f62f9c818b07d.tar.bz2
cryptography-c2e53409242f750f7966b5d1e45f62f9c818b07d.zip
Fixed HOTP test path, added changelog and myself to author list.
-rw-r--r--AUTHORS.rst1
-rw-r--r--docs/changelog.rst2
-rw-r--r--tests/hazmat/primitives/twofactor/test_hotp.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/AUTHORS.rst b/AUTHORS.rst
index 86267cf1..e9c2f85f 100644
--- a/AUTHORS.rst
+++ b/AUTHORS.rst
@@ -14,3 +14,4 @@ PGP key fingerprints are enclosed in parentheses.
* David Reid <dreid@dreid.org> (0F83 CC87 B32F 482B C726 B58A 9FBF D8F4 DA89 6D74)
* Konstantinos Koukopoulos <koukopoulos@gmail.com> (D6BD 52B6 8C99 A91C E2C8 934D 3300 566B 3A46 726E)
* Stephen Holsapple <sholsapp@gmail.com>
+* Terry Chia <terrycwk1994@gmail.com>
diff --git a/docs/changelog.rst b/docs/changelog.rst
index b4c9a55b..c59f2f51 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,7 +4,7 @@ Changelog
0.3 - 2014-XX-XX
~~~~~~~~~~~~~~~~
-**In development**
+* Added :class:`~cryptography.hazmat.primitives.twofactor.hotp.HOTP`.
0.2 - 2014-02-20
~~~~~~~~~~~~~~~~
diff --git a/tests/hazmat/primitives/twofactor/test_hotp.py b/tests/hazmat/primitives/twofactor/test_hotp.py
index 25dd694b..ec619b55 100644
--- a/tests/hazmat/primitives/twofactor/test_hotp.py
+++ b/tests/hazmat/primitives/twofactor/test_hotp.py
@@ -21,7 +21,7 @@ from cryptography.hazmat.primitives import hashes
from tests.utils import load_vectors_from_file, load_nist_vectors
vectors = load_vectors_from_file(
- "oath/rfc-4226.txt", load_nist_vectors)
+ "twofactor/rfc-4226.txt", load_nist_vectors)
@pytest.mark.supported(