aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-08 14:04:04 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-08 14:04:04 -0700
commitac83b394befefc8da6bf4fde75e99daf0abe9237 (patch)
tree3c1c8ca5f94bf91abf67cde25a8faa49f7926417 /docs
parenta54d342197e9714ebdea32411488c147220a66f6 (diff)
downloadcryptography-ac83b394befefc8da6bf4fde75e99daf0abe9237.tar.gz
cryptography-ac83b394befefc8da6bf4fde75e99daf0abe9237.tar.bz2
cryptography-ac83b394befefc8da6bf4fde75e99daf0abe9237.zip
Try a different phrasing
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/primitives/asymmetric/serialization.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst
index e18f8c83..6e946b85 100644
--- a/docs/hazmat/primitives/asymmetric/serialization.rst
+++ b/docs/hazmat/primitives/asymmetric/serialization.rst
@@ -57,10 +57,11 @@ methods.
PEM
~~~
-PEM is an encapsulation format, meaning keys in it can actually be any one of
-several formats, however these are all self-identifying, so you don't need to
-worry about this detail. PEM keys are recognizable because they all begin with
-``-----BEGIN {format}-----`` and end with ``-----END {format}-----``.
+PEM is an encapsulation format, meaning keys in it can actually be any of
+several different key types, however these are all self-identifying, so you
+don't need to worry about this detail. PEM keys are recognizable because they
+all begin with ``-----BEGIN {format}-----`` and end with ``-----END
+{format}-----``.
.. function:: load_pem_private_key(data, password, backend):