String toSha256Hash(Uint8List dataToDigest) { final d = SHA256Digest(); return base64Encode(d.process(dataToDigest)); }