diff options
Diffstat (limited to 'sshbuf.h')
-rw-r--r-- | sshbuf.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshbuf.h,v 1.6 2015/12/10 07:01:35 mmcc Exp $ */ | 1 | /* $OpenBSD: sshbuf.h,v 1.7 2016/05/02 08:49:03 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2011 Damien Miller | 3 | * Copyright (c) 2011 Damien Miller |
4 | * | 4 | * |
@@ -239,6 +239,13 @@ char *sshbuf_dtob64(struct sshbuf *buf); | |||
239 | /* Decode base64 data and append it to the buffer */ | 239 | /* Decode base64 data and append it to the buffer */ |
240 | int sshbuf_b64tod(struct sshbuf *buf, const char *b64); | 240 | int sshbuf_b64tod(struct sshbuf *buf, const char *b64); |
241 | 241 | ||
242 | /* | ||
243 | * Duplicate the contents of a buffer to a string (caller to free). | ||
244 | * Returns NULL on buffer error, or if the buffer contains a premature | ||
245 | * nul character. | ||
246 | */ | ||
247 | char *sshbuf_dup_string(struct sshbuf *buf); | ||
248 | |||
242 | /* Macros for decoding/encoding integers */ | 249 | /* Macros for decoding/encoding integers */ |
243 | #define PEEK_U64(p) \ | 250 | #define PEEK_U64(p) \ |
244 | (((u_int64_t)(((const u_char *)(p))[0]) << 56) | \ | 251 | (((u_int64_t)(((const u_char *)(p))[0]) << 56) | \ |