pub trait DynAssociatedAlgorithmIdentifier {
// Required method
fn algorithm_identifier(&self) -> Result<AlgorithmIdentifier<Any>, Error>;
}
Available on crate features
pkcs8
and alloc
only.Expand description
Returns AlgorithmIdentifier
associated with the structure.
This is useful for e.g. keys for digital signature algorithms.
Required Methods§
fn algorithm_identifier(&self) -> Result<AlgorithmIdentifier<Any>, Error>
fn algorithm_identifier(&self) -> Result<AlgorithmIdentifier<Any>, Error>
AlgorithmIdentifier
for this structure.