blob: dce7682634ccd07669b612949504728a26aacab5 [file] [log] [blame]
James Kuszmaul82f6c042021-01-17 11:30:16 -08001/**
2 * @file re_base64.h Interface to Base64 encoding/decoding functions
3 *
4 * Copyright (C) 2010 Creytiv.com
5 */
6
7
8int base64_encode(const uint8_t *in, size_t ilen, char *out, size_t *olen);
9int base64_print(struct re_printf *pf, const uint8_t *ptr, size_t len);
10int base64_decode(const char *in, size_t ilen, uint8_t *out, size_t *olen);