lookup static method

HashBase<HashDigestSink>? lookup(
  1. String name
)

Find a HashBase algorithm given a string name

Implementation

static HashBase? lookup(String name) {
  _buildRegistry();
  return _hash[_norm(name)];
}