process method

  1. @override
String process(
  1. String password
)

Hashes the given plain-text password.

Implementation

@override
String process(String password) {
  final bytes =
      _derivator.process(new Uint8List.fromList(password.codeUnits));

  return encode(
    id,
    [blockLength, iterationCount, desiredKeyLength],
    formatBytesAsHexString(_salt),
    formatBytesAsHexString(bytes),
  );
}