Adding support for Whirlpool and RIPEMD-160 hashing and refactoring modules #13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for two new hashing algorithms, Whirlpool and RIPEMD-160, and includes updates to the documentation, dependencies, and tests to reflect these additions.
New Hashing Algorithms:
WhirlpoolHasher
andRipemd160Hasher
classes for Whirlpool and RIPEMD-160 algorithms respectively. [1] [2]Documentation Updates:
README.md
to include Whirlpool and RIPEMD-160 in the list of supported hashing algorithms and provided installation instructions for the new algorithms. [1] [2] [3]Dependency Management:
pycryptodome
as an optional dependency for the new hashing algorithms inpyproject.toml
.Codebase Adjustments:
src/hash_forge/__init__.py
to include the new hashers in the__all__
list and import statements. [1] [2]src/hash_forge/scrypt_hasher.py
tosrc/hash_forge/hashers/scrypt_hasher.py
and updated import statements accordingly. [1] [2]Test Enhancements:
test_ripemd160.py
for RIPEMD-160 hasher and updated existing tests to use the new import paths. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]