-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added support for 64 bytes pvk #97
Conversation
WalkthroughThe pull request adds two test functions to the KLV module to verify that key generation works correctly for both 32-byte and 64-byte private keys. It checks that the public key and corresponding address generated meet expected criteria. Additionally, the private_key_from_vec function in the util module is modified to slice input vectors longer than the expected length instead of returning an error, adjusting its error handling behavior. Changes
Sequence Diagram(s)sequenceDiagram
participant Caller as User
participant Func as private_key_from_vec
Caller->>Func: Provide input vector (vec)
Func->>Func: Check if length of vec > N
alt Length > N
Func-->>Caller: Return first N bytes as slice
else
Func-->>Caller: Return vec as is
end
Suggested labels
Suggested reviewers
Poem
Tip 🌐 Web search-backed reviews and chat
Warning Review ran into problems🔥 ProblemsErrors were encountered while retrieving linked issues. Errors (1)
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (3)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Summary by CodeRabbit