diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-22 07:45:32 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-22 07:45:32 -0800 |
commit | d5c351e217b8c55034a5161d6f231d5810f7f2ad (patch) | |
tree | 4af2ecee820ae8e11ef4ce38d8c01bb85ae9ce1a /docs/hazmat | |
parent | c09f6aa5f14d8d544b3441e442b43427c2e0d93f (diff) | |
parent | 35cb3659bcf97eea22ce1ad14b7fc3d0913d2be2 (diff) | |
download | cryptography-d5c351e217b8c55034a5161d6f231d5810f7f2ad.tar.gz cryptography-d5c351e217b8c55034a5161d6f231d5810f7f2ad.tar.bz2 cryptography-d5c351e217b8c55034a5161d6f231d5810f7f2ad.zip |
Merge pull request #325 from public/unsupported-cipher-messages
UnsupportedAlgorithm error messages for Ciphers
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 6e3c1024..30896a05 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -61,7 +61,7 @@ an "encrypt-then-MAC" formulation as `described by Colin Percival`_. provider. If the backend doesn't support the requested combination of ``cipher`` - and ``mode`` an :class:`cryptography.exceptions.UnsupportedAlgorithm` + and ``mode`` an :class:`~cryptography.exceptions.UnsupportedAlgorithm` will be raised. .. method:: decryptor() |