Metadata-Version: 2.1
Name: sha256bit
Version: 0.0.5
Summary: SHA256 with bit granularity for message input length
Project-URL: Homepage, https://github.com/sebastien-riou/sha256bit
Project-URL: Bug Tracker, https://github.com/sebastien-riou/sha256bit/issues
Author: Sebastien Riou
License-File: LICENSE
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# sha256bit
SHA256 with bit granularity for message input length.

## Usage

    >>> from sha256bit import sha256bit
    >>> sha256bit(inbits,bitlen=len(inbits)).hexdigest()
    'bd4f9e98beb68c6ead3243b1b4c7fed75fa4feaab1f84795cbd8a98676a2a375'
    
## Build the package
````
python3 -m build
````

## Test
Tests can run without creating/installing the package:
````
python3 -m test.test
````
