Secure hashes and message digests
Project description
Introduction
This module implements a common interface to many different secure hash and message digest algorithms. Included are the FIPS secure hash algorithms SHA1, SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA’s MD5 algorithm (defined in Internet RFC 1321).
The SHA1 algorithm is not supported by the CircuitPython module.
This library is based on the work performed in the micropython-lib hashlib module by Paul Sokolovsky
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-hashlib
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-hashlib
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-hashlib
Usage Example
import adafruit_hashlib as hashlib
m = hashlib.sha256()
m.update(b"CircuitPython")
print("Msg Hex Digest: {}\nMsg Digest Size: {}\nMsg Block Size: {}".format(
m.hexdigest(), m.digest_size, m.block_size))
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for adafruit_circuitpython_hashlib-1.4.16.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9084860d379c2395460cd6fb715fdcbe3057cb80ff17dbd6e374e43d5d6c2a4 |
|
MD5 | bd04a12f985612c623b4ad9db2704a45 |
|
BLAKE2b-256 | ea24a30c9ec8ef9ab8616eb10a0616d31eb3202de9832836c58c6f34b3b9858f |
Hashes for adafruit_circuitpython_hashlib-1.4.16-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 914c2e44a3c169461d572b5f98c40bf5dffddcbb594e189a7f36abc098cf7cb8 |
|
MD5 | 98891511d5fc2871af46aef50f13cc62 |
|
BLAKE2b-256 | ab67629fab77312e7518c43759678871b880fa133bf4a6ef5c926c9c2e05e5c1 |