summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLegrandin <helderijs@gmail.com>2013-01-23 22:37:53 +0100
committerDwayne Litzenberger <dlitz@dlitz.net>2013-10-20 13:30:21 -0700
commit5ca4c71c04e68a8fdbf7ef18a719e606793c55dd (patch)
tree60108e8e695c08f3e7038d1514e9404d93baad7c
parentba46e8640f1964f3e747674064ac9ed19ca8e640 (diff)
downloadpycrypto-5ca4c71c04e68a8fdbf7ef18a719e606793c55dd.tar.gz
blockalgo: Fix MODE_OPENPGP comment
[dlitz@dlitz.net: Extracted from the following commit:] commit 5306cf38ba060a70e5397ec48a5cea00c2bf0203 Author: Legrandin <helderijs@gmail.com> Date: Wed Jan 23 22:37:53 2013 +0100 Added support for CCM mode (AES cipher only)
-rw-r--r--lib/Crypto/Cipher/blockalgo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Crypto/Cipher/blockalgo.py b/lib/Crypto/Cipher/blockalgo.py
index bdd1dec..e20ec5a 100644
--- a/lib/Crypto/Cipher/blockalgo.py
+++ b/lib/Crypto/Cipher/blockalgo.py
@@ -111,7 +111,7 @@ MODE_OFB = 5
#: .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
MODE_CTR = 6
-#: OpenPGP. This mode is a variant of CFB, and it is only used in PGP and
+#: *OpenPGP CFB*. This mode is a variant of CFB, and it is only used in PGP and
#: OpenPGP_ applications. An Initialization Vector (*IV*) is required.
#:
#: Unlike CFB, the IV is not transmitted to the receiver.