diff --git a/README.md b/README.md index 0c4bbb9..92b6d0a 100644 --- a/README.md +++ b/README.md @@ -597,7 +597,8 @@ This function interprets `hostseckey` as big-endian integer, and computes the corresponding "plain" public key in compressed serialization (33 bytes, starting with 0x02 or 0x03). This is the key generation procedure traditionally used in Bitcoin, e.g., for ECDSA. In other words, this -function is equivalent to `IndividualPubkey` as defined in [[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)]. +function is equivalent to `IndividualPubkey` as defined in +[[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)]. TODO Refer to the FROST signing BIP instead, once that one has a number. *Arguments*: diff --git a/python/chilldkg_ref/chilldkg.py b/python/chilldkg_ref/chilldkg.py index 4bcb02b..f153101 100644 --- a/python/chilldkg_ref/chilldkg.py +++ b/python/chilldkg_ref/chilldkg.py @@ -139,7 +139,8 @@ def hostpubkey_gen(hostseckey: bytes) -> bytes: the corresponding "plain" public key in compressed serialization (33 bytes, starting with 0x02 or 0x03). This is the key generation procedure traditionally used in Bitcoin, e.g., for ECDSA. In other words, this - function is equivalent to `IndividualPubkey` as defined in [[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)]. + function is equivalent to `IndividualPubkey` as defined in + [[BIP327](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki#key-generation-of-an-individual-signer)]. TODO Refer to the FROST signing BIP instead, once that one has a number. Arguments: