pub trait SignatureBitStringEncoding {
// Required method
fn to_bitstring(&self) -> Result<BitString, Error>;
}Expand description
Returns the BitString encoding of the signature.
X.509 and CSR structures require signatures to be BitString encoded.
Required Methods§
Sourcefn to_bitstring(&self) -> Result<BitString, Error>
fn to_bitstring(&self) -> Result<BitString, Error>
BitString encoding for this signature.
Implementations on Foreign Types§
Source§impl<C> SignatureBitStringEncoding for Signature<C>
Available on crate feature alloc only.
impl<C> SignatureBitStringEncoding for Signature<C>
Available on crate feature
alloc only.