pub trait SignatureBitStringEncoding {
    // Required method
    fn to_bitstring(&self) -> Result<BitString>;
}
Available on crate feature alloc only.
Expand description

Returns the BitString encoding of the signature.

X.509 and CSR structures require signatures to be BitString encoded.

Required Methods§

source

fn to_bitstring(&self) -> Result<BitString>

BitString encoding for this signature.

Implementors§