Path: blob/master/dep/ffmpeg/include/libavutil/base64.h
4216 views
/*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*/3031/**32* Decode a base64-encoded string.33*34* @param out buffer for decoded data35* @param in null-terminated input string36* @param out_size size in bytes of the out buffer, must be at37* least 3/4 of the length of in, that is AV_BASE64_DECODE_SIZE(strlen(in))38* @return number of bytes written, or a negative value in case of39* invalid input40*/41int av_base64_decode(uint8_t *out, const char *in, int out_size);4243/**44* Calculate the output size in bytes needed to decode a base64 string45* with length x to a data buffer.46*/47#define AV_BASE64_DECODE_SIZE(x) ((x) * 3LL / 4)4849/**50* Encode data to base64 and null-terminate.51*52* @param out buffer for encoded data53* @param out_size size in bytes of the out buffer (including the54* null terminator), must be at least AV_BASE64_SIZE(in_size)55* @param in input buffer containing the data to encode56* @param in_size size in bytes of the in buffer57* @return out or NULL in case of error58*/59char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);6061/**62* Calculate the output size needed to base64-encode x bytes to a63* null-terminated string.64*/65#define AV_BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1)6667/**68* @}69*/7071#endif /* AVUTIL_BASE64_H */727374