13 lines
320 B
Python
13 lines
320 B
Python
# SPDX-FileCopyrightText: 2017 Paul Sokolovsky
|
|
# SPDX-FileCopyrightText: 2021 Brent Rubell for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
`_sha384.py`
|
|
======================================================
|
|
SHA-384 Hash Algorithm
|
|
* Author(s): Paul Sokolovsky, Brent Rubell
|
|
"""
|
|
|
|
from ._sha512 import sha384
|