aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-05-02 12:04:53 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2017-05-02 13:04:53 -0400
commit5fb10210276a10f104318504aa81d2ba9c42cba8 (patch)
tree8367273ef18ec825150015719c98b54a23b0db00 /docs
parent2e84daa8e2a3bdcb52750b0589e2ee7ee0fd17ec (diff)
downloadcryptography-5fb10210276a10f104318504aa81d2ba9c42cba8.tar.gz
cryptography-5fb10210276a10f104318504aa81d2ba9c42cba8.tar.bz2
cryptography-5fb10210276a10f104318504aa81d2ba9c42cba8.zip
add a changelog entry for finalize_with_tag and move the note (#3531)
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index 5f4d7bf9..e99c2c0a 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -574,6 +574,10 @@ Interfaces
.. method:: finalize_with_tag(tag)
+ .. note::
+
+ This method is not supported when compiled against OpenSSL 1.0.1.
+
:param bytes tag: The tag bytes to verify after decryption.
:return bytes: Returns the remainder of the data.
:raises ValueError: This is raised when the data provided isn't
@@ -587,10 +591,6 @@ Interfaces
object, this method must be used instead of
:meth:`~cryptography.hazmat.primitives.ciphers.CipherContext.finalize`.
- .. note::
-
- This method is not supported when compiled against OpenSSL 1.0.1.
-
.. class:: CipherAlgorithm
A named symmetric encryption algorithm.