[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.60 and 1.61

version 1.60, 2022/10/28 00:44:17 version 1.61, 2022/10/28 00:44:44
Line 169 
Line 169 
             struct sshkey *);              struct sshkey *);
         int (*serialize_private)(const struct sshkey *, struct sshbuf *,          int (*serialize_private)(const struct sshkey *, struct sshbuf *,
             enum sshkey_serialize_rep);              enum sshkey_serialize_rep);
           int (*deserialize_private)(const char *, struct sshbuf *,
               struct sshkey *);
         int (*generate)(struct sshkey *, int);  /* optional */          int (*generate)(struct sshkey *, int);  /* optional */
         int (*copy_public)(const struct sshkey *, struct sshkey *);          int (*copy_public)(const struct sshkey *, struct sshkey *);
         int (*sign)(struct sshkey *, u_char **, size_t *,          int (*sign)(struct sshkey *, u_char **, size_t *,
Line 322 
Line 324 
 int     sshkey_deserialize_sk(struct sshbuf *b, struct sshkey *key);  int     sshkey_deserialize_sk(struct sshbuf *b, struct sshkey *key);
 int     sshkey_serialize_private_sk(const struct sshkey *key,  int     sshkey_serialize_private_sk(const struct sshkey *key,
     struct sshbuf *buf);      struct sshbuf *buf);
   int     sshkey_private_deserialize_sk(struct sshbuf *buf, struct sshkey *k);
 #ifdef WITH_OPENSSL  #ifdef WITH_OPENSSL
 int     check_rsa_length(const RSA *rsa); /* XXX remove */  int     check_rsa_length(const RSA *rsa); /* XXX remove */
 #endif  #endif

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61