From 04925920100d62cf0530c6ae987c64b65a1a9815 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Tue, 12 Feb 2019 14:39:03 +0000 Subject: [PATCH] f replace C by L --- src/modules/musig/musig.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/musig/musig.md b/src/modules/musig/musig.md index 89b79076..aebe20ed 100644 --- a/src/modules/musig/musig.md +++ b/src/modules/musig/musig.md @@ -17,8 +17,8 @@ using the equation where `P_i` is the public key of the `i`th participant and `µ_i` is a so-called _MuSig coefficient_ computed according to the following equation - C = H(P_1 || P_2 || ... || P_n) - µ_i = H(C || i) + L = H(P_1 || P_2 || ... || P_n) + µ_i = H(L || i) where H is a hash function modelled as a random oracle. @@ -61,7 +61,7 @@ by calling `secp256k1_musig_pubkey_combine`. This function takes as input a list of public keys `P_i` in the argument `pubkeys`. It outputs the combined public key `P` in the out-pointer `combined_pk` -and hash `C` in the out-pointer `pk_hash32`, if this pointer is non-NULL. +and hash `L` in the out-pointer `pk_hash32`, if this pointer is non-NULL. ## Signing