mirror of
https://github.com/gogs/gogs.git
synced 2026-02-07 23:19:20 +01:00
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
22 lines
437 B
Go
22 lines
437 B
Go
package cryptoutil
|
|
|
|
import (
|
|
"crypto/sha1"
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
)
|
|
|
|
// SHA1 encodes string to hexadecimal of SHA1 checksum.
|
|
func SHA1(str string) string {
|
|
h := sha1.New()
|
|
_, _ = h.Write([]byte(str))
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
}
|
|
|
|
// SHA256 encodes string to hexadecimal of SHA256 checksum.
|
|
func SHA256(str string) string {
|
|
h := sha256.New()
|
|
_, _ = h.Write([]byte(str))
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
}
|