pub trait DynSignatureAlgorithmIdentifier {
// Required method
fn signature_algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>;
}
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§
Sourcefn signature_algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>
fn signature_algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>
AlgorithmIdentifier
for the corresponding singature system.
Implementors§
impl<T> DynSignatureAlgorithmIdentifier for Twhere
T: SignatureAlgorithmIdentifier,
Available on crate feature
alloc
only.