Skip to content

Commit fc16eb3

Browse files
committedJan 20, 2025
simplpedpop: remove unused aux_rand parameter from pop_prove
1 parent 775d20f commit fc16eb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/chilldkg_ref/simplpedpop.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def pop_msg(idx: int) -> bytes:
3535
return idx.to_bytes(4, byteorder="big")
3636

3737

38-
def pop_prove(seckey: bytes, idx: int, aux_rand: bytes = 32 * b"\x00") -> Pop:
38+
def pop_prove(seckey: bytes, idx: int) -> Pop:
3939
sig = schnorr_sign(
4040
pop_msg(idx), seckey, aux_rand=random_bytes(32), tag_prefix=POP_MSG_TAG
4141
)

0 commit comments

Comments
 (0)
Please sign in to comment.