1
2
3
4
5
6
7
8
9
10
11
12
//! PEM encoding support.

mod decode;
mod encode;
mod reader;
mod writer;

pub use self::{decode::DecodePem, encode::EncodePem};
pub use pem_rfc7468::{Error, LineEnding, PemLabel};

/// Line width used by the PEM encoding of OpenSSH documents.
const LINE_WIDTH: usize = 70;