(key interface{}, plaintext []byte, nonce []byte)
| 19 | // depending on the implementation. |
| 20 | type Encrypter interface { |
| 21 | Encrypt(key interface{}, plaintext []byte, nonce []byte) (*etree.Element, error) |
| 22 | } |
| 23 | |
| 24 | // Decrypter is an interface that decrypts things. The Decrypt() method returns the |
no outgoing calls