Enum djangohashers::Algorithm [] [src]

pub enum Algorithm {
    PBKDF2,
    PBKDF2SHA1,
    Argon2,
    BCryptSHA256,
    BCrypt,
    SHA1,
    MD5,
    UnsaltedSHA1,
    UnsaltedMD5,
    Crypt,
}

Algorithms available to use with Hashers.

Variants

PBKDF2 key-derivation function with the SHA256 hashing algorithm.

PBKDF2 key-derivation function with the SHA1 hashing algorithm.

Argon2 key-derivation function.

Bcrypt key-derivation function with the password padded with SHA256.

Bcrypt key-derivation function without password padding.

SHA1 hashing function over the salted password.

MD5 hashing function over the salted password.

SHA1 hashing function with no salting.

MD5 hashing function with no salting.

UNIX's crypt(3) hashing algorithm.

Trait Implementations

impl PartialEq for Algorithm
[src]

[src]

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

1.0.0
[src]

This method tests for !=.