sha1Hash static method

String sha1Hash(
  1. String input
)

This will generate the Sha1 bytes and hash it using #bytes2Hash

Implementation

static String sha1Hash(String input) {
  return bytes2Hash(sha1SumStr(input));
}