Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] verifySecp256k1EcdsaSignature #22

Open
wireless90 opened this issue Nov 27, 2023 · 0 comments
Open

[Feat] verifySecp256k1EcdsaSignature #22

wireless90 opened this issue Nov 27, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request Utils Utils methods

Comments

@wireless90
Copy link
Contributor

    /**
     * Verify a Secp256k1Ecdsa signature against a message.
     * @param publicKey A hex-encoded public key.
     * @param signature A hex-encoded signature.
     * @param message A hex-encoded message.
     */
    static verifySecp256k1EcdsaSignature(
        publicKey: HexEncodedString,
        signature: HexEncodedString,
        message: HexEncodedString,
    ): boolean {
        return callUtilsMethod({
            name: 'verifySecp256k1EcdsaSignature',
            data: {
                publicKey,
                signature,
                message,
            },
        });
    }
@wireless90 wireless90 added enhancement New feature or request Utils Utils methods labels Nov 27, 2023
@wireless90 wireless90 self-assigned this Nov 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Utils Utils methods
Projects
None yet
Development

No branches or pull requests

1 participant