diff options
author | David Reid <dreid@dreid.org> | 2014-01-20 10:08:36 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-01-20 10:08:36 -0800 |
commit | e2ad5ca3f4ddfdbfcf1c5c64ee5d8dc22877e9ca (patch) | |
tree | 33c19e0c4775f491ae9cc7ba63554b498543512e /docs | |
parent | 580e992dc0d95618d3e667e471dd1d6a7eb6e323 (diff) | |
download | cryptography-e2ad5ca3f4ddfdbfcf1c5c64ee5d8dc22877e9ca.tar.gz cryptography-e2ad5ca3f4ddfdbfcf1c5c64ee5d8dc22877e9ca.tar.bz2 cryptography-e2ad5ca3f4ddfdbfcf1c5c64ee5d8dc22877e9ca.zip |
Remove register_cipher_adapter from the interface and the documentation.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 5b6cd64d..11e2f2a2 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -33,25 +33,6 @@ A specific ``backend`` may provide one or more of these interfaces. :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) - - 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) |