diff --git a/proxy/keystore/keystore_service_test.go b/proxy/keystore/keystore_service_test.go index 918d979..d3f6edf 100644 --- a/proxy/keystore/keystore_service_test.go +++ b/proxy/keystore/keystore_service_test.go @@ -1 +1,23 @@ package keystore + +import ( + "testing" + "strings" +) + +func TestGetKey(t *testing.T) { + + + str, _:= NewKeyStoreSerivce().CreateKey() + + + t.Log(str) + t.Log(len(str)) + + ss := strings.Replace(str, "-", "", -1) + + + t.Log(ss); + t.Log(len(ss)) + +} \ No newline at end of file