Encrypt encrypts and encodes the given plaintext, optionally using additional data.
(ctx context.Context, plaintext, additionalData []byte)
| 15 | // Encrypt encrypts and encodes the given plaintext, optionally using |
| 16 | // additional data. |
| 17 | Encrypt(ctx context.Context, plaintext, additionalData []byte) (ciphertext string, err error) |
| 18 | |
| 19 | // Decrypt decodes, decrypts, and verifies the plaintext and additional data |
| 20 | // from the ciphertext. The ciphertext must be given in the form as returned |
no outgoing calls