site
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
301 B

3 years ago
  1. package site
  2. import (
  3. // "fmt"
  4. "testing"
  5. )
  6. func Test_EncryptedUserToken(t *testing.T) {
  7. //2a12d5373e04a96c2e1862f786e9d054464fc13d
  8. // fmt.Println([]byte("2a12d5373e04a96c2e1862f786e9d054464fc13d"))
  9. token := "5536827c-36a5-4ec7-946d-49e4380c5103"
  10. ret := EncryptedUserToken(token)
  11. t.Log(ret)
  12. }