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
4pub mod id;
5
6mod bytes;
7pub use bytes::Bytes;
8
9mod 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;
23
24#[doc(inline)]
25pub use ascii::ascii;