Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
verify(hash: Buffer, signature: Buffer): boolean {
return ecc.verify(hash, this.publicKey, signature);
}
}
verify(hash, signature) {
return ecc.verify(hash, this.publicKey, signature);
}
}
verify(hash: Buffer, signature: Buffer): boolean {
return ecc.verify(hash, this.publicKey, signature);
}
}
verify(hash, signature) {
return ecc.verify(hash, this.publicKey, signature);
}
}