sha256Hash static method

String sha256Hash(
  1. String input
)

This will generate the Sha256 bytes and hash it using #bytes2Hash.

Implementation

static String sha256Hash(String input) {
  return bytes2Hash(sha256SumStr(input));
}