PBKDF2Security constructor

const PBKDF2Security(
  1. String name, {
  2. required int c,
  3. required MACHash<HashDigestSink> mac,
  4. required int dklen,
})

Implementation

const PBKDF2Security(
  this.name, {
  required this.c,
  required this.mac,
  required this.dklen,
});