ssh_packet/arch/
mod.rs

1//! Types defined in the SSH's **architecture** (`SSH-ARCH`) part of the protocol,
2//! as defined in the [RFC 4251](https://datatracker.ietf.org/doc/html/rfc4251).
3
4mod bytes;
5pub use bytes::Bytes;
6
7mod ascii;
8#[doc(inline)]
9pub use ascii::ascii;
10pub use ascii::{Ascii, AsciiError};
11
12mod utf8;
13pub use utf8::Utf8;
14
15mod namelist;
16pub use namelist::NameList;
17
18mod mpint;
19pub use mpint::MpInt;
20
21mod bool;
22pub use bool::Bool;