pub trait SignatureAlgorithmIdentifier {
    type Params: Tagged + EncodeValue;

    const SIGNATURE_ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params>;
}
Expand description

Returns AlgorithmIdentifier associated with the signature system.

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

Required Associated Types§

source

type Params: Tagged + EncodeValue

Algorithm parameters.

Required Associated Constants§

source

const SIGNATURE_ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params>

AlgorithmIdentifier for the corresponding singature system.

Object Safety§

This trait is not object safe.

Implementors§