pub type DerSignature = Signature<Secp256k1>;
Expand description
ECDSA/secp256k1 signature (ASN.1 DER encoded)
Aliased Type§
struct DerSignature { /* private fields */ }
Implementations
Trait Implementations
Source§impl<C> Encode for Signature<C>
impl<C> Encode for Signature<C>
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided
Writer
.Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
Source§impl<C> PrehashSignature for Signature<C>
impl<C> PrehashSignature for Signature<C>
Source§type Digest = <C as DigestPrimitive>::Digest
type Digest = <C as DigestPrimitive>::Digest
Preferred
Digest
algorithm to use when computing this signature type.