Trait spki::AssociatedAlgorithmIdentifier
source · pub trait AssociatedAlgorithmIdentifier {
type Params: Tagged + EncodeValue;
const ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params>;
}
Expand description
Returns AlgorithmIdentifier
associated with the structure.
This is useful for e.g. keys for digital signature algorithms.
Required Associated Types§
sourcetype Params: Tagged + EncodeValue
type Params: Tagged + EncodeValue
Algorithm parameters.
Required Associated Constants§
sourceconst ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params>
const ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params>
AlgorithmIdentifier
for this structure.
Object Safety§
This trait is not object safe.