convert method

  1. @override
Argon2HashDigest convert(
  1. List<int> password
)
override

Generate a derived key from a password using Argon2 algorithm

Implementation

@override
Argon2HashDigest convert(List<int> password) {
  final result = Argon2Internal(_ctx).convert(password);
  return Argon2HashDigest(_ctx, result);
}