mirror of
https://github.com/seigler/dips
synced 2025-07-27 01:36:14 +00:00
A few (mostly trivial) updates (#54)
* Drop quorumMinMemberAge from LLMQ init phase * Clarify that "hash" is "SHA256" in multiple cases * Switch few quotes to apostrophes
This commit is contained in:
parent
5660fcdd27
commit
41fc2c9413
6 changed files with 27 additions and 28 deletions
|
@ -84,11 +84,11 @@ The following operations are possible in the BLS signature scheme. Inside Dash,
|
|||
|
||||
### Sign(secretKey, messageHash, publicKey)
|
||||
|
||||
Creates a signature using the secret key and Hash(messageHash, publicKey). Hashing the concatenation of the messageHash and the public key is done to ensure uniqueness of the actually signed message and serves as a protection against the rogue public key attack.
|
||||
Creates a signature using the secret key and `SHA256(messageHash, publicKey)`. Hashing the concatenation of the messageHash and the public key is done to ensure uniqueness of the actually signed message and serves as a protection against the rogue public key attack.
|
||||
|
||||
### Verify(sig, messageHash, publicKey)
|
||||
|
||||
Verifies the given signature against the public key and Hash(messageHash, publicKey)..
|
||||
Verifies the given signature against the public key and `SHA256(messageHash, publicKey)`.
|
||||
|
||||
### VerifyAggregated(aggregatedSig, messageHashes, publicKeys)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue