13 lines
319 B
Python
13 lines
319 B
Python
# SPDX-FileCopyrightText: 2017 Paul Sokolovsky
|
|
# SPDX-FileCopyrightText: 2019 Brent Rubell for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
`_sha256.py`
|
|
======================================================
|
|
SHA224 Hash Algorithm
|
|
* Author(s): Paul Sokolovsky, Brent Rubell
|
|
"""
|
|
|
|
from ._sha256 import sha224
|