diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-19 12:15:54 -0600 |
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-19 12:15:54 -0600 |
| commit | 12656e53baf6d66a2a0a83aed9711407a4cf7818 (patch) | |
| tree | bf57b03201ed83630d655c4d66ba3f9b77fdc475 /cryptography | |
| parent | d669cd38121cde079a92aabee36ca4c3a44fbf87 (diff) | |
| download | cryptography-12656e53baf6d66a2a0a83aed9711407a4cf7818.tar.gz cryptography-12656e53baf6d66a2a0a83aed9711407a4cf7818.tar.bz2 cryptography-12656e53baf6d66a2a0a83aed9711407a4cf7818.zip | |
update docs, add name attribute to backend
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/hazmat/backends/commoncrypto/backend.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/commoncrypto/backend.py b/cryptography/hazmat/backends/commoncrypto/backend.py index efbd6bab..6953b1f3 100644 --- a/cryptography/hazmat/backends/commoncrypto/backend.py +++ b/cryptography/hazmat/backends/commoncrypto/backend.py @@ -29,6 +29,7 @@ class Backend(object): """ CommonCrypto API wrapper. """ + name = "commoncrypto" hashtuple = namedtuple("HashClass", ["struct", "init", "update", "final"]) def __init__(self): |
