namespace System.Security.Cryptography
{
///
/// The type of Argon2 hashing algorithm to use.
///
public enum Argon2Type
{
///
/// The memory access is dependent upon the hash value (vulnerable to side-channel attacks)
///
Argon2d = 0,
///
/// The memory access is independent upon the hash value (safe from side-channel atacks)
///
Argon2i = 1
}
}