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