diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-06 14:22:56 -0800 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-06 14:22:56 -0800 |
| commit | c6a6f317fca2aa368943870ecc3854bb53399f06 (patch) | |
| tree | 6c975bf178f47d504da5edbce3233ca54a89d82d /docs/exceptions.rst | |
| parent | 8b347932fb3612e622d07643af62ed939976b9cb (diff) | |
| download | cryptography-c6a6f317fca2aa368943870ecc3854bb53399f06.tar.gz | |
Convert stuff
Diffstat (limited to 'docs/exceptions.rst')
| -rw-r--r-- | docs/exceptions.rst | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/docs/exceptions.rst b/docs/exceptions.rst index 7f9ae347c..48c4bca88 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -25,11 +25,24 @@ Exceptions This is raised when additional data is added to a context after update has already been called. +.. class:: UnsupportedCipher -.. class:: UnsupportedAlgorithm + .. versionadded:: 0.3 - This is raised when a backend doesn't support the requested algorithm (or - combination of algorithms). + This is raised when a backend doesn't support the requested cipher + algorithm and mode combination. + +.. class:: UnsupportedHash + + .. versionadded:: 0.3 + + This is raised when a backend doesn't support the requested hash algorithm. + +.. class:: UnsupportedPadding + + .. versionadded:: 0.3 + + This is raised when the requested padding is not supported by the backend. .. class:: InvalidKey @@ -43,7 +56,3 @@ Exceptions This is raised when the verify method of a one time password function's computed token does not match the expected token. - -.. class:: UnsupportedPadding - - This is raised when the chosen padding is not supported by the backend. |
