PBKDF2 constructor

PBKDF2({
  1. int blockLength = 128,
  2. int iterationCount = 2048,
  3. int desiredKeyLength = 64,
  4. dynamic digestAlgorithm,
})

Implementation

PBKDF2({
  this.blockLength = 128,
  this.iterationCount = 2048,
  this.desiredKeyLength = 64,
  this.digestAlgorithm,
}) : _derivator =
          new PBKDF2KeyDerivator(new HMac(digestAlgorithm, blockLength));