Skip to content

Commit

Permalink
BIP341: add bip340_aux_rand argument to taproot_sign_key
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusParvin committed Nov 4, 2022
1 parent 6545b81 commit e24f685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bip-0341.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ TapTweak = tagged_hash("TapTweak", p + ABCDE)
'''Spending using the key path''' A Taproot output can be spent with the secret key corresponding to the <code>internal_pubkey</code>. To do so, a witness stack consists of a single element: a [[bip-0340.mediawiki|BIP340]] signature on the signature hash as defined above, with the secret key tweaked by the same <code>h</code> as in the above snippet. See the code below:

<source lang="python">
def taproot_sign_key(script_tree, internal_seckey, hash_type):
def taproot_sign_key(script_tree, internal_seckey, hash_type, bip340_aux_rand):
_, h = taproot_tree_helper(script_tree)
output_seckey = taproot_tweak_seckey(internal_seckey, h)
sig = schnorr_sign(sighash(hash_type), output_seckey)
sig = schnorr_sign(sighash(hash_type), output_seckey, bip340_aux_rand)
if hash_type != 0:
sig += bytes([hash_type])
return [sig]
Expand Down

0 comments on commit e24f685

Please sign in to comment.