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

Diff for /src/usr.bin/ssh/authfd.h between version 1.49 and 1.50

version 1.49, 2020/06/26 05:03:36 version 1.50, 2021/12/19 22:08:48
Line 16 
Line 16 
 #ifndef AUTHFD_H  #ifndef AUTHFD_H
 #define AUTHFD_H  #define AUTHFD_H
   
   struct sshbuf;
   
 /* List of identities returned by ssh_fetch_identitylist() */  /* List of identities returned by ssh_fetch_identitylist() */
 struct ssh_identitylist {  struct ssh_identitylist {
         size_t nkeys;          size_t nkeys;
Line 43 
Line 45 
             u_char **sigp, size_t *lenp,              u_char **sigp, size_t *lenp,
             const u_char *data, size_t datalen, const char *alg, u_int compat);              const u_char *data, size_t datalen, const char *alg, u_int compat);
   
   int     ssh_agent_bind_hostkey(int sock, const struct sshkey *key,
       const struct sshbuf *session_id, const struct sshbuf *signature,
       int forwarding);
   
 /* Messages for the authentication agent connection. */  /* Messages for the authentication agent connection. */
 #define SSH_AGENTC_REQUEST_RSA_IDENTITIES       1  #define SSH_AGENTC_REQUEST_RSA_IDENTITIES       1
 #define SSH_AGENT_RSA_IDENTITIES_ANSWER         2  #define SSH_AGENT_RSA_IDENTITIES_ANSWER         2
Line 75 
Line 81 
 #define SSH_AGENTC_ADD_RSA_ID_CONSTRAINED       24  #define SSH_AGENTC_ADD_RSA_ID_CONSTRAINED       24
 #define SSH2_AGENTC_ADD_ID_CONSTRAINED          25  #define SSH2_AGENTC_ADD_ID_CONSTRAINED          25
 #define SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED 26  #define SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED 26
   
   /* generic extension mechanism */
   #define SSH_AGENTC_EXTENSION                    27
   
 #define SSH_AGENT_CONSTRAIN_LIFETIME            1  #define SSH_AGENT_CONSTRAIN_LIFETIME            1
 #define SSH_AGENT_CONSTRAIN_CONFIRM             2  #define SSH_AGENT_CONSTRAIN_CONFIRM             2

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50