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

Diff for /src/usr.bin/ssh/sshkey.h between version 1.52 and 1.53

version 1.52, 2022/09/17 10:30:45 version 1.53, 2022/10/28 00:35:40
Line 158 
Line 158 
         uint8_t sk_flags;       /* U2F signature flags; see ssh-sk.h */          uint8_t sk_flags;       /* U2F signature flags; see ssh-sk.h */
 };  };
   
   struct sshkey_impl_funcs {
           u_int (*size)(const struct sshkey *);   /* optional */
           int (*alloc)(struct sshkey *);          /* optional */
           void (*cleanup)(struct sshkey *);       /* optional */
   };
   
   struct sshkey_impl {
           const char *name;
           const char *shortname;
           const char *sigalg;
           int type;
           int nid;
           int cert;
           int sigonly;
           int keybits;
           const struct sshkey_impl_funcs *funcs;
   };
   
 struct sshkey   *sshkey_new(int);  struct sshkey   *sshkey_new(int);
 void             sshkey_free(struct sshkey *);  void             sshkey_free(struct sshkey *);
 int              sshkey_equal_public(const struct sshkey *,  int              sshkey_equal_public(const struct sshkey *,

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53