We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The HKDF info parameter was changed in the BLS draft v2 as mentioned in ethereum/EIPs#2337 (comment)
info
Current
1. PRK = HKDF-Extract("BLS-SIG-KEYGEN-SALT-", IKM) 2. OKM = HKDF-Expand(PRK, "", L) 3. SK = OS2IP(OKM) mod r 4. return SK
nim-blscurve/blscurve/bls_signature_scheme.nim
Lines 546 to 549 in 4f87e74
Target
1. PRK = HKDF-Extract("BLS-SIG-KEYGEN-SALT-", IKM || I2OSP(0, 1)) 2. OKM = HKDF-Expand(PRK, key_info || I2OSP(L, 2), L) 3. SK = OS2IP(OKM) mod r 4. return SK
The text was updated successfully, but these errors were encountered:
Closed by #65
Sorry, something went wrong.
No branches or pull requests
The HKDF
info
parameter was changed in the BLS draft v2 as mentioned in ethereum/EIPs#2337 (comment)Current
nim-blscurve/blscurve/bls_signature_scheme.nim
Lines 546 to 549 in 4f87e74
Target
The text was updated successfully, but these errors were encountered: