calculateClientKey method

Future<List<int>> calculateClientKey(
  1. List<int> saltedPassword
)

Implementation

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