summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2008-06-29 08:30:29 +0000
committerdjm <djm@openbsd.org>2008-06-29 08:30:29 +0000
commitc0f9b6e88bc4535447bede1444d3028fd652bd82 (patch)
tree8842db6f970979ba6a2c3629b9f49f8e2afaeed8
parentdocumentation tweaks. (diff)
downloadwireguard-openbsd-c0f9b6e88bc4535447bede1444d3028fd652bd82.tar.xz
wireguard-openbsd-c0f9b6e88bc4535447bede1444d3028fd652bd82.zip
protocol 2 key blobs are strings, not byte arrays
-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 $