Change the builtin hash algorithms' names to lower case names

as promised by hashlib's documentation.
This commit is contained in:
Christian Heimes 2013-08-15 18:31:48 +02:00
parent f0e521036c
commit 37d5cebb48
6 changed files with 11 additions and 8 deletions

View file

@ -439,7 +439,7 @@ MD5_get_block_size(PyObject *self, void *closure)
static PyObject *
MD5_get_name(PyObject *self, void *closure)
{
return PyUnicode_FromStringAndSize("MD5", 3);
return PyUnicode_FromStringAndSize("md5", 3);
}
static PyObject *