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

Diff for /src/usr.bin/ssh/auth.h between version 1.79 and 1.80

version 1.79, 2014/12/22 07:51:30 version 1.80, 2015/01/19 20:16:15
Line 37 
Line 37 
 #include <krb5.h>  #include <krb5.h>
 #endif  #endif
   
   struct ssh;
 struct sshkey;  struct sshkey;
   
 typedef struct Authctxt Authctxt;  typedef struct Authctxt Authctxt;
Line 178 
Line 179 
   
 /* hostkey handling */  /* hostkey handling */
 Key     *get_hostkey_by_index(int);  Key     *get_hostkey_by_index(int);
 Key     *get_hostkey_public_by_index(int);  Key     *get_hostkey_public_by_index(int, struct ssh *);
 Key     *get_hostkey_public_by_type(int);  Key     *get_hostkey_public_by_type(int, struct ssh *);
 Key     *get_hostkey_private_by_type(int);  Key     *get_hostkey_private_by_type(int, struct ssh *);
 int      get_hostkey_index(Key *);  int      get_hostkey_index(Key *, struct ssh *);
 int      ssh1_session_key(BIGNUM *);  int      ssh1_session_key(BIGNUM *);
 void     sshd_hostkey_sign(Key *, Key *, u_char **, u_int *, u_char *, u_int);  int      sshd_hostkey_sign(Key *, Key *, u_char **, size_t *, u_char *, size_t, u_int);
   
 /* debug messages during authentication */  /* debug messages during authentication */
 void     auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2)));  void     auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2)));

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80