summaryrefslogtreecommitdiff
path: root/include/nsutils/base64.h
blob: 6dba6437945d8c4b08cefc79ed747bd372d829bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of libnsutils.
 *
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 */

/**
 * \file
 * Base64 encoding and decoding interface.
 */

#ifndef NSUTILS_BASE64_H_
#define NSUTILS_BASE64_H_

#include <inttypes.h>

#include <nsutils/errors.h>

/**
 * Base 64 encode data.
 *
 * allocate a buffer and encode source data into it using the Base64 encoding.
 *
 * \param input The source data to encode.
 * \param input_length The length of the source data.
 * \param output The buffer to recive data into, the caller must free.
 * \param output_length The length of data placed in \a output
 * \return NSERROR_OK on success and \a output updated else error code.
 */
nsuerror nsu_base64_encode_alloc(const uint8_t *input,
                                 size_t input_length,
                                 uint8_t **output,
                                 size_t *output_length);

/**
 * Base 64 encode data.
 *
 * allocate a buffer and encode source data into it using the base64 URL safe
 *   encoding.
 *
 * \param input The source data to encode.
 * \param input_length The length of the source data.
 * \param output The buffer to recive data into, the caller must free.
 * \param output_length The length of data placed in \a output
 * \return NSERROR_OK on success and \a output updated else error code.
 */
nsuerror nsu_base64_encode_alloc_url(const uint8_t *input,
                                     size_t input_length,
                                     uint8_t **output,
                                     size_t *output_length);

/**
 * Base 64 decode data.
 *
 * allocate a buffer and decode source data into it using the Base64 encoding.
 *
 * \param input The source data to decode.
 * \param input_length The length of the source data.
 * \param output The buffer to recive data into, the caller must free.
 * \param output_length The length of data placed in \a output
 * \return NSERROR_OK on success and \a output updated else error code.
 */
nsuerror nsu_base64_decode_alloc(const uint8_t *input,
                                 size_t input_length,
                                 uint8_t **output,
                                 size_t *output_length);

/**
 * Base 64 decode data.
 *
 * Allocate a buffer and decode source data into it using the Base64 URL safe
 *   encoding.
 *
 * \param input The source data to decode.
 * \param input_length The length of the source data.
 * \param output The buffer to recive data into, the caller must free.
 * \param output_length The length of data placed in \a output
 * \return NSERROR_OK on success and \a output updated else error code.
 */
nsuerror nsu_base64_decode_alloc_url(const uint8_t *input,
                                     size_t input_length,
                                     uint8_t **output,
                                     size_t *output_length);

#endif