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

Diff for /src/usr.bin/ssh/sshsig.h between version 1.2 and 1.3

version 1.2, 2019/09/03 08:35:27 version 1.3, 2019/09/05 04:55:32
Line 19 
Line 19 
   
 struct sshbuf;  struct sshbuf;
 struct sshkey;  struct sshkey;
   struct sshsigopt;
   
 typedef int sshsig_signer(struct sshkey *, u_char **, size_t *,  typedef int sshsig_signer(struct sshkey *, u_char **, size_t *,
     const u_char *, size_t, const char *, u_int, void *);      const u_char *, size_t, const char *, u_int, void *);
Line 80 
Line 81 
  */   */
 int sshsig_check_allowed_keys(const char *path, const struct sshkey *sign_key,  int sshsig_check_allowed_keys(const char *path, const struct sshkey *sign_key,
     const char *principal, const char *ns);      const char *principal, const char *ns);
   
   /* Parse zero or more allowed_keys signature options */
   struct sshsigopt *sshsigopt_parse(const char *opts,
       const char *path, u_long linenum, const char **errstrp);
   
   /* Free signature options */
   void sshsigopt_free(struct sshsigopt *opts);
   
 #endif /* SSHSIG_H */  #endif /* SSHSIG_H */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3