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>2024-03-13 10:59:50 +0100
commit9ed5af40efc5d0bb3579e9316ba14b7473e00c94 (patch)
tree61652156f9a291bab27ed9809834f3503b81cb62
parent64a3ef270b83ad92231551d7e7ae2637efa2bcf5 (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 80ba3811..93fd3d83 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -2900,10 +2900,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