SHA256 with bit granularity for message input length
Project description
sha256bit
| CI/CD | |
| Package | |
| Meta |
Pure python implementation of SHA256 with features which are often lacking:
- bit granularity for message input length
- import/export API to "persist" the state in the middle of a hash computation
User documentation is hosted on readthedocs.
Installation
python3 -m pip install sha256bit
Usage
One liner
>>> from sha256bit import Sha256bit
>>> Sha256bit("abc".encode()).hexdigest()
'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad'
Bit length capability
>>> from sha256bit import Sha256bit
>>> Sha256bit(b'\x00',bitlen=1).hexdigest()
'bd4f9e98beb68c6ead3243b1b4c7fed75fa4feaab1f84795cbd8a98676a2a375'
Import/export
>>> from sha256bit import Sha256bit
>>> h1 = Sha256bit("a".encode())
>>> state = h1.export_state()
>>> h2 = Sha256bit.import_state(state)
>>> h2.update("bc".encode())
>>> h2.hexdigest()
'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad'
Test with pytest
pytest-3
Test without pytest
Tests can run without creating/installing the package:
python3 -m test.test
you can also run each test separately:
python3 -m test.test_api
python3 -m test.test_cavp
python3 -m test.test_hardcoded
python3 -m test.test_vs_hashlib
Generate the doc
cd docs
pipenv shell
make clean doctest html
Build the package
Build is done using hatchling. The script build allows to build for different version of python3:
./build python3.9
Create a new version
Version is managed by hatch-vcs, you just need to create a tag in github.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sha256bit-0.0.10.tar.gz.
File metadata
- Download URL: sha256bit-0.0.10.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2344f0919878c49ac64d307d1137a8403ec0bfccf45134008909ab5488a0a18
|
|
| MD5 |
f1a17c2ce5b2f63ed25fbdcd582038ca
|
|
| BLAKE2b-256 |
18d26dcfa6082ee3804af06f0b5b490e97d7dd3b967b5ebbed91f35a37c3912b
|
File details
Details for the file sha256bit-0.0.10-py3-none-any.whl.
File metadata
- Download URL: sha256bit-0.0.10-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a34e1e7be63402eab0a1c1878831479a9fd1f4313e04b78af87283f98a6f1ad3
|
|
| MD5 |
aecf0b417f2942012377a4db93b3f6b7
|
|
| BLAKE2b-256 |
cbbad6a5505e8815b975a8a77eaa2e8a5c0d9a4dc8a2a847464492cfe2147b4a
|