ssh-rs 0.3.2

In addition to encryption library, pure RUST implementation of SSH-2.0 client protocol
Documentation
mod backend_msg;
mod data;
mod flow_control;
mod packet;
mod scp_file;
mod sequence;
mod timeout;
mod u32iter;

use std::{
    cell::RefCell,
    rc::Rc,
    sync::{Arc, Mutex},
};

pub(crate) use backend_msg::*;
pub(crate) use data::Data;
pub(crate) use flow_control::FlowControl;
pub(crate) use packet::{Packet, SecPacket};
pub(crate) use scp_file::ScpFile;
pub(crate) use sequence::Sequence;
pub(crate) use timeout::Timeout;
pub(crate) use u32iter::U32Iter;

pub(crate) type RcMut<T> = Rc<RefCell<T>>;
pub(crate) type ArcMut<T> = Arc<Mutex<T>>;