15 lines
214 B
Go
15 lines
214 B
Go
package settings
|
|
|
|
import "crypto/md5"
|
|
|
|
type Crypto struct {
|
|
Secret string `json:"secret"`
|
|
}
|
|
|
|
var CryptoSettings = &Crypto{}
|
|
|
|
func (c *Crypto) GetSecretMd5() []byte {
|
|
k := md5.Sum([]byte(c.Secret))
|
|
return k[:]
|
|
}
|