mirror of
https://github.com/gogs/gogs.git
synced 2026-02-26 08:10:59 +01:00
Co-authored-by: JSS <jss@unknwon.dev> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
434 B
Go
22 lines
434 B
Go
package cryptox
|
|
|
|
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))
|
|
}
|