Calculate the SHA-256 hash of the SHA-256 hash of the input data
static List<int> sha256DoubleHash(List<int> data) { final List<int> tmp = sha256Hash(data); return sha256Hash(tmp); }