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