1//! # Armor module 2//! 3//! Armor module provides implementation of ASCII Armor as specified in RFC 9580. 4//! <https://www.rfc-editor.org/rfc/rfc9580.html#name-forming-ascii-armor> 5 6mod reader; 7mod writer; 8 9pub use self::reader::*; 10pub use self::writer::*;