generateHash static method

String generateHash(
  1. String xmlString
)

Implementation

static String generateHash(String xmlString) {
  /// Compute the SHA-256 hash
  final bytes = utf8.encode(xmlString); // Convert XML to bytes
  final hash = sha256.convert(bytes); // Compute the SHA-256 hash

  /// Encode the hash in Base64
  return base64.encode(hash.bytes);
}