[BACK]Return to PROTOCOL.agent CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/PROTOCOL.agent, Revision 1.10

1.1       djm         1: This describes the protocol used by OpenSSH's ssh-agent.
                      2:
                      3: OpenSSH's agent supports managing keys for the standard SSH protocol
                      4: 2 as well as the legacy SSH protocol 1. Support for these key types
                      5: is almost completely disjoint - in all but a few cases, operations on
                      6: protocol 2 keys cannot see or affect protocol 1 keys and vice-versa.
                      7:
                      8: Protocol 1 and protocol 2 keys are separated because of the differing
                      9: cryptographic usage: protocol 1 private RSA keys are used to decrypt
                     10: challenges that were encrypted with the corresponding public key,
                     11: whereas protocol 2 RSA private keys are used to sign challenges with
                     12: a private key for verification with the corresponding public key. It
                     13: is considered unsound practice to use the same key for signing and
                     14: encryption.
                     15:
                     16: With a couple of exceptions, the protocol message names used in this
                     17: document indicate which type of key the message relates to. SSH_*
                     18: messages refer to protocol 1 keys only. SSH2_* messages refer to
1.4       stevesk    19: protocol 2 keys. Furthermore, the names also indicate whether the
                     20: message is a request to the agent (*_AGENTC_*) or a reply from the
                     21: agent (*_AGENT_*). Section 3 below contains the mapping of the
                     22: protocol message names to their integer values.
1.1       djm        23:
                     24: 1. Data types
                     25:
1.4       stevesk    26: Because of support for legacy SSH protocol 1 keys, OpenSSH's agent
1.1       djm        27: protocol makes use of some data types not defined in RFC 4251.
                     28:
                     29: 1.1 uint16
                     30:
                     31: The "uint16" data type is a simple MSB-first 16 bit unsigned integer
                     32: encoded in two bytes.
                     33:
                     34: 1.2 mpint1
                     35:
                     36: The "mpint1" type represents an arbitrary precision integer (bignum).
                     37: Its format is as follows:
                     38:
                     39:        uint16                  bits
                     40:        byte[(bits + 7) / 8]    bignum
                     41:
                     42: "bignum" contains an unsigned arbitrary precision integer encoded as
                     43: eight bits per byte in big-endian (MSB first) format.
                     44:
1.4       stevesk    45: Note the difference between the "mpint1" encoding and the "mpint"
1.1       djm        46: encoding defined in RFC 4251. Also note that the length of the encoded
1.4       stevesk    47: integer is specified in bits, not bytes and that the byte length of
1.1       djm        48: the integer must be calculated by rounding up the number of bits to the
                     49: nearest eight.
                     50:
                     51: 2. Protocol Messages
                     52:
                     53: All protocol messages are prefixed with their length in bytes, encoded
                     54: as a 32 bit unsigned integer. Specifically:
                     55:
                     56:        uint32                  message_length
                     57:        byte[message_length]    message
                     58:
1.4       stevesk    59: The following message descriptions refer only to the content the
1.1       djm        60: "message" field.
                     61:
                     62: 2.1 Generic server responses
                     63:
                     64: The following generic messages may be sent by the server in response to
                     65: requests from the client. On success the agent may reply either with:
                     66:
                     67:        byte                    SSH_AGENT_SUCCESS
                     68:
                     69: or a request-specific success message.
                     70:
                     71: On failure, the agent may reply with:
                     72:
                     73:        byte                    SSH_AGENT_FAILURE
                     74:
                     75: SSH_AGENT_FAILURE messages are also sent in reply to unknown request
                     76: types.
                     77:
                     78: 2.2 Adding keys to the agent
                     79:
                     80: Keys are added to the agent using the SSH_AGENTC_ADD_RSA_IDENTITY and
                     81: SSH2_AGENTC_ADD_IDENTITY requests for protocol 1 and protocol 2 keys
                     82: respectively.
                     83:
                     84: Two variants of these requests are SSH_AGENTC_ADD_RSA_ID_CONSTRAINED
                     85: and SSH2_AGENTC_ADD_ID_CONSTRAINED - these add keys with optional
                     86: "constraints" on their usage.
                     87:
                     88: OpenSSH may be built with support for keys hosted on a smartcard
1.4       stevesk    89: or other hardware security module. These keys may be added
1.1       djm        90: to the agent using the SSH_AGENTC_ADD_SMARTCARD_KEY and
1.4       stevesk    91: SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED requests.
1.1       djm        92:
                     93: 2.2.1 Key constraints
                     94:
                     95: The OpenSSH agent supports some basic optional constraints on key usage.
                     96: At present there are two constraints defined.
                     97:
                     98: The first constraint limits the validity duration of a key. It is
                     99: encoded as:
                    100:
                    101:        byte                    SSH_AGENT_CONSTRAIN_LIFETIME
                    102:        uint32                  seconds
                    103:
                    104: Where "seconds" contains the number of seconds that the key shall remain
                    105: valid measured from the moment that the agent receives it. After the
                    106: validity period has expired, OpenSSH's agent will erase these keys from
                    107: memory.
                    108:
                    109: The second constraint requires the agent to seek explicit user
                    110: confirmation before performing private key operations with the loaded
                    111: key. This constraint is encoded as:
                    112:
                    113:        byte                    SSH_AGENT_CONSTRAIN_CONFIRM
                    114:
                    115: Zero or more constraints may be specified when adding a key with one
                    116: of the *_CONSTRAINED requests. Multiple constraints are appended
                    117: consecutively to the end of the request:
                    118:
                    119:        byte                    constraint1_type
1.3       djm       120:        ....                    constraint1_data
1.1       djm       121:        byte                    constraint2_type
1.3       djm       122:        ....                    constraint2_data
1.1       djm       123:        ....
                    124:        byte                    constraintN_type
1.3       djm       125:        ....                    constraintN_data
1.1       djm       126:
                    127: Such a sequence of zero or more constraints will be referred to below
                    128: as "constraint[]". Agents may determine whether there are constraints
1.4       stevesk   129: by checking whether additional data exists in the "add key" request
1.1       djm       130: after the key data itself. OpenSSH will refuse to add a key if it
                    131: contains unknown constraints.
                    132:
                    133: 2.2.2 Add protocol 1 key
                    134:
                    135: A client may add a protocol 1 key to an agent with the following
                    136: request:
                    137:
                    138:        byte                    SSH_AGENTC_ADD_RSA_IDENTITY or
                    139:                                SSH_AGENTC_ADD_RSA_ID_CONSTRAINED
                    140:        uint32                  ignored
                    141:        mpint1                  rsa_n
                    142:        mpint1                  rsa_e
                    143:        mpint1                  rsa_d
                    144:        mpint1                  rsa_iqmp
                    145:        mpint1                  rsa_q
                    146:        mpint1                  rsa_p
                    147:        string                  key_comment
                    148:        constraint[]            key_constraints
                    149:
                    150: Note that there is some redundancy in the key parameters; a key could be
                    151: fully specified using just rsa_q, rsa_p and rsa_e at the cost of extra
                    152: computation.
                    153:
                    154: "key_constraints" may only be present if the request type is
1.7       djm       155: SSH_AGENTC_ADD_RSA_ID_CONSTRAINED.
1.1       djm       156:
                    157: The agent will reply with a SSH_AGENT_SUCCESS if the key has been
                    158: successfully added or a SSH_AGENT_FAILURE if an error occurred.
                    159:
                    160: 2.2.3 Add protocol 2 key
                    161:
1.6       djm       162: The OpenSSH agent supports DSA, ECDSA and RSA keys for protocol 2. DSA
                    163: keys may be added using the following request
1.1       djm       164:
                    165:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    166:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    167:        string                  "ssh-dss"
                    168:        mpint                   dsa_p
                    169:        mpint                   dsa_q
                    170:        mpint                   dsa_g
                    171:        mpint                   dsa_public_key
                    172:        mpint                   dsa_private_key
                    173:        string                  key_comment
                    174:        constraint[]            key_constraints
                    175:
1.5       djm       176: DSA certificates may be added with:
                    177:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    178:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    179:        string                  "ssh-dss-cert-v00@openssh.com"
                    180:        string                  certificate
                    181:        mpint                   dsa_private_key
                    182:        string                  key_comment
                    183:        constraint[]            key_constraints
                    184:
1.6       djm       185: ECDSA keys may be added using the following request
                    186:
                    187:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    188:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    189:        string                  "ecdsa-sha2-nistp256" |
                    190:                                "ecdsa-sha2-nistp384" |
                    191:                                "ecdsa-sha2-nistp521"
                    192:        string                  ecdsa_curve_name
                    193:        string                  ecdsa_public_key
                    194:        mpint                   ecdsa_private
                    195:        string                  key_comment
                    196:        constraint[]            key_constraints
                    197:
                    198: ECDSA certificates may be added with:
                    199:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    200:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    201:        string                  "ecdsa-sha2-nistp256-cert-v01@openssh.com" |
                    202:                                "ecdsa-sha2-nistp384-cert-v01@openssh.com" |
                    203:                                "ecdsa-sha2-nistp521-cert-v01@openssh.com"
                    204:        string                  certificate
                    205:        mpint                   ecdsa_private_key
                    206:        string                  key_comment
                    207:        constraint[]            key_constraints
                    208:
1.9       djm       209: ED25519 keys may be added using the following request
                    210:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    211:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
1.10    ! djm       212:        string                  "ssh-ed25519"
1.9       djm       213:        mpint                   ed25519_public_key
                    214:        mpint                   ed25519_private_key
                    215:        string                  key_comment
                    216:        constraint[]            key_constraints
                    217:
                    218: ED25519 certificates may be added with:
                    219:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    220:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
1.10    ! djm       221:        string                  "ssh-ed25519-cert-v01@openssh.com"
1.9       djm       222:        string                  certificate
                    223:        mpint                   ed25519_public_key
                    224:        mpint                   ed25519_private_key
                    225:        string                  key_comment
                    226:        constraint[]            key_constraints
                    227:
1.1       djm       228: RSA keys may be added with this request:
                    229:
                    230:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    231:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    232:        string                  "ssh-rsa"
                    233:        mpint                   rsa_n
                    234:        mpint                   rsa_e
                    235:        mpint                   rsa_d
                    236:        mpint                   rsa_iqmp
                    237:        mpint                   rsa_p
                    238:        mpint                   rsa_q
                    239:        string                  key_comment
                    240:        constraint[]            key_constraints
                    241:
1.5       djm       242: RSA certificates may be added with this request:
                    243:
                    244:        byte                    SSH2_AGENTC_ADD_IDENTITY or
                    245:                                SSH2_AGENTC_ADD_ID_CONSTRAINED
                    246:        string                  "ssh-rsa-cert-v00@openssh.com"
                    247:        string                  certificate
                    248:        mpint                   rsa_d
                    249:        mpint                   rsa_iqmp
                    250:        mpint                   rsa_p
                    251:        mpint                   rsa_q
                    252:        string                  key_comment
                    253:        constraint[]            key_constraints
                    254:
1.4       stevesk   255: Note that the 'rsa_p' and 'rsa_q' parameters are sent in the reverse
1.1       djm       256: order to the protocol 1 add keys message. As with the corresponding
                    257: protocol 1 "add key" request, the private key is overspecified to avoid
                    258: redundant processing.
                    259:
1.6       djm       260: For DSA, ECDSA and RSA key add requests, "key_constraints" may only be
1.1       djm       261: present if the request type is SSH2_AGENTC_ADD_ID_CONSTRAINED.
                    262:
                    263: The agent will reply with a SSH_AGENT_SUCCESS if the key has been
                    264: successfully added or a SSH_AGENT_FAILURE if an error occurred.
                    265:
                    266: 2.2.4 Loading keys from a smartcard
                    267:
                    268: The OpenSSH agent may have optional smartcard support built in to it. If
                    269: so, it supports an operation to load keys from a smartcard. Technically,
                    270: only the public components of the keys are loaded into the agent so
                    271: this operation really arranges for future private key operations to be
                    272: delegated to the smartcard.
                    273:
                    274:        byte                    SSH_AGENTC_ADD_SMARTCARD_KEY or
                    275:                                SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED
                    276:        string                  reader_id
                    277:        string                  pin
                    278:        constraint[]            key_constraints
                    279:
1.4       stevesk   280: "reader_id" is an identifier to a smartcard reader and "pin"
1.1       djm       281: is a PIN or passphrase used to unlock the private key(s) on the
                    282: device. "key_constraints" may only be present if the request type is
                    283: SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED.
                    284:
                    285: This operation may load all SSH keys that are unlocked using the
                    286: "pin" on the specified reader. The type of key loaded (protocol 1
                    287: or protocol 2) will be specified by the smartcard itself, it is not
                    288: client-specified.
                    289:
                    290: The agent will reply with a SSH_AGENT_SUCCESS if one or more keys have
                    291: been successfully loaded or a SSH_AGENT_FAILURE if an error occurred.
                    292: The agent will also return SSH_AGENT_FAILURE if it does not support
                    293: smartcards.
                    294:
                    295: 2.3 Removing multiple keys
                    296:
                    297: A client may request that an agent delete all protocol 1 keys using the
                    298: following request:
                    299:
                    300:        byte                    SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES
                    301:
                    302: This message requests the deletion of all protocol 2 keys:
                    303:
                    304:        byte                    SSH2_AGENTC_REMOVE_ALL_IDENTITIES
                    305:
                    306: On success, the agent will delete all keys of the requested type and
                    307: reply with a SSH_AGENT_SUCCESS message. If an error occurred, the agent
                    308: will reply with SSH_AGENT_FAILURE.
                    309:
                    310: Note that, to delete all keys (both protocol 1 and 2), a client
                    311: must send both a SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES and a
                    312: SSH2_AGENTC_REMOVE_ALL_IDENTITIES request.
                    313:
                    314: 2.4 Removing specific keys
                    315:
                    316: 2.4.1 Removing a protocol 1 key
                    317:
                    318: Removal of a protocol 1 key may be requested with the following message:
                    319:
                    320:        byte                    SSH_AGENTC_REMOVE_RSA_IDENTITY
                    321:        uint32                  key_bits
                    322:        mpint1                  rsa_e
                    323:        mpint1                  rsa_n
                    324:
                    325: Note that key_bits is strictly redundant, as it may be inferred by the
                    326: length of rsa_n.
                    327:
                    328: The agent will delete any private key matching the specified public key
                    329: and return SSH_AGENT_SUCCESS. If no such key was found, the agent will
                    330: return SSH_AGENT_FAILURE.
                    331:
                    332: 2.4.2 Removing a protocol 2 key
                    333:
                    334: Protocol 2 keys may be removed with the following request:
                    335:
                    336:        byte                    SSH2_AGENTC_REMOVE_IDENTITY
1.2       djm       337:        string                  key_blob
1.1       djm       338:
                    339: Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key
1.6       djm       340: Algorithms" for any of the supported protocol 2 key types.
1.1       djm       341:
                    342: The agent will delete any private key matching the specified public key
                    343: and return SSH_AGENT_SUCCESS. If no such key was found, the agent will
                    344: return SSH_AGENT_FAILURE.
                    345:
                    346: 2.4.3 Removing keys loaded from a smartcard
                    347:
                    348: A client may request that a server remove one or more smartcard-hosted
                    349: keys using this message:
                    350:
                    351:        byte                    SSH_AGENTC_REMOVE_SMARTCARD_KEY
                    352:        string                  reader_id
                    353:        string                  pin
                    354:
                    355: "reader_id" the an identifier to a smartcard reader and "pin" is a PIN
                    356: or passphrase used to unlock the private key(s) on the device.
                    357:
                    358: When this message is received, and if the agent supports
                    359: smartcard-hosted keys, it will delete all keys that are hosted on the
                    360: specified smartcard that may be accessed with the given "pin".
                    361:
                    362: The agent will reply with a SSH_AGENT_SUCCESS if one or more keys have
                    363: been successfully removed or a SSH_AGENT_FAILURE if an error occurred.
                    364: The agent will also return SSH_AGENT_FAILURE if it does not support
                    365: smartcards.
                    366:
                    367: 2.5 Requesting a list of known keys
                    368:
                    369: An agent may be requested to list which keys it holds. Different
                    370: requests exist for protocol 1 and protocol 2 keys.
                    371:
                    372: 2.5.1 Requesting a list of protocol 1 keys
                    373:
                    374: To request a list of protocol 1 keys that are held in the agent, a
                    375: client may send the following message:
                    376:
                    377:        byte                    SSH_AGENTC_REQUEST_RSA_IDENTITIES
                    378:
                    379: The agent will reply with the following message:
                    380:
                    381:        byte                    SSH_AGENT_RSA_IDENTITIES_ANSWER
                    382:        uint32                  num_keys
                    383:
                    384: Followed by zero or more consecutive keys, encoded as:
                    385:
                    386:        uint32                  bits
                    387:        mpint1                  rsa_e
                    388:        mpint1                  rsa_n
                    389:        string                  key_comment
                    390:
                    391: 2.5.2 Requesting a list of protocol 2 keys
                    392:
1.4       stevesk   393: A client may send the following message to request a list of
1.1       djm       394: protocol 2 keys that are stored in the agent:
                    395:
                    396:        byte                    SSH2_AGENTC_REQUEST_IDENTITIES
                    397:
                    398: The agent will reply with the following message header:
                    399:
                    400:        byte                    SSH2_AGENT_IDENTITIES_ANSWER
                    401:        uint32                  num_keys
                    402:
                    403: Followed by zero or more consecutive keys, encoded as:
                    404:
1.2       djm       405:        string                  key_blob
1.1       djm       406:        string                  key_comment
                    407:
                    408: Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key
1.6       djm       409: Algorithms" for any of the supported protocol 2 key types.
1.1       djm       410:
                    411: 2.6 Private key operations
                    412:
                    413: The purpose of the agent is to perform private key operations, such as
                    414: signing and encryption without requiring a passphrase to unlock the
                    415: key and without allowing the private key itself to be exposed. There
                    416: are separate requests for the protocol 1 and protocol 2 private key
                    417: operations.
                    418:
                    419: 2.6.1 Protocol 1 private key challenge
                    420:
                    421: The private key operation used in version 1 of the SSH protocol is
                    422: decrypting a challenge that has been encrypted with a public key.
                    423: It may be requested using this message:
                    424:
                    425:        byte                    SSH_AGENTC_RSA_CHALLENGE
                    426:        uint32                  ignored
                    427:        mpint1                  rsa_e
                    428:        mpint1                  rsa_n
                    429:        mpint1                  encrypted_challenge
                    430:        byte[16]                session_id
                    431:        uint32                  response_type /* must be 1 */
                    432:
                    433: "rsa_e" and "rsa_n" are used to identify which private key to use.
                    434: "encrypted_challenge" is a challenge blob that has (presumably)
1.8       djm       435: been encrypted with the public key and must be in the range
1.1       djm       436: 1 <= encrypted_challenge < 2^256. "session_id" is the SSH protocol 1
                    437: session ID (computed from the server host key, the server semi-ephemeral
1.4       stevesk   438: key and the session cookie).
1.1       djm       439:
                    440: "ignored" and "response_type" exist for compatibility with legacy
                    441: implementations. "response_type" must be equal to 1; other response
                    442: types are not supported.
                    443:
                    444: On receiving this request, the server decrypts the "encrypted_challenge"
1.4       stevesk   445: using the private key matching the supplied (rsa_e, rsa_n) values. For
1.1       djm       446: the response derivation, the decrypted challenge is represented as an
                    447: unsigned, big-endian integer encoded in a 32 byte buffer (i.e. values
                    448: smaller than 2^248 will have leading 0 bytes).
                    449:
                    450: The response value is then calculated as:
                    451:
                    452:        response = MD5(decrypted_challenge || session_id)
                    453:
                    454: and returned in the following message
                    455:
                    456:        byte                    SSH_AGENT_RSA_RESPONSE
                    457:        byte[16]                response
                    458:
                    459: If the agent cannot find the key specified by the supplied (rsa_e,
                    460: rsa_n) then it will return SSH_AGENT_FAILURE.
                    461:
                    462: 2.6.2 Protocol 2 private key signature request
                    463:
                    464: A client may use the following message to request signing of data using
                    465: a protocol 2 key:
                    466:
                    467:        byte                    SSH2_AGENTC_SIGN_REQUEST
                    468:        string                  key_blob
                    469:        string                  data
                    470:        uint32                  flags
                    471:
                    472: Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key
1.6       djm       473: Algorithms" for any of the supported protocol 2 key types. "flags" is
                    474: a bit-mask, but at present only one possible value is defined (see below
                    475: for its meaning):
1.1       djm       476:
                    477:        SSH_AGENT_OLD_SIGNATURE         1
                    478:
                    479: Upon receiving this request, the agent will look up the private key that
                    480: corresponds to the public key contained in key_blob. It will use this
                    481: private key to sign the "data" and produce a signature blob using the
                    482: key type-specific method described in RFC 4253 section 6.6 "Public Key
                    483: Algorithms".
                    484:
                    485: An exception to this is for "ssh-dss" keys where the "flags" word
                    486: contains the value SSH_AGENT_OLD_SIGNATURE. In this case, a legacy
                    487: signature encoding is used in lieu of the standard one. In this case,
                    488: the DSA signature blob is encoded as:
                    489:
                    490:        byte[40]                signature
                    491:
                    492: The signature will be returned in the response message:
                    493:
                    494:        byte                    SSH2_AGENT_SIGN_RESPONSE
                    495:        string                  signature_blob
                    496:
                    497: If the agent cannot find the key specified by the supplied key_blob then
                    498: it will return SSH_AGENT_FAILURE.
                    499:
                    500: 2.7 Locking or unlocking an agent
                    501:
                    502: The agent supports temporary locking with a passphrase to suspend
                    503: processing of sensitive operations until it has been unlocked with the
                    504: same passphrase. To lock an agent, a client send the following request:
                    505:
                    506:        byte                    SSH_AGENTC_LOCK
                    507:        string                  passphrase
                    508:
                    509: Upon receipt of this message and if the agent is not already locked,
                    510: it will suspend processing requests and return a SSH_AGENT_SUCCESS
                    511: reply. If the agent is already locked, it will return SSH_AGENT_FAILURE.
                    512:
                    513: While locked, the agent will refuse all requests except
                    514: SSH_AGENTC_UNLOCK, SSH_AGENTC_REQUEST_RSA_IDENTITIES and
                    515: SSH2_AGENTC_REQUEST_IDENTITIES. The "request identities" requests are
                    516: treated specially by a locked agent: it will always return an empty list
                    517: of keys.
                    518:
                    519: To unlock an agent, a client may request:
                    520:
                    521:        byte                    SSH_AGENTC_UNLOCK
                    522:        string                  passphrase
                    523:
                    524: If the passphrase matches and the agent is locked, then it will resume
                    525: processing all requests and return SSH_AGENT_SUCCESS. If the agent
                    526: is not locked or the passphrase does not match then it will return
                    527: SSH_AGENT_FAILURE.
                    528:
                    529: Locking and unlocking affects both protocol 1 and protocol 2 keys.
                    530:
                    531: 3. Protocol message numbers
                    532:
                    533: 3.1 Requests from client to agent for protocol 1 key operations
                    534:
                    535:        SSH_AGENTC_REQUEST_RSA_IDENTITIES               1
                    536:        SSH_AGENTC_RSA_CHALLENGE                        3
                    537:        SSH_AGENTC_ADD_RSA_IDENTITY                     7
                    538:        SSH_AGENTC_REMOVE_RSA_IDENTITY                  8
                    539:        SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES            9
                    540:        SSH_AGENTC_ADD_RSA_ID_CONSTRAINED               24
                    541:
                    542: 3.2 Requests from client to agent for protocol 2 key operations
                    543:
                    544:        SSH2_AGENTC_REQUEST_IDENTITIES                  11
                    545:        SSH2_AGENTC_SIGN_REQUEST                        13
                    546:        SSH2_AGENTC_ADD_IDENTITY                        17
                    547:        SSH2_AGENTC_REMOVE_IDENTITY                     18
                    548:        SSH2_AGENTC_REMOVE_ALL_IDENTITIES               19
                    549:        SSH2_AGENTC_ADD_ID_CONSTRAINED                  25
                    550:
                    551: 3.3 Key-type independent requests from client to agent
                    552:
                    553:        SSH_AGENTC_ADD_SMARTCARD_KEY                    20
                    554:        SSH_AGENTC_REMOVE_SMARTCARD_KEY                 21
                    555:        SSH_AGENTC_LOCK                                 22
                    556:        SSH_AGENTC_UNLOCK                               23
                    557:        SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED        26
                    558:
                    559: 3.4 Generic replies from agent to client
                    560:
                    561:        SSH_AGENT_FAILURE                               5
                    562:        SSH_AGENT_SUCCESS                               6
                    563:
                    564: 3.5 Replies from agent to client for protocol 1 key operations
                    565:
                    566:        SSH_AGENT_RSA_IDENTITIES_ANSWER                 2
                    567:        SSH_AGENT_RSA_RESPONSE                          4
                    568:
                    569: 3.6 Replies from agent to client for protocol 2 key operations
                    570:
                    571:        SSH2_AGENT_IDENTITIES_ANSWER                    12
                    572:        SSH2_AGENT_SIGN_RESPONSE                        14
                    573:
                    574: 3.7 Key constraint identifiers
                    575:
                    576:        SSH_AGENT_CONSTRAIN_LIFETIME                    1
                    577:        SSH_AGENT_CONSTRAIN_CONFIRM                     2
                    578:
1.10    ! djm       579: $OpenBSD: PROTOCOL.agent,v 1.9 2016/05/03 10:24:27 djm Exp $