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
//! SSH agent protocol structures.

pub mod error;
pub mod extension;
pub mod message;
pub mod privatekey;
pub mod signature;

pub use self::error::{ProtoError as Error, ProtoResult as Result, *};
pub use self::message::*;
pub use self::privatekey::*;
pub use self::signature::*;