aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-12-18 13:46:51 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-12-18 13:46:51 -0600
commit60657bbd2907e5116fac176079a3da31b2c56d3c (patch)
treea8954344e2ede283fe6433e6b93b5773dfe2a09b /docs
parent9cde70ae840685f2bae6173b6beb192ae3866dc3 (diff)
downloadcryptography-60657bbd2907e5116fac176079a3da31b2c56d3c.tar.gz
cryptography-60657bbd2907e5116fac176079a3da31b2c56d3c.tar.bz2
cryptography-60657bbd2907e5116fac176079a3da31b2c56d3c.zip
remove fully deprecated items from 0.6 deprecation cycle
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/backends/interfaces.rst45
1 files changed, 0 insertions, 45 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index e4c43d9e..8620d9a7 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -468,51 +468,6 @@ A specific ``backend`` may provide one or more of these interfaces.
serialized data contains.
:raises ValueError: If the data could not be deserialized.
-.. class:: TraditionalOpenSSLSerializationBackend
-
- .. versionadded:: 0.3
-
- A backend with methods for working with OpenSSL's "traditional" PKCS #1
- style key serialization.
-
- .. method:: load_openssl_pem_private_key(data, password)
-
- :param bytes data: PEM data to deserialize.
-
- :param bytes password: The password to use if this data is encrypted.
- Should be None if the data is not encrypted.
-
- :return: A new instance of the appropriate type of private key that the
- serialized data contains.
-
- :raises ValueError: If the data could not be deserialized correctly.
-
- :raises cryptography.exceptions.UnsupportedAlgorithm: If the data is
- encrypted with an unsupported algorithm.
-
-
-.. class:: PKCS8SerializationBackend
-
- .. versionadded:: 0.5
-
- A backend with methods for working with PKCS #8 key serialization.
-
- .. method:: load_pkcs8_pem_private_key(data, password)
-
- :param bytes data: PEM data to deserialize.
-
- :param bytes password: The password to use if this data is encrypted.
- Should be None if the data is not encrypted.
-
- :return: A new instance of the appropriate private key or public key
- that the serialized data contains.
-
- :raises ValueError: If the data could not be deserialized correctly.
-
- :raises cryptography.exceptions.UnsupportedAlgorithm: If the data is
- encrypted with an unsupported algorithm.
-
-
.. class:: X509Backend
.. versionadded:: 0.7