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

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

version 1.2, 2014/06/10 21:46:11 version 1.3, 2014/06/24 01:13:21
Line 214 
Line 214 
 int     sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);  int     sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);
 int     sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v);  int     sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v);
   
 /* Dump the contents of the buffer to stderr in a human-readable format */  /* Dump the contents of the buffer in a human-readable format */
 void    sshbuf_dump(struct sshbuf *buf, FILE *f);  void    sshbuf_dump(struct sshbuf *buf, FILE *f);
   
   /* Dump specified memory in a human-readable format */
   void    sshbuf_dump_data(const void *s, size_t len, FILE *f);
   
 /* Return the hexadecimal representation of the contents of the buffer */  /* Return the hexadecimal representation of the contents of the buffer */
 char    *sshbuf_dtob16(struct sshbuf *buf);  char    *sshbuf_dtob16(struct sshbuf *buf);

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