summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/PROTOCOL.agent
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-06-29 08:30:30 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-06-29 08:30:30 +0000
commit5e873aaaca6fb4b1a29dc92c01173dbf221481c3 (patch)
tree4c39e4d504711c2ab2941ec5d32619d5d7fb6e94 /usr.bin/ssh/PROTOCOL.agent
parent3458b0d7290589aa31bbfae1eb73e956aaba35b5 (diff)
protocol 2 key blobs are strings, not byte arrays
Diffstat (limited to 'usr.bin/ssh/PROTOCOL.agent')
-rw-r--r--usr.bin/ssh/PROTOCOL.agent6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/PROTOCOL.agent b/usr.bin/ssh/PROTOCOL.agent
index 982a5dbefc3..90dfcae5673 100644
--- a/usr.bin/ssh/PROTOCOL.agent
+++ b/usr.bin/ssh/PROTOCOL.agent
@@ -269,7 +269,7 @@ return SSH_AGENT_FAILURE.
Protocol 2 keys may be removed with the following request:
byte SSH2_AGENTC_REMOVE_IDENTITY
- byte[n] key_blob
+ string key_blob
Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key
Algorithms" for either of the supported key types: "ssh-dss" or
@@ -338,7 +338,7 @@ The agent will reply with the following message header:
Followed by zero or more consecutive keys, encoded as:
- byte[n] key_blob
+ string key_blob
string key_comment
Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key
@@ -513,4 +513,4 @@ Locking and unlocking affects both protocol 1 and protocol 2 keys.
SSH_AGENT_CONSTRAIN_LIFETIME 1
SSH_AGENT_CONSTRAIN_CONFIRM 2
-$OpenBSD: PROTOCOL.agent,v 1.1 2008/06/28 14:08:30 djm Exp $
+$OpenBSD: PROTOCOL.agent,v 1.2 2008/06/29 08:30:29 djm Exp $