BIP-341: Define c[0] as leaf version plus pubkey parity bit #1329

pull david-bakin wants to merge 2 commits into bitcoin:master from david-bakin:bip-341-define-leaf-version-plus-parity changing 1 files +5 −3
  1. david-bakin commented at 5:04 pm on June 6, 2022: none

    Add explicit definition of c[0] as the leaf version and the public key parity bit.

    Prior to this change that interesting fact is only implicit in the code of taproot_tweak_pubkey and taproot_sign_script. Making it explicit will help reader understanding of the control block and the script validation rules.

  2. luke-jr added the label Proposed BIP modification on Jul 25, 2022
  3. luke-jr commented at 9:28 pm on July 25, 2022: member
  4. in bip-0341.mediawiki:71 in c7247e43be outdated
    65@@ -66,8 +66,10 @@ The following rules only apply when such an output is being spent. Any other out
    66 * If there are at least two witness elements left, script path spending is used:
    67 ** Call the second-to-last stack element ''s'', the script.
    68 ** The last stack element is called the control block ''c'', and must have length ''33 + 32m'', for a value of ''m'' that is an integer between 0 and 128<ref>'''Why is the Merkle path length limited to 128?''' The optimally space-efficient Merkle tree can be constructed based on the probabilities of the scripts in the leaves, using the Huffman algorithm. This algorithm will construct branches with lengths approximately equal to ''log<sub>2</sub>(1/probability)'', but to have branches longer than 128 you would need to have scripts with an execution chance below 1 in ''2<sup>128</sup>''. As that is our security bound, scripts that truly have such a low chance can probably be removed entirely.</ref>, inclusive. Fail if it does not have such a length.
    69+** Let ''c[0]'' be the ''control byte'' consisting of:
    70+*** Let ''v = c[0] & 0xfe'' and call it the ''leaf version''<ref>'''What constraints are there on the leaf version?''' First, the leaf version cannot be odd as ''c[0] & 0xfe'' will always be even, and cannot be ''0x50'' as that would result in ambiguity with the annex. In addition, in order to support some forms of static analysis that rely on being able to identify script spends without access to the output being spent, it is recommended to avoid using any leaf versions that would conflict with a valid first byte of either a valid P2WPKH pubkey or a valid P2WSH script (that is, both ''v'' and ''v | 1'' should be an undefined, invalid or disabled opcode or an opcode that is not valid as the first opcode). The values that comply to this rule are the 32 even values between ''0xc0'' and ''0xfe'' and also ''0x66'', ''0x7e'', ''0x80'', ''0x84'', ''0x96'', ''0x98'', ''0xba'', ''0xbc'', ''0xbe''. Note also that this constraint implies that leaf versions should be shared amongst different witness versions, as knowing the witness version requires access to the output being spent.</ref>.
    71+*** Let ''ppar = c[0] & 0x01'' and call it the ''public key parity''<ref>'''What is the public key parity?''' The encoding of whether the ''y''-coordinate of the EC point is even or odd, in the standard way that compressed keys are formed. See also the return value of <code>taproot_tweak_pubkey</code>.</ref>
    


    jonasnick commented at 1:04 pm on July 27, 2022:

    “public key parity” sounds a bit imprecise and we don’t use it anywhere. Instead we mostly refer to it as “parity of the public key’s Y coordinate”. How about we make the name of the constant more explicit, don’t give it an informal name, explain what it’s used for exactly and drop the footnote.

    0Let ''pyparity = c[0] & 0x01'' which indicates the parity of the Y coordinate of point ''Q'' (defined below).
    

    david-bakin commented at 5:57 pm on July 27, 2022:
    Done. (Although I didn’t add “defined below”, ok?)

    jonasnick commented at 3:20 pm on August 16, 2022:
    ok
  5. jonasnick commented at 1:04 pm on July 27, 2022: contributor
    Concept ACK for defining the term control byte. The BIP already uses this without a definition.
  6. BIP341: Define c[0] = leaf version + pubkey parity
    Add explicit definition of _c[0]_ as the _leaf version_ and the public
    key _parity bit_.
    
    Prior to this change that interesting fact is only implicit in the code
    of `taproot_tweak_pubkey` and `taproot_sign_script`.  Making it explicit
    will help reader understanding of the control block and the script
    validation rules.
    1fccbd914d
  7. david-bakin force-pushed on Jul 27, 2022
  8. Address PR comment
    - Give a proper (short) descriptive name to the public key parity bit and
      just describe it inline.
    55fdf3cb1a
  9. jonasnick commented at 3:20 pm on August 16, 2022: contributor
    Looks good, feel free to squash
  10. murchandamus commented at 8:19 pm on April 26, 2024: contributor
    @sipa, @jonasnick, @ajtowns: Am I understanding right that you would like this to be merged?
  11. in bip-0341.mediawiki:69 in 55fdf3cb1a
    65@@ -66,8 +66,10 @@ The following rules only apply when such an output is being spent. Any other out
    66 * If there are at least two witness elements left, script path spending is used:
    67 ** Call the second-to-last stack element ''s'', the script.
    68 ** The last stack element is called the control block ''c'', and must have length ''33 + 32m'', for a value of ''m'' that is an integer between 0 and 128<ref>'''Why is the Merkle path length limited to 128?''' The optimally space-efficient Merkle tree can be constructed based on the probabilities of the scripts in the leaves, using the Huffman algorithm. This algorithm will construct branches with lengths approximately equal to ''log<sub>2</sub>(1/probability)'', but to have branches longer than 128 you would need to have scripts with an execution chance below 1 in ''2<sup>128</sup>''. As that is our security bound, scripts that truly have such a low chance can probably be removed entirely.</ref>, inclusive. Fail if it does not have such a length.
    69+** Let ''c[0]'' be the ''control byte'' consisting of:
    


    vostrnad commented at 8:32 pm on April 26, 2024:
    0** Let ''c[0]'' be the ''control byte''.
    

    “Consisting of” doesn’t go well with the bullet points that follow.


    david-bakin commented at 9:20 pm on April 26, 2024:

    How about:

    Let c[0] be the control byte consisting of fields v and pyparity:


    vostrnad commented at 9:24 pm on April 26, 2024:
    That doesn’t work because v is not a subfield of the control byte but the entire control byte with the lowest bit masked off.

    david-bakin commented at 9:31 pm on April 26, 2024:

    Ok, I see what you mean.

    Let c[0] be the control byte encoding v and pyparity:

  12. in bip-0341.mediawiki:71 in 55fdf3cb1a
    65@@ -66,8 +66,10 @@ The following rules only apply when such an output is being spent. Any other out
    66 * If there are at least two witness elements left, script path spending is used:
    67 ** Call the second-to-last stack element ''s'', the script.
    68 ** The last stack element is called the control block ''c'', and must have length ''33 + 32m'', for a value of ''m'' that is an integer between 0 and 128<ref>'''Why is the Merkle path length limited to 128?''' The optimally space-efficient Merkle tree can be constructed based on the probabilities of the scripts in the leaves, using the Huffman algorithm. This algorithm will construct branches with lengths approximately equal to ''log<sub>2</sub>(1/probability)'', but to have branches longer than 128 you would need to have scripts with an execution chance below 1 in ''2<sup>128</sup>''. As that is our security bound, scripts that truly have such a low chance can probably be removed entirely.</ref>, inclusive. Fail if it does not have such a length.
    69+** Let ''c[0]'' be the ''control byte'' consisting of:
    70+*** Let ''v = c[0] & 0xfe'' and call it the ''leaf version''<ref>'''What constraints are there on the leaf version?''' First, the leaf version cannot be odd as ''c[0] & 0xfe'' will always be even, and cannot be ''0x50'' as that would result in ambiguity with the annex. In addition, in order to support some forms of static analysis that rely on being able to identify script spends without access to the output being spent, it is recommended to avoid using any leaf versions that would conflict with a valid first byte of either a valid P2WPKH pubkey or a valid P2WSH script (that is, both ''v'' and ''v | 1'' should be an undefined, invalid or disabled opcode or an opcode that is not valid as the first opcode). The values that comply to this rule are the 32 even values between ''0xc0'' and ''0xfe'' and also ''0x66'', ''0x7e'', ''0x80'', ''0x84'', ''0x96'', ''0x98'', ''0xba'', ''0xbc'', ''0xbe''. Note also that this constraint implies that leaf versions should be shared amongst different witness versions, as knowing the witness version requires access to the output being spent.</ref>.
    71+*** Let ''pyparity = c[0] & 0x01'', the parity of the Y coordinate of point ''Q''.
    


    vostrnad commented at 8:32 pm on April 26, 2024:

    Q is used here before it’s defined, and it doesn’t make sense to include it in the definition of pyparity since we only check later whether it’s the parity of the Y coordinate of Q.

    Also, what is “pyparity” supposed to mean? Why not tweak_parity or just parity?


    david-bakin commented at 9:27 pm on April 26, 2024:

    “pyparity” was suggested above and I think was to suggest “public-key’s y-parity”.

    A naked “parity” seems too generic. “tweak_parity” seems a bit incomplete as a shorthand for “tweaked_public_key’s_parity”. ??

  13. murchandamus added the label Pending acceptance on May 8, 2024
  14. murchandamus added the label PR Author action required on May 8, 2024
  15. murchandamus removed the label Pending acceptance on May 8, 2024
  16. murchandamus commented at 3:38 pm on May 31, 2024: contributor
    Hey, is there any update on this, @david-bakin?
  17. 5twelve approved
  18. murchandamus commented at 8:23 pm on November 14, 2024: contributor
    @sipa, @jonasnick, @ajtowns, @david-bakin: This pull request seems to have been stuck for over six months. Is anyone still working on this?

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bips. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-21 12:10 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me