pub fn hex_sha256(content: &[u8]) -> String
Hex encoded SHA256 hash.
Use this function instead of hex::encode(sha256(content)) can reduce extra copy.
hex::encode(sha256(content))