From 1c53405c0abed977d60e09058c452fa3d1e4ccc1 Mon Sep 17 00:00:00 2001 From: brentru Date: Tue, 20 Aug 2019 10:42:44 -0400 Subject: [PATCH 1/2] lcase md5 --- adafruit_hashlib/_md5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_hashlib/_md5.py b/adafruit_hashlib/_md5.py index ef61e0a..acd4d7c 100644 --- a/adafruit_hashlib/_md5.py +++ b/adafruit_hashlib/_md5.py @@ -27,7 +27,7 @@ * Author(s): Brent Rubell """ # pylint: disable=too-few-public-methods -class MD5(): +class md5(): """RSA MD5 Algorithm class.""" def __init__(self, s=None): raise NotImplementedError("MD5 digests not currently implemented in this module.") From 1268614d63584914d74c8d0b8c5e0fba768b7d67 Mon Sep 17 00:00:00 2001 From: brentru Date: Tue, 20 Aug 2019 10:59:25 -0400 Subject: [PATCH 2/2] disable invalid name for lcase module --- adafruit_hashlib/_md5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_hashlib/_md5.py b/adafruit_hashlib/_md5.py index acd4d7c..4b597a9 100644 --- a/adafruit_hashlib/_md5.py +++ b/adafruit_hashlib/_md5.py @@ -26,7 +26,7 @@ MD5 Hash Algorithm. * Author(s): Brent Rubell """ -# pylint: disable=too-few-public-methods +# pylint: disable=too-few-public-methods, invalid-name class md5(): """RSA MD5 Algorithm class.""" def __init__(self, s=None):