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