[−][src]Function sp_io::crypto::secp256k1_ecdsa_recover_compressed
pub fn secp256k1_ecdsa_recover_compressed(
sig: &[u8; 65],
msg: &[u8; 32]
) -> Result<[u8; 33], EcdsaVerifyError>
Verify and recover a SECP256k1 ECDSA signature.
sig
is passed in RSV format. V should be either 0/1 or 27/28.- returns
Err
if the signature is bad, otherwise the 33-byte compressed pubkey.