Files
2023-12-27 19:00:14 +08:00

15 lines
179 B
Go

package sha1x_test
import (
"fmt"
"testing"
"code.yun.ink/pkg/encryptx/sha1x"
)
func TestSha1(t *testing.T) {
s := "sha1 this string"
r := sha1x.Sha1(s)
fmt.Println(r)
}