Adafruit_CircuitPython_hashlib/adafruit_hashlib/_md5.py
2021-01-14 11:17:59 -05:00

18 lines
468 B
Python

# SPDX-FileCopyrightText: 2019 Brent Rubell for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`_md5.py`
======================================================
MD5 Hash Algorithm.
* Author(s): Brent Rubell
"""
# pylint: disable=too-few-public-methods, invalid-name
class md5:
"""RSA MD5 Algorithm class."""
def __init__(self, s=None):
raise NotImplementedError(
"MD5 digests not currently implemented in this module."
)