hdfkDerive static method
Implementation
static List<int> hdfkDerive(
{required List<int> ikm,
required HashFunc hash,
int length = 32,
List<int>? salt,
List<int>? info,
bool hkdfExtract = true}) {
final hdkf = HKDF(
ikm: ikm,
hash: hash,
hkdfExtract: hkdfExtract,
info: info,
length: length,
salt: salt);
return hdkf.derive();
}