diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-16 08:07:55 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-16 08:07:55 -0430 |
commit | 1e7ce06edb9179cf2afc66b031767d9246242fad (patch) | |
tree | 73bf237fc89851950325a78c1ded24f8343cb4b1 /docs | |
parent | 77fdd4e4559c30ee0155430f6fe192311b5eae8b (diff) | |
parent | 471c1184eb8a7c24111abdc0bcb418c6c6839757 (diff) | |
download | cryptography-1e7ce06edb9179cf2afc66b031767d9246242fad.tar.gz cryptography-1e7ce06edb9179cf2afc66b031767d9246242fad.tar.bz2 cryptography-1e7ce06edb9179cf2afc66b031767d9246242fad.zip |
Merge pull request #806 from Ayrx/add-backend-check-to-cipher
Added backend check to cipher primitives
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 741091b2..71a1064e 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -56,6 +56,10 @@ an "encrypt-then-MAC" formulation as `described by Colin Percival`_. :class:`~cryptography.hazmat.backends.interfaces.CipherBackend` provider. + :raises cryptography.exceptions.UnsupportedInterface: This is raised if the + provided ``backend`` does not implement + :class:`~cryptography.hazmat.backends.interfaces.CipherBackend` + .. method:: encryptor() :return: An encrypting |