Hash Forge is a lightweight Python library designed to simplify the process of hashing and verifying data using a variety of secure hashing algorithms.
Project description
Hash Forge
Hash Forge is a lightweight Python library designed to simplify the process of hashing and verifying data using a variety of secure hashing algorithms.
Overview
Hash Forge is a flexible and secure hash management tool that supports multiple hashing algorithms. This tool allows you to hash and verify data using popular hash algorithms, making it easy to integrate into projects where password hashing or data integrity is essential.
Features
- Multiple Hashing Algorithms: Supports bcrypt, Scrypt, Argon2, Blake2, PBKDF2, Whirlpool and RIPEMD-160.
- Hashing and Verification: Easily hash strings and verify their integrity.
- Rehash Detection: Automatically detects if a hash needs to be rehashed based on outdated parameters or algorithms.
- Flexible Integration: Extendible to add new hashing algorithms as needed.
Installation
pip install hash-forge
Optional Dependencies
Hash Forge provides optional dependencies for specific hashing algorithms. To install these, use:
-
bcrypt support:
pip install "hash-forge[bcrypt]"
-
Argon2 support:
pip install "hash-forge[argon2]"
-
Whirlpool and RIPEMD-160 support:
pip install "hash-forge[crypto]"
Usage
Basic Example
from hash_forge import HashManager, PBKDF2Hasher
# Initialize HashManager with PBKDF2Hasher
hash_manager = HashManager(PBKDF2Hasher())
# Hash a string
hashed_value = hash_manager.hash("my_secure_password")
# Verify the string against the hashed value
is_valid = hash_manager.verify("my_secure_password", hashed_value)
print(is_valid) # Outputs: True
# Check if the hash needs rehashing
needs_rehash = hash_manager.needs_rehash(hashed_value)
print(needs_rehash) # Outputs: False
Note: The first hasher provided during initialization of
HashManager
will be the preferred hasher used for hashing operations, though any available hasher can be used for verification.
Hashers
Currently supported hashers:
- PBKDF2 (default)
- bcrypt
- Argon2
- Scrypt
- Blake2
- Whirlpool
- RIPEMD-160
You can initialize HashManager
with one or more hashers:
from hash_forge import (
HashManager,
PBKDF2Sha256Hasher,
BCryptSha256Hasher,
Argon2Hasher,
ScryptHasher,
Ripemd160Hasher,
Blake2Hasher,
WhirlpoolHasher,
)
hash_manager = HashManager(
PBKDF2Sha256Hasher(iterations=150_000),
BCryptSha256Hasher(),
Argon2Hasher(),
ScryptHasher(),
Ripemd160Hasher(),
Blake2Hasher('MySecretKey'),
WhirlpoolHasher(),
)
Verifying a Hash
Use the verify
method to compare a string with its hashed counterpart:
is_valid = hash_manager.verify("my_secure_password", hashed_value)
Checking for Rehashing
You can check if a hash needs to be rehashed (e.g., if the hashing algorithm parameters are outdated):
needs_rehash = hash_manager.needs_rehash(hashed_value)
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests to help improve the project.
License
This project is licensed under the MIT License.
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
File details
Details for the file hash_forge-1.2.0.tar.gz
.
File metadata
- Download URL: hash_forge-1.2.0.tar.gz
- Upload date:
- Size: 28.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.29
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efedfd1b13209ad4c598684c22d37c10944fc4f3ba43225d533f5516e08beacc |
|
MD5 | 969b92fd430242ade84ae105f38af62e |
|
BLAKE2b-256 | a077a87f22fae03fd551cbcb5d0b7669c1f776cd0e6928f6d783a389f8da1885 |
File details
Details for the file hash_forge-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: hash_forge-1.2.0-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.29
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c4b707e0c4609e05047641f71d6424cffdb112f6e377bca3b9c49675b0a57ec |
|
MD5 | e2f32fa381cf87001084ed2259be30b5 |
|
BLAKE2b-256 | 24ee7fa798fbb2d70134d60715ac114adf9351d963830b33daf876d7fe37277b |