2009-06-05 07:55:56 +08:00
|
|
|
#ifndef HEADER_CURL_BASE64_H
|
|
|
|
#define HEADER_CURL_BASE64_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-11-29 20:11:46 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-08-03 21:52:06 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-08-03 21:52:06 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-11-29 20:11:46 +08:00
|
|
|
*
|
2001-08-03 21:52:06 +08:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-08-03 21:52:06 +08:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2009-06-05 07:55:56 +08:00
|
|
|
|
2023-07-31 17:50:28 +08:00
|
|
|
#ifndef BUILDING_LIBCURL
|
|
|
|
/* this renames functions so that the tool code can use the same code
|
|
|
|
without getting symbol collisions */
|
|
|
|
#define Curl_base64_encode(a,b,c,d) curlx_base64_encode(a,b,c,d)
|
|
|
|
#define Curl_base64url_encode(a,b,c,d) curlx_base64url_encode(a,b,c,d)
|
|
|
|
#define Curl_base64_decode(a,b,c) curlx_base64_decode(a,b,c)
|
|
|
|
#endif
|
|
|
|
|
2022-02-03 20:04:30 +08:00
|
|
|
CURLcode Curl_base64_encode(const char *inputbuff, size_t insize,
|
2011-08-24 14:07:36 +08:00
|
|
|
char **outptr, size_t *outlen);
|
2022-02-03 20:04:30 +08:00
|
|
|
CURLcode Curl_base64url_encode(const char *inputbuff, size_t insize,
|
2014-07-25 14:24:03 +08:00
|
|
|
char **outptr, size_t *outlen);
|
2011-08-24 14:07:36 +08:00
|
|
|
CURLcode Curl_base64_decode(const char *src,
|
|
|
|
unsigned char **outptr, size_t *outlen);
|
2009-06-05 07:55:56 +08:00
|
|
|
#endif /* HEADER_CURL_BASE64_H */
|