Argon2Type Enum
Namespace: Rebex.Security.Cryptography
Assembly: Rebex.Security.dll (version 7.0.9083)
Specifies a variant of the Argon2 algorithm.
Syntax
public enum Argon2Type
Fields
Name | Description |
---|---|
Argon2d | Argon 2 with data-dependent memory addressing. Argon2d is usually faster than other variants, but it is more vulnerable to side-channel attacks. |
Argon2i | Argon 2 with data-independent memory addressing. |
Argon2id | Argon2id uses both data-dependent memory addressing and data-independent memory addressing. This variant of Argon2 is recommended for password hashing and password-based key derivation. |