Rewrite tiny doublesha256#1
Open
entropycoset wants to merge 2 commits into
Open
Conversation
Signed-off-by: nullcoset <nullcoset@onet.pl>
Reviewer's GuideThis PR streamlines the double_sha256 function by using a nested SHA-256 call, adds a unit test to verify its output, and broadens compatibility tests with additional invalid address cases. Class diagram for Address double_sha256 refactor and new testclassDiagram
class Address {
+fn double_sha256(data: &[u8]) -> [u8; 32]
}
class tests {
+fn test_calculate_double_sha()
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey @entropycoset - I've reviewed your changes - here's some feedback:
- Consider using the
hexcrate’sencodefunction intest_calculate_double_shainstead of the manualwrite!loop to simplify and clarify the hex formatting. - The one-liner
Sha256::digest(Sha256::digest(data)).into()is concise but adding a brief doc comment or retaining the intermediate variables could improve readability for future maintainers.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider using the `hex` crate’s `encode` function in `test_calculate_double_sha` instead of the manual `write!` loop to simplify and clarify the hex formatting.
- The one-liner `Sha256::digest(Sha256::digest(data)).into()` is concise but adding a brief doc comment or retaining the intermediate variables could improve readability for future maintainers.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
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.
Summary by Sourcery
Simplify the double SHA-256 implementation and improve test coverage for address hashing and validation.
Enhancements:
Tests: