mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
14 lines
214 B
Go
14 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[:]
|
|
}
|