diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-26 16:47:05 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-26 16:47:05 -0400 |
commit | 281d6b255836538a15fc4957fe9e561a507f93d1 (patch) | |
tree | e9888ee93b7d7ef0232b9601843276687bb70488 /docs/hazmat/primitives/asymmetric | |
parent | 58f63ed781b73478ee3fe60ebe1cfdfd85df5186 (diff) | |
download | cryptography-281d6b255836538a15fc4957fe9e561a507f93d1.tar.gz cryptography-281d6b255836538a15fc4957fe9e561a507f93d1.tar.bz2 cryptography-281d6b255836538a15fc4957fe9e561a507f93d1.zip |
Slight clarification of the load_pem_public_key docs
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index 18b89c44..b86fab64 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -107,8 +107,8 @@ all begin with ``-----BEGIN {format}-----`` and end with ``-----END :returns: A new instance of a public key. - :raises ValueError: If the PEM data could not be decrypted or if its - structure could not be decoded successfully. + :raises ValueError: If the PEM data's structure could not be decoded + successfully. :raises UnsupportedAlgorithm: If the serialized key is of a type that is not supported by the backend. |