diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-27 13:40:45 -0600 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-27 13:40:45 -0600 |
commit | 1a278a81663e4a81c7dacaacf1c3aa5a6ace8907 (patch) | |
tree | d17eb4687a4ddd67012b49798cdbbef3686a1482 /docs/hazmat/primitives | |
parent | 774e2a6ec569c34b30bd9b857826ddb8749d2e9c (diff) | |
download | cryptography-1a278a81663e4a81c7dacaacf1c3aa5a6ace8907.tar.gz cryptography-1a278a81663e4a81c7dacaacf1c3aa5a6ace8907.tar.bz2 cryptography-1a278a81663e4a81c7dacaacf1c3aa5a6ace8907.zip |
Learn how to spell a word
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 4ab91408..edf3c050 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -89,7 +89,7 @@ an "encrypt-then-MAC" formulation as `described by Colin Percival`_. Block ciphers require that plaintext or ciphertext always be a multiple of their block size, because of that **padding** is often required to make a message the correct size. ``CipherContext`` will not automatically apply - any padding; you'll need to add your own. For block ciphers the reccomended + any padding; you'll need to add your own. For block ciphers the recommended padding is :class:`cryptography.hazmat.primitives.padding.PKCS7`. If you are using a stream cipher mode (such as :class:`cryptography.hazmat.primitives.modes.CTR`) you don't have to worry |