| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Support for Schnorr signatures and integration in SignatureCheckers (BIP 340) | Pieter Wuille | 2020-10-12 | 1 | -5/+13 |
| | | | | | | | This enables the schnorrsig module in libsecp256k1, adds the relevant types and functions to src/pubkey, as well as in higher-level `SignatureChecker` classes. The (verification side of the) BIP340 test vectors is also added. | ||||
| * | scripted-diff: put ECDSA in name of signature functions | Pieter Wuille | 2020-10-06 | 1 | -1/+1 |
| | | | | | | | | | | | | In preparation for adding Schnorr versions of `CheckSig`, `VerifySignature`, and `ComputeEntry`, give them an ECDSA specific name. -BEGIN VERIFY SCRIPT- sed -i 's/CheckSig(/CheckECDSASignature(/g' $(git grep -l CheckSig ./src) sed -i 's/VerifySignature(/VerifyECDSASignature(/g' $(git grep -l VerifySignature ./src) sed -i 's/ComputeEntry(/ComputeEntryECDSA(/g' $(git grep -l ComputeEntry ./src) -END VERIFY SCRIPT- | ||||
| * | tests: Add fuzzing harness for functions in script/sigcache.h | practicalswift | 2020-05-30 | 1 | -0/+45 |