[][src]Function secp256k1_abc_sys::secp256k1_ecdsa_recoverable_signature_parse_compact

pub unsafe extern "C" fn secp256k1_ecdsa_recoverable_signature_parse_compact(
    ctx: *const secp256k1_context,
    sig: *mut secp256k1_ecdsa_recoverable_signature,
    input64: *const c_uchar,
    recid: c_int
) -> c_int

Parse a compact ECDSA signature (64 bytes + recovery id).

Returns: 1 when the signature could be parsed, 0 otherwise Args: ctx: a secp256k1 context object Out: sig: a pointer to a signature object In: input64: a pointer to a 64-byte compact signature recid: the recovery id (0, 1, 2 or 3)