aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-12-15 10:42:45 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-12-15 10:42:45 -0800
commit993b85ad6f3ebe5db6a24c1649d28f8cf45095ea (patch)
tree302c430d0de6cb1409ba5e2f5b088c476e087da6 /docs/hazmat/primitives
parentcbddc9897b579f1b44e0c4cd5cd868fa7c6dd06d (diff)
downloadcryptography-993b85ad6f3ebe5db6a24c1649d28f8cf45095ea.tar.gz
cryptography-993b85ad6f3ebe5db6a24c1649d28f8cf45095ea.tar.bz2
cryptography-993b85ad6f3ebe5db6a24c1649d28f8cf45095ea.zip
A handful of tiny fixes
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r--docs/hazmat/primitives/asymmetric/serialization.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst
index 45c7a5bc..a9392c7b 100644
--- a/docs/hazmat/primitives/asymmetric/serialization.rst
+++ b/docs/hazmat/primitives/asymmetric/serialization.rst
@@ -199,7 +199,7 @@ KEY-----`` or ``-----BEGIN DSA PRIVATE KEY-----``.
OpenSSH Public Key
~~~~~~~~~~~~~~~~~~
-The format used by OpenSSH to store public keys as specified in :rfc:`4253`.
+The format used by OpenSSH to store public keys, as specified in :rfc:`4253`.
Currently, only RSA public keys are supported. Any other type of key will
result in an exception being thrown.
@@ -224,7 +224,8 @@ purposes)::
:param bytes data: The OpenSSH encoded key data.
- :param backend: A backend provider.
+ :param backend: An
+ :class:`~cryptography.hazmat.backends.interfaces.RSABackend` provider.
:returns: A new instance of a public key type.