Enum www_authenticate::Algorithm[][src]

pub enum Algorithm {
    Md5,
    Md5Sess,
    Sha512Trunc256,
    Sha512Trunc256Sess,
    Sha256,
    Sha256Sess,
    Other(String),
}

Algorithms used to produce the digest and unkeyed digest.

Variants

MD5

MD5-sess

SHA-512-256

SHA-512-256-sess

SHA-256

SHA-256-sess

other algorithm

Trait Implementations

impl Debug for Algorithm
[src]

Formats the value using the given formatter. Read more

impl Clone for Algorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Algorithm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Algorithm
[src]

impl Hash for Algorithm
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for Algorithm
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Algorithm

impl Sync for Algorithm