mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
14 lines
197 B
Go
14 lines
197 B
Go
package settings
|
|
|
|
import "crypto/md5"
|
|
|
|
type Crypto struct {
|
|
Secret string
|
|
}
|
|
|
|
var CryptoSettings = Crypto{}
|
|
|
|
func (c *Crypto) GetSecretMd5() []byte {
|
|
k := md5.Sum([]byte(c.Secret))
|
|
return k[:]
|
|
}
|