[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.22 and 1.23

version 1.22, 2020/06/05 03:24:36 version 1.23, 2020/06/22 05:54:10
Line 254 
Line 254 
 /* Encode the contents of the buffer as base64 */  /* Encode the contents of the buffer as base64 */
 char    *sshbuf_dtob64_string(const struct sshbuf *buf, int wrap);  char    *sshbuf_dtob64_string(const struct sshbuf *buf, int wrap);
 int     sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap);  int     sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap);
   /* RFC4648 "base64url" encoding variant */
   int     sshbuf_dtourlb64(const struct sshbuf *d, struct sshbuf *b64, int wrap);
   
 /* Decode base64 data and append it to the buffer */  /* Decode base64 data and append it to the buffer */
 int     sshbuf_b64tod(struct sshbuf *buf, const char *b64);  int     sshbuf_b64tod(struct sshbuf *buf, const char *b64);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23