This commit is contained in:
Ignotus Peverell 2018-06-16 21:06:09 +01:00 committed by GitHub
parent c2a4211660
commit df2d109281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,8 +34,8 @@ We build the challenge `e = SHA256(M | k*G | x*G)`, and the scalar
`s = k + e * x`. The full aggregate signature is then the pair `(s, k*G)`. `s = k + e * x`. The full aggregate signature is then the pair `(s, k*G)`.
The signature can be checked using the public key `x*G`, re-calculating `e` The signature can be checked using the public key `x*G`, re-calculating `e`
using M and `k*G` from the 2nd part of the signature pair and by veryfying using M and `k*G` from the 2nd part of the signature pair and by verifying
that `s`, the first part of the signature pair, verifies: that `s`, the first part of the signature pair, satisfies:
``` ```
s*G = k*G + e * x*G s*G = k*G + e * x*G