mirror of
https://github.com/pikami/rss-dl.git
synced 2025-06-30 17:13:33 +01:00
14 lines
184 B
Go
14 lines
184 B
Go
package crypto
|
|
|
|
import (
|
|
"crypto/sha1"
|
|
"encoding/hex"
|
|
"io"
|
|
)
|
|
|
|
func ShaStr(input string) string {
|
|
h := sha1.New()
|
|
io.WriteString(h, input)
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
}
|