Enumeration BLOCKCHAIN_SIG_TYPE

Description

Type of signature to be generated.

Property

DER signature, in the format v || DER. SECG!SEC1 strict DER with low S as described in BIP62/66, BIP146, EIP2. With 'v' having a size of 1 byte. 'v' is the parity bit of 'r' and can have the values 0 or 1.

Property

RAW signature, in the format v || r || s. With 'v' having a size of 1 byte and 'r' and 's' each having a size of 32 bytes. 'v' is the parity bit of 'r' and can have the values 0 or 1.

Property

Signature BIP340 - Schnorr 64 bytes.

Property

RFC-6979 standard deterministic ECDSA signature. DER type in the format v || DER, with 'v' having a size of 1 byte. 'v' is the parity bit of 'r' and can have the values 0 or 1

Property

RFC-6979 standard deterministic ECDSA signature. RAW type in the format v || r || s, with 'v' having a size of 1 byte and 'r' and 's' each having a size of 32 bytes. 'v' is the parity bit of 'r' and can have the values 0 or 1.

Enumeration Members

SIG_BIP340: 3
SIG_DER_ECDSA: 1
SIG_DER_RFC_6979_ECDSA: 4
SIG_RAW_ECDSA: 2
SIG_RAW_RFC_6979_ECDSA: 5