ssh-agent-lib 0.5.2

A collection of types for writing custom SSH agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Agent protocol message structures.

mod add_remove;
mod extension;
mod identity;
mod request;
mod response;
mod sign;
mod unparsed;

pub use self::{
    add_remove::*, extension::*, identity::*, request::*, response::*, sign::*, unparsed::*,
};
#[doc(hidden)]
/// For compatibility with pre-0.5.0 type alias in this module
/// that duplicated crate::proto::error::ProtoResult
pub use super::Result;