How to use the tiny-secp256k1.verify function in tiny-secp256k1

To help you get started, we’ve selected a few tiny-secp256k1 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bitcoinjs / bitcoinjs-lib / ts_src / ecpair.ts View on Github external
verify(hash: Buffer, signature: Buffer): boolean {
    return ecc.verify(hash, this.publicKey, signature);
  }
}
github bitcoinjs / bip32 / src / bip32.js View on Github external
verify(hash, signature) {
        return ecc.verify(hash, this.publicKey, signature);
    }
}
github bitcoinjs / bip32 / ts-src / bip32.ts View on Github external
verify(hash: Buffer, signature: Buffer): boolean {
    return ecc.verify(hash, this.publicKey, signature);
  }
}
github coreyphillips / rn-bitcoinjs-lib / src / ecpair.js View on Github external
verify(hash, signature) {
    return ecc.verify(hash, this.publicKey, signature);
  }
}