summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-05-23 20:06:24 +0200
committerJustus Winter <justus@sequoia-pgp.org>2023-11-09 16:11:21 +0100
commit7ebb064abbff1a60bb3a57fdd24e94fea7642137 (patch)
tree1e82e90234e135a9161901f4d1eb8d8c0aa987d1
parent80197d7abd446dc716da5947eb4bddd85d70125b (diff)
make api public
-rw-r--r--openpgp/src/serialize/stream.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index 78e90c3a..8dddcc4b 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -2850,10 +2850,6 @@ impl<'a, 'b> Encryptor2<'a, 'b> {
/// message.finalize()?;
/// # Ok(()) }
/// ```
- // Function hidden from the public API due to
- // https://gitlab.com/sequoia-pgp/sequoia/-/issues/550
- // It is used only for tests so that it does not bit-rot.
- #[cfg(test)]
pub fn aead_algo(mut self, algo: AEADAlgorithm) -> Self {
self.aead_algo = Some(algo);
self