summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-03-01 02:01:47 +0000
committerGregory P. Smith <greg@mad-scientist.com>2010-03-01 02:01:47 +0000
commite6390a15033b9a93d345338d06b220542687b3fd (patch)
tree6105ab6804da46cd2e3ea0534a60425dea1c1bcb
parent9e5d1327f8a6f3a266b76118e0c660c7bcb12ce9 (diff)
downloadcpython-git-e6390a15033b9a93d345338d06b220542687b3fd.tar.gz
Adds the hashlib.algorithms attribute. See issue7418.
-rw-r--r--Doc/library/hashlib.rst9
-rw-r--r--Lib/hashlib.py4
-rw-r--r--Lib/test/test_hashlib.py5
3 files changed, 17 insertions, 1 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 4e279dea0e..a7f24d258b 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -74,6 +74,15 @@ Using :func:`new` with an algorithm provided by OpenSSL:
>>> h.hexdigest()
'cc4a5ce1b3df48aec5d22d1f16b894a0b894eccc'
+This module provides the following constant attribute:
+
+.. data:: hashlib.algorithms
+
+ A tuple providing the names of the hash algorithms guaranteed to be
+ supported by this module.
+
+ .. versionadded:: 2.7
+
The following values are provided as constant attributes of the hash objects
returned by the constructors:
diff --git a/Lib/hashlib.py b/Lib/hashlib.py
index 5ecca2bf63..48f2cfddbd 100644
--- a/Lib/hashlib.py
+++ b/Lib/hashlib.py
@@ -58,7 +58,9 @@ More condensed:
# always available algorithm is added.
__always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512')
-__all__ = __always_supported + ('new',)
+algorithms = __always_supported
+
+__all__ = __always_supported + ('new', 'algorithms')
def __get_builtin_constructor(name):
diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py
index 6ef55577f7..8710dd6121 100644
--- a/Lib/test/test_hashlib.py
+++ b/Lib/test/test_hashlib.py
@@ -102,6 +102,11 @@ class HashLibTestCase(unittest.TestCase):
c = cons(a)
c.hexdigest()
+ def test_algorithms_attribute(self):
+ self.assertEqual(hashlib.algorithms,
+ tuple([_algo for _algo in self.supported_hash_names if
+ _algo.islower()]))
+
def test_unknown_hash(self):
try:
hashlib.new('spam spam spam spam spam')