diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-07-10 10:52:13 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-07-10 10:52:13 -0700 |
commit | ab4e90dc7d81474f38e7d9d924974eecbbd74946 (patch) | |
tree | 4b417de80f744d99a43c1341ac3497be05fa405d /docs/hazmat/primitives/asymmetric/serialization.rst | |
parent | aa986548559f5f81ffa8e7535500bd5cead0dd6b (diff) | |
parent | bdcca520d5a91f0b021e495782a1ff115a34c859 (diff) | |
download | cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.tar.gz cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.tar.bz2 cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.zip |
Merge pull request #1248 from reaperhulk/remove-some-docs
Numbers Doc Improvements
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/serialization.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index 874fce83..0525ed74 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -98,41 +98,3 @@ header that mentions the type of the serialized key. e.g. :raises UnsupportedAlgorithm: If the serialized key is of a type that is not supported by the backend or if the key is encrypted with a symmetric cipher that is not supported by the backend. - - -RSA Numbers -~~~~~~~~~~~ - -.. function:: load_rsa_private_numbers(numbers, backend) - - .. versionadded:: 0.5 - - Create a private key instance using the given backend and numbers. - - :param numbers: An instance of - :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateNumbers`. - - :param backend: A - :class:`~cryptography.hazmat.backends.interfaces.RSABackend` provider. - - :returns: A new instance of a private key. - - :raises UnsupportedAlgorithm: If the given backend does not support loading - numbers. - -.. function:: load_rsa_public_numbers(numbers, backend) - - .. versionadded:: 0.5 - - Create a public key instance using the given backend and numbers. - - :param numbers: An instance of - :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicNumbers`. - - :param backend: A - :class:`~cryptography.hazmat.backends.interfaces.RSABackend` provider. - - :returns: A new instance of a public key. - - :raises UnsupportedAlgorithm: If the given backend does not support loading - numbers. |