summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-03-03 14:04:14 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-03-03 14:04:14 +0100
commit692b6a273befc3df9e32427e6d5c884e83c5f0ff (patch)
tree0296125245128cb22f83eacad1c8602acb29740a /openpgp/src/serialize/stream.rs
parentd4a105ba331c4056d31f119c42fecac7d352d124 (diff)
openpgp: Mark experimental features.
- Fixes #446.
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index c0f6828e..92bce274 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -1113,6 +1113,8 @@ impl<'a> Encryptor<'a> {
}
/// Enables AEAD and sets the AEAD algorithm to use.
+ ///
+ /// This feature is [experimental](../../index.html#experimental-features).
pub fn aead_algo(mut self, algo: AEADAlgorithm) -> Self {
self.aead_algo = Some(algo);
self