diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-19 13:20:13 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-19 13:20:13 -0800 |
commit | 83a299c450260e895ab7e3a0a4d4e0a44a8ece31 (patch) | |
tree | 5441803e652f502de8d37d80afe4f9eb81d52849 /docs/hazmat | |
parent | 4577c6b9f09a121710ff0320212083291db19c64 (diff) | |
parent | 6ce4bb78e7d4c597b1594479d99caa73e9c5c73a (diff) | |
download | cryptography-83a299c450260e895ab7e3a0a4d4e0a44a8ece31.tar.gz cryptography-83a299c450260e895ab7e3a0a4d4e0a44a8ece31.tar.bz2 cryptography-83a299c450260e895ab7e3a0a4d4e0a44a8ece31.zip |
Merge pull request #449 from reaperhulk/common-crypto-backend
CommonCrypto Backend (Hash support)
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/backends/common-crypto.rst | 20 | ||||
-rw-r--r-- | docs/hazmat/backends/index.rst | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/docs/hazmat/backends/common-crypto.rst b/docs/hazmat/backends/common-crypto.rst new file mode 100644 index 00000000..af2032b6 --- /dev/null +++ b/docs/hazmat/backends/common-crypto.rst @@ -0,0 +1,20 @@ +.. hazmat:: + +CommonCrypto Backend +==================== + +The `CommonCrypto`_ C library provided by Apple on OS X and iOS. + +.. currentmodule:: cryptography.hazmat.backends.commoncrypto.backend + +.. versionadded:: 0.2 + +.. data:: cryptography.hazmat.backends.commoncrypto.backend + + This is the exposed API for the CommonCrypto backend. It has one public attribute. + + .. attribute:: name + + The string name of this backend: ``"commoncrypto"`` + +.. _`CommonCrypto`: https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man3/Common%20Crypto.3cc.html diff --git a/docs/hazmat/backends/index.rst b/docs/hazmat/backends/index.rst index 06951281..22354f69 100644 --- a/docs/hazmat/backends/index.rst +++ b/docs/hazmat/backends/index.rst @@ -31,4 +31,5 @@ Individual Backends :maxdepth: 1 openssl + common-crypto interfaces |