hashids.go 307 B

12345678910111213141516
  1. package jwt
  2. import "github.com/speps/go-hashids/v2"
  3. func HashidsEncode(num int) string {
  4. hd := hashids.NewData()
  5. hd.Salt = "fastgpthashids"
  6. hd.MinLength = 20
  7. h, _ := hashids.NewWithData(hd)
  8. e, _ := h.Encode([]int{num})
  9. return e
  10. //fmt.Println(e)
  11. //d, _ := h.DecodeWithError(e)
  12. //fmt.Println(d)
  13. }