aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-18 11:29:44 -0800
committerDavid Reid <dreid@dreid.org>2013-11-18 11:29:44 -0800
commit5973f4cc78a5afeab010d44fc7962660158f1d30 (patch)
tree27b13e696c7d48691e51169f1c091a90b9d4139b /docs
parent6c2e176d0fc77e5d43b86984f15dc350a7376c6e (diff)
downloadcryptography-5973f4cc78a5afeab010d44fc7962660158f1d30.tar.gz
cryptography-5973f4cc78a5afeab010d44fc7962660158f1d30.tar.bz2
cryptography-5973f4cc78a5afeab010d44fc7962660158f1d30.zip
Document backend interfaces.
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/bindings/interfaces.rst89
1 files changed, 82 insertions, 7 deletions
diff --git a/docs/hazmat/bindings/interfaces.rst b/docs/hazmat/bindings/interfaces.rst
index 2f163267..851b31a9 100644
--- a/docs/hazmat/bindings/interfaces.rst
+++ b/docs/hazmat/bindings/interfaces.rst
@@ -8,36 +8,111 @@ Backend Interfaces
.. class:: CipherBackend
+ A backend which provides methods for using ciphers for encryption
+ and decryption.
+
.. method:: cipher_supported(cipher, mode)
- pass
+ Check if a ``cipher`` and ``mode`` combination is supported by
+ this backend.
+
+ :param cipher: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm`
+ provider.
+ :param mode: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.Mode` provider.
+
+ :returns: ``True`` if the specified ``cipher`` and ``mode`` combination
+ is supported by this backend, otherwise ``False``
.. method:: register_cipher_adapter(cipher_cls, mode_cls, adapter)
- pass
+ Register an adapter which can be used to create a backend specific
+ object from instances of the
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm` and
+ the :class:`~cryptography.hazmat.primitives.interfaces.Mode` primitives.
+
+ :param cipher_cls: A class whose instances provide
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm`
+ :param mode_cls: A class whose instances provide:
+ :class:`~cryptography.hazmat.primitives.interfaces.Mode`
+ :param adapter: A ``function`` that takes 3 arguments, ``backend`` (a
+ :class:`CipherBackend` provider), ``cipher`` (a
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm`
+ provider ), and ``mode`` (a
+ :class:`~cryptography.hazmat.primitives.interfaces.Mode` provider).
+ It returns a backend specific object which may be used to construct
+ a :class:`~cryptogrpahy.hazmat.primitives.interfaces.CipherContext`.
+
.. method:: create_symmetric_encryption_ctx(cipher, mode)
- pass
+ Create a
+ :class:`~cryptogrpahy.hazmat.primitives.interfaces.CipherContext` that
+ can be used for encrypting data with the symmetric ``cipher`` using
+ the given ``mode``.
+
+ :param cipher: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm`
+ provider.
+ :param mode: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.Mode` provider.
+
+ :returns:
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherContext`
+
.. method:: create_symmetric_decryption_ctx(cipher, mode)
- pass
+ Create a
+ :class:`~cryptogrpahy.hazmat.primitives.interfaces.CipherContext` that
+ can be used for decrypting data with the symmetric ``cipher`` using
+ the given ``mode``.
+
+ :param cipher: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherAlgorithm`
+ provider.
+ :param mode: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.Mode` provider.
+
+ :returns:
+ :class:`~cryptography.hazmat.primitives.interfaces.CipherContext`
.. class:: HashBackend
+ A backend with methods for using cryptographic hash functions.
+
.. method:: hash_supported(algorithm)
- pass
+ :param algorithm: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
+ provider.
+
+ :returns: ``True`` if the specified ``algorithm`` is supported by this
+ backend, otherwise ``False``.
+
.. method:: create_hash_ctx(algorithm)
- pass
+ :param algorithm: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
+ provider.
+
+ :returns:
+ :class:`~cryptography.hazmat.primitives.interfaces.HashContext`
.. class:: HMACBackend
+ A backend with methods for using cryptographic hash functions as message
+ authentication codes.
+
.. method:: create_hmac_ctx(algorithm)
- pass
+ :param algorithm: An instance of a
+ :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
+ provider.
+
+ :returns:
+ :class:`~cryptography.hazmat.primitives.interfaces.HashContext`