[BACK]Return to ssh-xmss.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-xmss.c between version 1.12 and 1.13

version 1.12, 2022/10/28 00:43:08 version 1.13, 2022/10/28 00:44:17
Line 79 
Line 79 
 }  }
   
 static int  static int
   ssh_xmss_serialize_private(const struct sshkey *key, struct sshbuf *b,
       enum sshkey_serialize_rep opts)
   {
           int r;
   
           if (key->xmss_name == NULL)
                   return SSH_ERR_INVALID_ARGUMENT;
           /* Note: can't reuse ssh_xmss_serialize_public because of sk order */
           if ((r = sshbuf_put_cstring(b, key->xmss_name)) != 0 ||
               (r = sshbuf_put_string(b, key->xmss_pk,
               sshkey_xmss_pklen(key))) != 0 ||
               (r = sshbuf_put_string(b, key->xmss_sk,
               sshkey_xmss_sklen(key))) != 0 ||
               (r = sshkey_xmss_serialize_state_opt(key, b, opts)) != 0)
                   return r;
   
           return 0;
   }
   
   static int
 ssh_xmss_copy_public(const struct sshkey *from, struct sshkey *to)  ssh_xmss_copy_public(const struct sshkey *from, struct sshkey *to)
 {  {
         int r = SSH_ERR_INTERNAL_ERROR;          int r = SSH_ERR_INTERNAL_ERROR;
Line 293 
Line 313 
         /* .equal = */          ssh_xmss_equal,          /* .equal = */          ssh_xmss_equal,
         /* .ssh_serialize_public = */ ssh_xmss_serialize_public,          /* .ssh_serialize_public = */ ssh_xmss_serialize_public,
         /* .ssh_deserialize_public = */ ssh_xmss_deserialize_public,          /* .ssh_deserialize_public = */ ssh_xmss_deserialize_public,
           /* .ssh_serialize_private = */ ssh_xmss_serialize_private,
         /* .generate = */       sshkey_xmss_generate_private_key,          /* .generate = */       sshkey_xmss_generate_private_key,
         /* .copy_public = */    ssh_xmss_copy_public,          /* .copy_public = */    ssh_xmss_copy_public,
         /* .sign = */           ssh_xmss_sign,          /* .sign = */           ssh_xmss_sign,

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13