# Functions
Argon2i uses Argon2i variant to derive the given password.
Argon2id uses Argon2id variant to derive the given password.
Bcrypt uses bcrypt to derive the given password.
Compare compares the password with the given PHC encoded hash, returns true if they match.
CompareString compares the given password with the given PHC encoded hash, returns true if they match.
Scrypt uses scrypt-32768 to derive the given password.
# Variables
Argon2MaxIterations is the maximum number of iterations to run.
Argon2MaxMemory indicates the maximum amount of memory that Argon2 KDFs can support.
Argon2MaxParallelism is the maximum number of threads used.
ScryptMaxBlockSize is the maximum value for r.
ScryptMaxCost the maximum value for ln.
ScryptMaxParallelism is the maximum value for p.
# Type aliases
KDF is the type that all the key derivation functions implements.