PBKDF2 constructor Null safety
- {Hash? hashAlgorithm}
Creates instance capable of generating a key.
hashAlgorithm
defaults to sha256.
Implementation
PBKDF2({Hash? hashAlgorithm}) {
this.hashAlgorithm = hashAlgorithm ?? sha256;
}
Creates instance capable of generating a key.
hashAlgorithm
defaults to sha256.
PBKDF2({Hash? hashAlgorithm}) {
this.hashAlgorithm = hashAlgorithm ?? sha256;
}