-
Notifications
You must be signed in to change notification settings - Fork 498
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
Refactoring crypto code for future reuse. #25148
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #25148 +/- ##
==========================================
+ Coverage 54.30% 63.83% +9.52%
==========================================
Files 1615 1615
Lines 153594 153607 +13
Branches 3987 3987
==========================================
+ Hits 83416 98052 +14636
+ Misses 63296 47753 -15543
- Partials 6882 7802 +920
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
|
||
// GenerateSubjectKeyID generates Subject Key Identifier (SKI) using SHA-256 | ||
// hash of the public key bytes according to RFC 7093 section 2. | ||
func GenerateSubjectKeyID(pub crypto.PublicKey) ([]byte, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haven't fully reviewed, I assume this (and related tests) were just code copied from the old places?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
Refactoring crypto code for future reuse for #24869. No functional changes.