Files
cas_tt_cloud_backend/utils/encrypt_test.go

10 lines
218 B
Go
Raw Normal View History

2021-09-28 11:47:19 +08:00
package utils
import "testing"
func TestSha256String(t *testing.T) {
2021-10-14 15:58:51 +08:00
//t.Log(Md5String("9f735e0df9a1ddc702bf0a1a7b83033f9f7153a00c29de82cedadc9957289b05"))
t.Log(HASHIDEncode(123))
t.Log(HASHIDDecode("lV5OBJ"))
2021-09-28 11:47:19 +08:00
}