Skip to content

Commit

Permalink
Merge cbe0526 into 71b40ff
Browse files Browse the repository at this point in the history
  • Loading branch information
chu11 committed Aug 3, 2017
2 parents 71b40ff + cbe0526 commit 35a1eb5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/common/libutil/base64.h
Expand Up @@ -104,15 +104,15 @@ int base64_cleanup (base64_ctx *x);

int base64_encode_block (void *dst, int *dstlen, const void *src, int srclen);
/*
* Base64-encodes [srclen] bytes from the contiguous [src] into [dst].
* If [dstlen] is not NULL, it will be set to the number of bytes written.
* Base64-encodes [srclen] bytes from the contiguous [src] into [dst], and
* [dstlen] will be set to the number of bytes written.
* Returns 0 on success, or -1 on error.
*/

int base64_decode_block (void *dst, int *dstlen, const void *src, int srclen);
/*
* Base64-decodes [srclen] bytes from the contiguous [src] into [dst].
* If [dstlen] is not NULL, it will be set to the number of bytes written.
* Base64-decodes [srclen] bytes from the contiguous [src] into [dst], and
* [dstlen] will be set to the number of bytes written.
* Returns 0 on success, or -1 on error.
*/

Expand Down

0 comments on commit 35a1eb5

Please sign in to comment.