Skip to main content

PasswordHashAlgorithmIdentifier

Trait PasswordHashAlgorithmIdentifier 

Source
pub trait PasswordHashAlgorithmIdentifier {
    // Required method
    fn botan_name(&self) -> String;
}
Expand description

A type that identifies a Botan password hashing or password based KDF algorithm.

Required Methods§

Source

fn botan_name(&self) -> String

Return the Botan interface string for this identifier.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl PasswordHashAlgorithmIdentifier for String

Source§

impl PasswordHashAlgorithmIdentifier for str

Source§

impl<T: PasswordHashAlgorithmIdentifier + ?Sized> PasswordHashAlgorithmIdentifier for &T

Implementors§