diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-03 17:37:42 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-12-03 17:37:42 -0600 |
commit | 5578c66babf3cb214114617bdd29c28129f31c37 (patch) | |
tree | 1585826d1da2b670da96d25415afd481eca7da0a /docs/hazmat | |
parent | 128b948b3cb5840b35ae12613b2215bfe9f098bd (diff) | |
download | cryptography-5578c66babf3cb214114617bdd29c28129f31c37.tar.gz cryptography-5578c66babf3cb214114617bdd29c28129f31c37.tar.bz2 cryptography-5578c66babf3cb214114617bdd29c28129f31c37.zip |
improve language for gcm docs
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 9d4f0355..c97d6b0b 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -340,11 +340,11 @@ Modes byte has been decrypted. GCM provides NO guarantees of ciphertext integrity until decryption is complete. - GCM (Galois Counter Mode) is a mode of operation for block ciphers. It - is an AEAD (authenticated encryption with additional data) mode. AEAD - is a type of block cipher mode that encrypts the message as well as - authenticating it (and optionally additional data that is not encrypted) - simultaneously. Additional means of verifying integrity (like + GCM (Galois Counter Mode) is a mode of operation for block ciphers. An + AEAD (authenticated encryption with additional data) mode is a type of + block cipher mode that encrypts the message as well as authenticating it + (and optionally additional data that is not encrypted) simultaneously. + Additional means of verifying integrity (like :doc:`HMAC </hazmat/primitives/hmac>`) are not necessary. :param bytes initialization_vector: Must be random bytes. They do not need |