Skip to main content

DynAssociatedAlgorithmIdentifier

Trait DynAssociatedAlgorithmIdentifier 

Source
pub trait DynAssociatedAlgorithmIdentifier {
    // Required method
    fn algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>;
}
Available on crate feature alloc only.
Expand description

Returns AlgorithmIdentifier associated with the structure.

This is useful for e.g. keys for digital signature algorithms.

Required Methods§

Source

fn algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>

AlgorithmIdentifier for this structure.

§Errors

Returns errors specific to the concrete type which impls this trait.

Implementors§