ssh_encoding/
pem.rs

1//! PEM encoding support.
2
3mod decode;
4mod encode;
5mod reader;
6mod writer;
7
8pub use self::{decode::DecodePem, encode::EncodePem};
9pub use pem_rfc7468::{Error, LineEnding, PemLabel};
10
11/// Line width used by the PEM encoding of OpenSSH documents.
12const LINE_WIDTH: usize = 70;