From 031c2cb544478b4dee341bcf76fb359ad8ac788a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 31 Jan 2014 11:44:53 -0800 Subject: Fixes #539 -- document which interfaces a backend implements --- docs/hazmat/backends/commoncrypto.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'docs/hazmat/backends/commoncrypto.rst') diff --git a/docs/hazmat/backends/commoncrypto.rst b/docs/hazmat/backends/commoncrypto.rst index af2032b6..7bf1bc42 100644 --- a/docs/hazmat/backends/commoncrypto.rst +++ b/docs/hazmat/backends/commoncrypto.rst @@ -11,7 +11,14 @@ The `CommonCrypto`_ C library provided by Apple on OS X and iOS. .. data:: cryptography.hazmat.backends.commoncrypto.backend - This is the exposed API for the CommonCrypto backend. It has one public attribute. + This is the exposed API for the CommonCrypto backend. + + * :class:`~cryptography.hazmat.backends.interfaces.CipherBackend` + * :class:`~cryptography.hazmat.backends.interfaces.HashBackend` + * :class:`~cryptography.hazmat.backends.interfaces.HMACBackend` + * :class:`~cryptography.hazmat.backends.interfaces.PBKDF2HMACBackend` + + It has one additional public attribute. .. attribute:: name -- cgit v1.2.3 From 8ca6fadca6b4c8805c241382e24d87c127cff306 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 31 Jan 2014 13:23:51 -0800 Subject: Complete sentences. --- docs/hazmat/backends/commoncrypto.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs/hazmat/backends/commoncrypto.rst') diff --git a/docs/hazmat/backends/commoncrypto.rst b/docs/hazmat/backends/commoncrypto.rst index 7bf1bc42..16a61337 100644 --- a/docs/hazmat/backends/commoncrypto.rst +++ b/docs/hazmat/backends/commoncrypto.rst @@ -13,6 +13,8 @@ The `CommonCrypto`_ C library provided by Apple on OS X and iOS. This is the exposed API for the CommonCrypto backend. + It implements the following interfaces: + * :class:`~cryptography.hazmat.backends.interfaces.CipherBackend` * :class:`~cryptography.hazmat.backends.interfaces.HashBackend` * :class:`~cryptography.hazmat.backends.interfaces.HMACBackend` -- cgit v1.2.3