From d78f986351369f4e0deec51d6dc5d829fea79380 Mon Sep 17 00:00:00 2001 From: Matthew Fala Date: Tue, 14 Dec 2021 11:16:28 -0800 Subject: [PATCH] out_kinesis_firehose: migrate to performant base64 implementation Signed-off-by: Matthew Fala --- plugins/out_kinesis_firehose/firehose_api.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/out_kinesis_firehose/firehose_api.c b/plugins/out_kinesis_firehose/firehose_api.c index 2e5cd751e43..33841b7b716 100644 --- a/plugins/out_kinesis_firehose/firehose_api.c +++ b/plugins/out_kinesis_firehose/firehose_api.c @@ -36,8 +36,9 @@ #include #include +#include + #include -#include #include #include #include @@ -276,7 +277,7 @@ static int process_event(struct flb_firehose *ctx, struct flush *buf, } tmp_buf_ptr = buf->tmp_buf + buf->tmp_buf_offset; - ret = mbedtls_base64_encode((unsigned char *) buf->event_buf, size, &b64_len, + ret = flb_base64_encode((unsigned char *) buf->event_buf, size, &b64_len, (unsigned char *) tmp_buf_ptr, written); if (ret != 0) { flb_errno();