sha256DoubleHash static method

List<int> sha256DoubleHash(
  1. List<int> data
)

Calculate the SHA-256 hash of the SHA-256 hash of the input data

Implementation

static List<int> sha256DoubleHash(List<int> data) {
  final List<int> tmp = sha256Hash(data);
  return sha256Hash(tmp);
}