diff options
-rw-r--r-- | cryptography/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cryptography/exceptions.py b/cryptography/exceptions.py index 8825d3b4..86082e4a 100644 --- a/cryptography/exceptions.py +++ b/cryptography/exceptions.py @@ -16,6 +16,9 @@ from __future__ import absolute_import, division, print_function class _Reasons(object): BACKEND_MISSING_INTERFACE = object() + UNSUPPORTED_HASH = object() + UNSUPPORTED_CIPHER = object() + UNSUPPORTED_PADDING = object() class UnsupportedAlgorithm(Exception): |