EvpKDF static method
Implementation
static EvpKDFResult EvpKDF({
required dynamic password,
required Uint8List salt,
int keySize = 4,
int ivSize = 0,
int iterations = 1,
String hasher = 'MD5',
}) =>
key_and_iv_gen.EvpKDF(
password: password,
keySize: keySize,
ivSize: ivSize,
salt: salt,
iterations: iterations,
hasher: hasher,
);