pub trait DynSignatureAlgorithmIdentifier {
    // Required method
    fn signature_algorithm_identifier(
        &self
    ) -> Result<AlgorithmIdentifier<Any>, Error>;
}
Available on crate features pkcs8 and alloc only.
Expand description

Returns AlgorithmIdentifier associated with the signature system.

Unlike AssociatedAlgorithmIdentifier this is intended to be implemented for public and/or private keys.

Required Methods§

fn signature_algorithm_identifier( &self ) -> Result<AlgorithmIdentifier<Any>, Error>

AlgorithmIdentifier for the corresponding singature system.

Implementors§