aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-06-10 09:36:39 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-06-10 09:36:39 -0700
commitebb1cb96e4401a2636b1e8a07e896d2f2771a137 (patch)
tree26c49a42d3b309f46a18d30f365656e92649dd2f /docs/hazmat
parent9347f8501de07fdf883c53a402c048520388138f (diff)
downloadcryptography-ebb1cb96e4401a2636b1e8a07e896d2f2771a137.tar.gz
cryptography-ebb1cb96e4401a2636b1e8a07e896d2f2771a137.tar.bz2
cryptography-ebb1cb96e4401a2636b1e8a07e896d2f2771a137.zip
Fixed a few typos
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/asymmetric/serialization.rst2
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst
index e53d0d1f..874fce83 100644
--- a/docs/hazmat/primitives/asymmetric/serialization.rst
+++ b/docs/hazmat/primitives/asymmetric/serialization.rst
@@ -10,7 +10,7 @@ keys to bytes. They generally support encryption of private keys and additional
key metadata.
Many serialization formats support multiple different types of asymmetric keys
-and will return an an instance of the appropriate type. You should check that
+and will return an instance of the appropriate type. You should check that
the returned key matches the type your application expects when using these
methods.
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),