-
Notifications
You must be signed in to change notification settings - Fork 167
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
Update golangci-lint workflow #541
Conversation
Happy to approve, but there are some pending issues. Mostly related to the proper usage of |
2b17b7c
to
8146944
Compare
Quality Gate passedIssues Measures |
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.
LGTM !
Thank you so much !
@@ -289,10 +289,11 @@ func mapToPoint(domain []byte, u *gfP) kyber.Point { | |||
// Borrowed from: https://github.com/kilic/bls12-381/blob/master/hash_to_field.go | |||
func expandMsgXmdKeccak256(domain, msg []byte, outLen int) []byte { | |||
h := sha3.NewLegacyKeccak256() | |||
domainLen := uint8(len(domain)) | |||
if domainLen > 255 { | |||
if len(domain) > 255 { |
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.
I'm glad we're doing a v4 ... 😅
No description provided.