String toSha512(Uint8List dataToDigest) { final d = SHA512Digest(); return base64UrlEncode(d.process(dataToDigest)); }