1.0.0
This commit is contained in:
35
server/framework/utils/hash.go
Normal file
35
server/framework/utils/hash.go
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
#*****************************************************************************
|
||||
# @file hash.go
|
||||
# @author MakerYang(https://www.makeryang.com)
|
||||
# @statement 免费课程配套开源项目,任何形式收费均为盗版
|
||||
#*****************************************************************************
|
||||
*/
|
||||
|
||||
package Utils
|
||||
|
||||
import (
|
||||
"Game/framework/config"
|
||||
"github.com/speps/go-hashids"
|
||||
)
|
||||
|
||||
func EncodeId(len int, id ...int) string {
|
||||
hd := hashids.NewData()
|
||||
hd.Salt = Config.Get.Hash.Salt
|
||||
hd.MinLength = len
|
||||
h := hashids.NewWithData(hd)
|
||||
e, _ := h.Encode(id)
|
||||
return e
|
||||
}
|
||||
|
||||
func DecodeId(len int, encodedId string) ([]int, error) {
|
||||
hd := hashids.NewData()
|
||||
hd.Salt = Config.Get.Hash.Salt
|
||||
hd.MinLength = len
|
||||
h := hashids.NewWithData(hd)
|
||||
d, err := h.DecodeWithError(encodedId)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return d, nil
|
||||
}
|
||||
Reference in New Issue
Block a user