Argon2 constructor

Argon2({
  1. int iterations = 2,
  2. int memory = 65536,
  3. int parallelism = 1,
  4. int hashLength = 32,
})

Implementation

Argon2({
  this.iterations = 2,
  this.memory = 65536, // 64MB
  this.parallelism = 1,
  this.hashLength = 32,
});