MochimoHasher constructor

MochimoHasher({
  1. String algorithm = 'sha256',
})

Implementation

MochimoHasher({String algorithm = 'sha256'})
    : _algorithm = algorithm.toLowerCase() {
  _hasher = _createHasher(_algorithm);
}