Trait SignatureBitStringEncoding

Source
pub trait SignatureBitStringEncoding {
    // Required method
    fn to_bitstring(&self) -> Result<BitString, Error>;
}
Available on crate feature pkcs8 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, Error>

BitString encoding for this signature.

Implementors§