blob: b7318853d28fb11add2b7143081043db6a1ff5b2 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file base64.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief RFC 1521 base64 encoding/decoding
5 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00006 * Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00008 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkerb96f1542010-07-18 20:36:00 +00009 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Paul Bakker5121ce52009-01-03 21:22:43 +000023 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_BASE64_H
25#define MBEDTLS_BASE64_H
Paul Bakker5121ce52009-01-03 21:22:43 +000026
Rich Evans00ab4702015-02-06 13:43:58 +000027#include <stddef.h>
Paul Bakker23986e52011-04-24 08:57:21 +000028
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020029#define MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL -0x002A /**< Output buffer too small. */
30#define MBEDTLS_ERR_BASE64_INVALID_CHARACTER -0x002C /**< Invalid character in input. */
Paul Bakker5121ce52009-01-03 21:22:43 +000031
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/**
37 * \brief Encode a buffer into base64 format
38 *
39 * \param dst destination buffer
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010040 * \param dlen size of the destination buffer
41 * \param olen number of bytes written
Paul Bakker5121ce52009-01-03 21:22:43 +000042 * \param src source buffer
43 * \param slen amount of data to be encoded
44 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020045 * \return 0 if successful, or MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL.
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010046 * *olen is always updated to reflect the amount
Paul Bakker5121ce52009-01-03 21:22:43 +000047 * of data that has (or would have) been written.
48 *
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010049 * \note Call this function with dlen = 0 to obtain the
50 * required buffer size in *olen
Paul Bakker5121ce52009-01-03 21:22:43 +000051 */
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010052int mbedtls_base64_encode( unsigned char *dst, size_t dlen, size_t *olen,
Paul Bakker23986e52011-04-24 08:57:21 +000053 const unsigned char *src, size_t slen );
Paul Bakker5121ce52009-01-03 21:22:43 +000054
55/**
56 * \brief Decode a base64-formatted buffer
57 *
Paul Bakkerf4a14272013-07-05 10:29:12 +020058 * \param dst destination buffer (can be NULL for checking size)
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010059 * \param dlen size of the destination buffer
60 * \param olen number of bytes written
Paul Bakker5121ce52009-01-03 21:22:43 +000061 * \param src source buffer
62 * \param slen amount of data to be decoded
63 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020064 * \return 0 if successful, MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL, or
65 * MBEDTLS_ERR_BASE64_INVALID_CHARACTER if the input data is
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010066 * not correct. *olen is always updated to reflect the amount
Paul Bakker5121ce52009-01-03 21:22:43 +000067 * of data that has (or would have) been written.
68 *
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010069 * \note Call this function with *dst = NULL or dlen = 0 to obtain
70 * the required buffer size in *olen
Paul Bakker5121ce52009-01-03 21:22:43 +000071 */
Manuel Pégourié-Gonnardba561362015-06-02 16:30:35 +010072int mbedtls_base64_decode( unsigned char *dst, size_t dlen, size_t *olen,
Paul Bakker23986e52011-04-24 08:57:21 +000073 const unsigned char *src, size_t slen );
Paul Bakker5121ce52009-01-03 21:22:43 +000074
75/**
76 * \brief Checkup routine
77 *
78 * \return 0 if successful, or 1 if the test failed
79 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080int mbedtls_base64_self_test( int verbose );
Paul Bakker5121ce52009-01-03 21:22:43 +000081
82#ifdef __cplusplus
83}
84#endif
85
86#endif /* base64.h */