Sha1String returns a 40-character hexadecimal string, which matches the length of a SHA-1 hash (160 bits).
()
| 121 | // Sha1String returns a 40-character hexadecimal string, which matches |
| 122 | // the length of a SHA-1 hash (160 bits). |
| 123 | func Sha1String() (string, error) { |
| 124 | return StringCharset(Hex, 40) |
| 125 | } |