18 lines
468 B
Python
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."
|
|
)
|