From 19829101e458b89c0c11651d2ca2c2bc1911c0f0 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 14 Jun 2025 10:43:38 -0600 Subject: [PATCH] ssh-key: re-export `cipher` and `encoding` Provides access to the `ssh-cipher` and `ssh-encoding` crates --- ssh-key/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh-key/src/lib.rs b/ssh-key/src/lib.rs index f9f6944a..1b8835a8 100644 --- a/ssh-key/src/lib.rs +++ b/ssh-key/src/lib.rs @@ -176,8 +176,8 @@ pub use crate::{ private::PrivateKey, public::PublicKey, }; -pub use cipher::Cipher; -pub use encoding::pem::LineEnding; +pub use cipher::{self, Cipher}; +pub use encoding::{self, pem::LineEnding}; pub use sha2; #[cfg(feature = "alloc")]