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:
UdjinM6 2019-11-11 15:59:14 +03:00 committed by thephez
parent 5660fcdd27
commit 41fc2c9413
6 changed files with 27 additions and 28 deletions

View file

@ -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)