Trait coins_bip32::ecdsa::signature::SignatureEncoding

source ·
pub trait SignatureEncoding:
    Sized
    + Clone
    + for<'a> TryFrom<&'a [u8]>
    + TryInto<Self::Repr> {
    type Repr: 'static + AsRef<[u8]> + Clone + Send + Sync;

    // Provided methods
    fn to_bytes(&self) -> Self::Repr { ... }
    fn to_vec(&self) -> Vec<u8> { ... }
    fn encoded_len(&self) -> usize { ... }
}
Expand description

Support for decoding/encoding signatures as bytes.

Required Associated Types§

source

type Repr: 'static + AsRef<[u8]> + Clone + Send + Sync

Byte representation of a signature.

Provided Methods§

source

fn to_bytes(&self) -> Self::Repr

Encode signature as its byte representation.

source

fn to_vec(&self) -> Vec<u8>

Encode signature as a byte vector.

source

fn encoded_len(&self) -> usize

Get the length of this signature when encoded.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SignatureEncoding for Signature

source§

impl<C> SignatureEncoding for Signature<C>

§

type Repr = Box<[u8]>

source§

fn to_vec(&self) -> Vec<u8>

source§

impl<C> SignatureEncoding for Signature<C>

source§

impl<C> SignatureEncoding for SignatureWithOid<C>

NOTE: this implementation assumes the default digest for the given elliptic curve as defined by hazmat::DigestPrimitive.

When working with alternative digests, you will need to use e.g. SignatureWithOid::new_with_digest.

Implementors§