blob: 32634f8c99fbee913ee7e6de33d39b94a2f8aa31 [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 *
Paul Bakker530927b2015-02-13 14:24:10 +01006 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Manuel Pégourié-Gonnarde12abf92015-01-28 17:13:45 +00008 * This file is part of mbed TLS (https://polarssl.org)
Paul Bakkere0ccd0a2009-01-04 16:27:10 +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 */
Paul Bakker40e46942009-01-03 21:51:57 +000024#ifndef POLARSSL_BASE64_H
25#define POLARSSL_BASE64_H
Paul Bakker5121ce52009-01-03 21:22:43 +000026
Paul Bakker23986e52011-04-24 08:57:21 +000027#include <string.h>
28
Paul Bakker69e095c2011-12-10 21:55:01 +000029#define POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL -0x002A /**< Output buffer too small. */
30#define POLARSSL_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
40 * \param dlen size of the buffer
41 * \param src source buffer
42 * \param slen amount of data to be encoded
43 *
Paul Bakker40e46942009-01-03 21:51:57 +000044 * \return 0 if successful, or POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL.
Paul Bakker5121ce52009-01-03 21:22:43 +000045 * *dlen is always updated to reflect the amount
46 * of data that has (or would have) been written.
Manuel Pégourié-Gonnarde4e4be72015-09-30 16:30:28 +020047 * If that length cannot be represented, then no data is
48 * written to the buffer and *dlen is set to SIZE_T_MAX.
Paul Bakker5121ce52009-01-03 21:22:43 +000049 *
50 * \note Call this function with *dlen = 0 to obtain the
51 * required buffer size in *dlen
52 */
Paul Bakker23986e52011-04-24 08:57:21 +000053int base64_encode( unsigned char *dst, size_t *dlen,
54 const unsigned char *src, size_t slen );
Paul Bakker5121ce52009-01-03 21:22:43 +000055
56/**
57 * \brief Decode a base64-formatted buffer
58 *
59 * \param dst destination buffer
60 * \param dlen size of the buffer
61 * \param src source buffer
62 * \param slen amount of data to be decoded
63 *
Paul Bakker40e46942009-01-03 21:51:57 +000064 * \return 0 if successful, POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL, or
Paul Bakkerfbb5cf92013-02-14 11:56:58 +010065 * POLARSSL_ERR_BASE64_INVALID_CHARACTER if the input data is
66 * not correct. *dlen 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 *
69 * \note Call this function with *dlen = 0 to obtain the
70 * required buffer size in *dlen
71 */
Paul Bakker23986e52011-04-24 08:57:21 +000072int base64_decode( unsigned char *dst, size_t *dlen,
73 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 */
80int base64_self_test( int verbose );
81
82#ifdef __cplusplus
83}
84#endif
85
86#endif /* base64.h */