package encryption type Service interface { Encrypt([]byte, string) ([]byte, error) Decrypt([]byte, string) ([]byte, error) }