Argon2ConfigLanes Property
Gets or sets the lanes used in the password hash. Minimum of 1. Defaults to 4.
Namespace: Gemstone.Security.Cryptography.Argon2HashAssembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.171 -- Release Build+9bbaecd83e44e0973a7b18ef958272cfb4d67729
public int Lanes { get; set; }
Public Property Lanes As Integer
Get
Set
public:
property int Lanes {
int get ();
void set (int value);
}
function get_Lanes();
function set_Lanes(value);
Property Value
Int32
This describes the maximum parallelism that can be achieved. Each "lane" can
be processed individually in its own thread. Setting
Threads
to a value greater than one when there is more than one lane will allow the
use of multiple cores to speed up hashing.