5 lines
78 B
Go
5 lines
78 B
Go
package encrypt
|
|
|
|
type Encryptor interface {
|
|
Encrypt(content []byte) string
|
|
}
|