Files
schisandra-album-cloud-micr…/common/utils/encrypt_test.go

12 lines
162 B
Go

package utils
import "testing"
func TestEncrypt(t *testing.T) {
encrypt, err := Encrypt("LDQ20020618xxx")
if err != nil {
t.Fatal(err)
}
t.Log(encrypt)
}