/*1* Copyright (c) 2006 Ryan Martell. ([email protected])2*3* This file is part of FFmpeg.4*5* FFmpeg is free software; you can redistribute it and/or6* modify it under the terms of the GNU Lesser General Public7* License as published by the Free Software Foundation; either8* version 2.1 of the License, or (at your option) any later version.9*10* FFmpeg is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU13* Lesser General Public License for more details.14*15* You should have received a copy of the GNU Lesser General Public16* License along with FFmpeg; if not, write to the Free Software17* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA18*/1920#ifndef AVUTIL_BASE64_H21#define AVUTIL_BASE64_H2223#include <stdint.h>2425/**26* @defgroup lavu_base64 Base6427* @ingroup lavu_crypto28* @{29*/303132/**33* Decode a base64-encoded string.34*35* @param out buffer for decoded data36* @param in null-terminated input string37* @param out_size size in bytes of the out buffer, must be at38* least 3/4 of the length of in39* @return number of bytes written, or a negative value in case of40* invalid input41*/42int av_base64_decode(uint8_t *out, const char *in, int out_size);4344/**45* Encode data to base64 and null-terminate.46*47* @param out buffer for encoded data48* @param out_size size in bytes of the out buffer (including the49* null terminator), must be at least AV_BASE64_SIZE(in_size)50* @param in input buffer containing the data to encode51* @param in_size size in bytes of the in buffer52* @return out or NULL in case of error53*/54char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);5556/**57* Calculate the output size needed to base64-encode x bytes to a58* null-terminated string.59*/60#define AV_BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1)6162/**63* @}64*/6566#endif /* AVUTIL_BASE64_H */676869