diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-11-27 11:57:12 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-11-27 11:57:12 -0800 |
commit | bdb6debe4a9a3ccba6648c56028f849c0e5b6a12 (patch) | |
tree | d17eb4687a4ddd67012b49798cdbbef3686a1482 /docs/hazmat | |
parent | 774e2a6ec569c34b30bd9b857826ddb8749d2e9c (diff) | |
parent | 1a278a81663e4a81c7dacaacf1c3aa5a6ace8907 (diff) | |
download | cryptography-bdb6debe4a9a3ccba6648c56028f849c0e5b6a12.tar.gz cryptography-bdb6debe4a9a3ccba6648c56028f849c0e5b6a12.tar.bz2 cryptography-bdb6debe4a9a3ccba6648c56028f849c0e5b6a12.zip |
Merge pull request #279 from alex/spelling-fix
Learn how to spell a word
Diffstat (limited to 'docs/hazmat')
-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 |