computeRawHash function

String computeRawHash(
  1. List<int> bytes
)

Computes the raw SHA-256 hash of the exact bytes.

Binds: FR-102.

Implementation

String computeRawHash(List<int> bytes) {
  return sha256.convert(bytes).toString();
}