//! SSH protocol identification — banner and key exchange init parsing (RFC 4253).
pub use SshBanner;
pub use ;
/// Unified SSH identification payload.
///
/// SSH traffic on port 22 starts with either a plaintext banner line
/// (`SSH-2.0-...`) or, after the banner, a binary packet containing
/// `SSH_MSG_KEXINIT`. This enum wraps both possibilities so that a single
/// port-based dispatch can return either one.