diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-21 10:38:58 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-21 10:38:58 -0800 |
commit | 4447e5a72c6c5d4f3f8fc27711e094540d66ef67 (patch) | |
tree | e83aaec9dac1c1cdcf8a0798d1eeac5f78f1e875 /docs/hazmat/primitives | |
parent | 72d3b80eeb5c31fb487f56f38f283b6416301ad9 (diff) | |
parent | 1b1327cfe537b9e7bdc271239d1025c2479239c3 (diff) | |
download | cryptography-4447e5a72c6c5d4f3f8fc27711e094540d66ef67.tar.gz cryptography-4447e5a72c6c5d4f3f8fc27711e094540d66ef67.tar.bz2 cryptography-4447e5a72c6c5d4f3f8fc27711e094540d66ef67.zip |
Merge pull request #324 from public/unsupported-hash
Raise UnsupportedAlgorithm when initing Hash()
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/cryptographic-hashes.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/cryptographic-hashes.rst b/docs/hazmat/primitives/cryptographic-hashes.rst index 90ca198a..38347378 100644 --- a/docs/hazmat/primitives/cryptographic-hashes.rst +++ b/docs/hazmat/primitives/cryptographic-hashes.rst @@ -28,6 +28,9 @@ Message Digests >>> digest.finalize() 'l\xa1=R\xcap\xc8\x83\xe0\xf0\xbb\x10\x1eBZ\x89\xe8bM\xe5\x1d\xb2\xd29%\x93\xafj\x84\x11\x80\x90' + If the backend doesn't support the requested ``algorithm`` an + :class:`~cryptography.exceptions.UnsupportedAlgorithm` will be raised. + Keep in mind that attacks against cryptographic hashes only get stronger with time, and that often algorithms that were once thought to be strong, become broken. Because of this it's important to include a plan for |