[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.5 and 1.6

version 1.5, 2019/11/25 00:51:37 version 1.6, 2020/01/23 04:54:34
Line 92 
Line 92 
 /* Free signature options */  /* Free signature options */
 void sshsigopt_free(struct sshsigopt *opts);  void sshsigopt_free(struct sshsigopt *opts);
   
   /* Get public key from signature */
   int
   sshsig_get_pubkey(struct sshbuf *signature, struct sshkey **pubkey);
   
   /* Find principal in allowed_keys file, given a sshkey. Returns
    * 0 on success.
    */
   int sshsig_find_principal(const char *path, const struct sshkey *sign_key,
       char **principal);
   
 #endif /* SSHSIG_H */  #endif /* SSHSIG_H */

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6