mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
7 lines
129 B
Go
7 lines
129 B
Go
|
package encryption
|
||
|
|
||
|
type Service interface {
|
||
|
Encrypt([]byte, string) ([]byte, error)
|
||
|
Decrypt([]byte, string) ([]byte, error)
|
||
|
}
|