mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 12:03:26 -06:00
17 lines
327 B
Go
17 lines
327 B
Go
|
package securedata
|
||
|
|
||
|
import (
|
||
|
"github.com/grafana/grafana/pkg/setting"
|
||
|
"github.com/grafana/grafana/pkg/util"
|
||
|
)
|
||
|
|
||
|
type SecureData []byte
|
||
|
|
||
|
func Encrypt(data []byte) (SecureData, error) {
|
||
|
return util.Encrypt(data, setting.SecretKey)
|
||
|
}
|
||
|
|
||
|
func (s SecureData) Decrypt() ([]byte, error) {
|
||
|
return util.Decrypt(s, setting.SecretKey)
|
||
|
}
|