You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! Data returned to the client when listing keys.
2
+
3
+
use ssh_encoding::{self,CheckedSum,Decode,Encode,Reader,Writer};
4
+
use ssh_key::public::KeyData;
5
+
6
+
usesuper::Result;
7
+
usecrate::proto::ProtoError;
8
+
9
+
/// Data returned to the client when listing keys.
10
+
///
11
+
/// A list of these structures are sent in a [`Response::IdentitiesAnswer`](super::Response::IdentitiesAnswer) (`SSH_AGENT_IDENTITIES_ANSWER`) message body.
12
+
///
13
+
/// Described in [draft-miller-ssh-agent-14 § 3.5](https://www.ietf.org/archive/id/draft-miller-ssh-agent-14.html#section-3.5)
14
+
#[derive(Clone,PartialEq,Debug)]
15
+
pubstructIdentity{
16
+
/// A standard public-key encoding of an underlying key.
0 commit comments