summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-10-21 14:56:00 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-10-21 14:56:00 +0200
commit06bd95ec9165aa723356ec999f87c86f57b7e065 (patch)
treeecb13a71e15d73c73cea6b6842e7bfad80620987 /openpgp/src/serialize/stream.rs
parent53b03641238780cbce221df11a08ca988549e305 (diff)
openpgp: Don't mention method that is no longer public.
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index 927738ca..095c0d3b 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -2026,13 +2026,11 @@ impl<'a> Encryptor<'a> {
/// To add more recipients, use [`Encryptor::add_recipients`]. To
/// add a password, use [`Encryptor::add_password`]. To change
/// the symmetric encryption algorithm, use
- /// [`Encryptor::sym_algo`]. To enable the experimental AEAD
- /// encryption, use [`Encryptor::aead_algo`].
+ /// [`Encryptor::sym_algo`].
///
/// [`Encryptor::add_recipients`]: #method.add_recipients
/// [`Encryptor::add_password`]: #method.add_password
/// [`Encryptor::sym_algo`]: #method.sym_algo
- /// [`Encryptor::aead_algo`]: #method.aead_algo
///
/// # Examples
///
@@ -2102,13 +2100,11 @@ impl<'a> Encryptor<'a> {
/// To add more passwords, use [`Encryptor::add_password`]. To
/// add an recipient, use [`Encryptor::add_recipients`]. To change
/// the symmetric encryption algorithm, use
- /// [`Encryptor::sym_algo`]. To enable the experimental AEAD
- /// encryption, use [`Encryptor::aead_algo`].
+ /// [`Encryptor::sym_algo`].
///
/// [`Encryptor::add_recipients`]: #method.add_recipients
/// [`Encryptor::add_password`]: #method.add_password
/// [`Encryptor::sym_algo`]: #method.sym_algo
- /// [`Encryptor::aead_algo`]: #method.aead_algo
///
/// # Examples
///