Skip to content
Snippets Groups Projects
Commit 23226b5d authored by Niels Möller's avatar Niels Möller
Browse files

Comment fix, it's BASE64_ENCODE_FINAL_LENGTH, not BASE64_ENCODE_FINAL_SIZE.

Rev: src/nettle/base64.h:1.13
parent 7aef469f
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ base64_encode_update(struct base64_encode_ctx *ctx, ...@@ -81,7 +81,7 @@ base64_encode_update(struct base64_encode_ctx *ctx,
const uint8_t *src); const uint8_t *src);
/* DST should point to an area of size at least /* DST should point to an area of size at least
* BASE64_ENCODE_FINAL_SIZE */ * BASE64_ENCODE_FINAL_LENGTH */
unsigned unsigned
base64_encode_final(struct base64_encode_ctx *ctx, base64_encode_final(struct base64_encode_ctx *ctx,
uint8_t *dst); uint8_t *dst);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment