On Tue, 16 Mar 2021 at 11:25, David A. Harding via bitcoin-dev < bitcoin-dev@lists.linuxfoundation.org> wrote: > > I curious about whether anyone informed about ECC and QC > knows how to create output scripts with lower difficulty that could be > used to measure the progress of QC-based EC key cracking. E.g., > NUMS-based ECDSA- or taproot-compatible scripts with a security strength > equivalent to 80, 96, and 112 bit security. Hi Dave, This is actually relatively easy if you are willing to use a trusted setup. The trusted party takes a secp256k1 secret key and verifiably encrypt it under a NUMS public key from the weaker group. Therefore if you can crack the weaker group's public key you get the secp256k1 secret key. Camenisch-Damgard[1] cut-and-choose verifiable encryption works here. People then pay the secp256k1 public key funds to create the bounty. As long as the trusted party deletes the secret key afterwards the scheme is secure. Splitting the trusted setup among several parties where only one of them needs to be honest looks doable but would take some engineering and analysis work. [1] https://link.springer.com/content/pdf/10.1007/3-540-44448-3_25.pdf Cheers, LL