aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-02 09:10:40 -0430
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-02 09:10:40 -0430
commit43b4f1c43298ee8804396c89f1684a1012b87ead (patch)
tree83a7cacc9c717c36cdded66154e115deeec9a659
parent48610a5190286ce59204fecf096d217abaf4ed23 (diff)
parent9b1a82e42bdd546220225430aa06e3b732fb0155 (diff)
downloadcryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.tar.gz
cryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.tar.bz2
cryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.zip
Merge pull request #703 from alex/change-exceptino-type
Change exception in use
-rw-r--r--cryptography/hazmat/primitives/twofactor/hotp.py5
-rw-r--r--docs/hazmat/primitives/twofactor.rst8
-rw-r--r--tests/hazmat/primitives/twofactor/test_hotp.py4
3 files changed, 8 insertions, 9 deletions
diff --git a/cryptography/hazmat/primitives/twofactor/hotp.py b/cryptography/hazmat/primitives/twofactor/hotp.py
index 24f5f465..88bde715 100644
--- a/cryptography/hazmat/primitives/twofactor/hotp.py
+++ b/cryptography/hazmat/primitives/twofactor/hotp.py
@@ -17,7 +17,7 @@ import struct
import six
-from cryptography.exceptions import InvalidToken, UnsupportedAlgorithm
+from cryptography.exceptions import InvalidToken
from cryptography.hazmat.primitives import constant_time, hmac
from cryptography.hazmat.primitives.hashes import SHA1, SHA256, SHA512
@@ -31,8 +31,7 @@ class HOTP(object):
raise ValueError("Length of HOTP has to be between 6 to 8.")
if not isinstance(algorithm, (SHA1, SHA256, SHA512)):
- raise UnsupportedAlgorithm(
- "Algorithm must be SHA1, SHA256 or SHA512")
+ raise TypeError("Algorithm must be SHA1, SHA256 or SHA512")
self._key = key
self._length = length
diff --git a/docs/hazmat/primitives/twofactor.rst b/docs/hazmat/primitives/twofactor.rst
index 3df1a147..0e781439 100644
--- a/docs/hazmat/primitives/twofactor.rst
+++ b/docs/hazmat/primitives/twofactor.rst
@@ -47,8 +47,8 @@ codes (HMAC).
provider.
:raises ValueError: This is raised if the provided ``key`` is shorter than
128 bits or if the ``length`` parameter is not 6, 7 or 8.
- :raises UnsupportedAlgorithm: This is raised if the provided ``algorithm``
- is not :class:`~cryptography.hazmat.primitives.hashes.SHA1()`,
+ :raises TypeError: This is raised if the provided ``algorithm`` is not
+ :class:`~cryptography.hazmat.primitives.hashes.SHA1()`,
:class:`~cryptography.hazmat.primitives.hashes.SHA256()` or
:class:`~cryptography.hazmat.primitives.hashes.SHA512()`.
@@ -142,8 +142,8 @@ similar to the following code.
provider.
:raises ValueError: This is raised if the provided ``key`` is shorter than
128 bits or if the ``length`` parameter is not 6, 7 or 8.
- :raises UnsupportedAlgorithm: This is raised if the provided ``algorithm``
- is not :class:`~cryptography.hazmat.primitives.hashes.SHA1()`,
+ :raises TypeError: This is raised if the provided ``algorithm`` is not
+ :class:`~cryptography.hazmat.primitives.hashes.SHA1()`,
:class:`~cryptography.hazmat.primitives.hashes.SHA256()` or
:class:`~cryptography.hazmat.primitives.hashes.SHA512()`.
diff --git a/tests/hazmat/primitives/twofactor/test_hotp.py b/tests/hazmat/primitives/twofactor/test_hotp.py
index 7c584271..4c726b77 100644
--- a/tests/hazmat/primitives/twofactor/test_hotp.py
+++ b/tests/hazmat/primitives/twofactor/test_hotp.py
@@ -15,7 +15,7 @@ import os
import pytest
-from cryptography.exceptions import InvalidToken, UnsupportedAlgorithm
+from cryptography.exceptions import InvalidToken
from cryptography.hazmat.primitives.twofactor.hotp import HOTP
from cryptography.hazmat.primitives import hashes
from tests.utils import load_vectors_from_file, load_nist_vectors
@@ -46,7 +46,7 @@ class TestHOTP(object):
def test_invalid_algorithm(self, backend):
secret = os.urandom(16)
- with pytest.raises(UnsupportedAlgorithm):
+ with pytest.raises(TypeError):
HOTP(secret, 6, MD5(), backend)
@pytest.mark.parametrize("params", vectors)