Files
utils/encryptx/sha1x/sha1x_test.go
T

15 lines
186 B
Go
Raw Normal View History

2023-09-16 20:14:20 +08:00
package sha1x_test
import (
"fmt"
"testing"
2023-09-17 18:05:01 +08:00
"code.yun.ink/open/utils/encryptx/sha1x"
2023-09-16 20:14:20 +08:00
)
func TestSha1(t *testing.T) {
s := "sha1 this string"
r := sha1x.Sha1(s)
fmt.Println(r)
}