Future<List<int>> calculateClientKey(List<int> saltedPassword) async { return (await Hmac(_hash).calculateMac( utf8.encode('Client Key'), secretKey: SecretKey(saltedPassword), )) .bytes; }