getMetadataHash method

String getMetadataHash(
  1. String input
)

Implementation

String getMetadataHash(String input) {
  String? hash = _hashHistory[input];
  if (hash != null) {
    return hash;
  } else {
    hash = LocalityAuth.hashPassword(input);
    _hashHistory[input] = hash;
  }
  return hash;
}