Merged
Conversation
49120f1 to
ed6667f
Compare
dpajak99
approved these changes
Feb 7, 2025
kronikarz
approved these changes
Feb 7, 2025
804d797 to
bdd7953
Compare
The purpose of this branch is to reimplement Keccak algorithm based on the pointycastle library. This addition enables secure hashing and is essential for supporting Ethereum-related operations, such as transaction validation and signing. List of changes: - created keccak.dart to simplify data absorption, finalization, and output generation using the Keccak sponge construction. This cryptographic algorithm absorbs an arbitrary-length input into an internal state and squeezes out a fixed-length output. Works by iteratively applying a permutation function through controlled input-output mixing. - created keccakf1600.dart to perform transformations on the 1600-bit state, achieving diffusion and mixing of bits across the state - created register64.dart and register64_list.dart to manage the 64-bit lanes and the state matrix of the algorithm
bdd7953 to
c19f09f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The purpose of this branch is to reimplement Keccak algorithm based on the pointycastle library. This addition enables secure hashing and is essential for supporting Ethereum-related operations, such as transaction validation and signing.
List of changes: