Crate ecdsa_verify

Source
Expand description

ECDSA Signature verification algorithm implemented in Rust

This code is based on v2.2.0 of the starkbank-ecdsa Python library developed by Star Bank Star Bank.

Structs§

EcdsaCurve
A struct representing the parameters of an elliptic curve used in ECDSA.
EcdsaSignature
A struct representing an ECDSA signature with r and s components.
Point3D
A struct representing a point in 3D space for elliptic curve operations.

Functions§

secp256k1
Returns the parameters for the secp256k1 elliptic curve.
secp256r1
Returns the parameters for the secp256r1 elliptic curve.
verify
Verifies an ECDSA signature against a given message hash and public key.