diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-10 13:39:05 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-10 13:39:05 -0500 |
commit | 21e1a4cf4401c4d13f75e59a75ef6d5199a70c14 (patch) | |
tree | 26c49a42d3b309f46a18d30f365656e92649dd2f /docs/hazmat/primitives/symmetric-encryption.rst | |
parent | 9347f8501de07fdf883c53a402c048520388138f (diff) | |
parent | ebb1cb96e4401a2636b1e8a07e896d2f2771a137 (diff) | |
download | cryptography-21e1a4cf4401c4d13f75e59a75ef6d5199a70c14.tar.gz cryptography-21e1a4cf4401c4d13f75e59a75ef6d5199a70c14.tar.bz2 cryptography-21e1a4cf4401c4d13f75e59a75ef6d5199a70c14.zip |
Merge pull request #1122 from alex/typo-fixesg
Fixed a few typos
Diffstat (limited to 'docs/hazmat/primitives/symmetric-encryption.rst')
-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 bca78354..bcb1fb35 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -337,7 +337,7 @@ Modes # Generate a random 96-bit IV. iv = os.urandom(12) - # Construct a AES-GCM Cipher object with the given key and a + # Construct an AES-GCM Cipher object with the given key and a # randomly generated IV. encryptor = Cipher( algorithms.AES(key), |