pub trait AlgorithmKind {
    // Required method
    fn to_str(&self) -> &'static str;
}
Expand description

Algorithm kind used with hashing facilities.

This can be either a regular HashAlgorithmId (hash function) or MacAlgorithmId (message authentication code).

Required Methods§

source

fn to_str(&self) -> &'static str

Implementors§