Update musig.md

Use monospaced font for math expressions
This commit is contained in:
Janus Troelsen 2019-02-18 16:30:31 +01:00 committed by GitHub
parent 9125c16622
commit 792d504315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,11 +31,11 @@ To produce a multisignature `(s, R)` on a message `m` using verification key
other participant. The recipients check that each `R_i` is consistent with
the previously-communicated hash.
3. Each participant computes a combined nonce
R = sum_i R_i
`R = sum_i R_i`
and shared challenge
e = H(R || P || m)
`e = H(R || P || m)`
and partial signature
s_i = k_i + µ_i*x_i*e
`s_i = k_i + µ_i*x_i*e`
where `x_i` is the secret key corresponding to `P_i`.
The complete signature is then the `(s, R)` where `s = sum_i s_i` and `R = sum_i R_i`.