chiark / gitweb /
Loosen playlist command rights.
[disorder] / lib / base64.c
CommitLineData
fce810c2
RK
1/*
2 * This file is part of DisOrder
5aff007d 3 * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
fce810c2
RK
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20/** @file lib/base64.c
21 * @brief Support for MIME base64
22 */
23
05b75f8d 24#include "common.h"
fce810c2
RK
25
26#include "mem.h"
27#include "base64.h"
28#include "vector.h"
29
30static const char mime_base64_table[] =
86e3aea7 31 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
fce810c2
RK
32
33/** @brief Convert MIME base64
34 * @param s base64 data
158d0961 35 * @param nsp Where to store length of converted data
fce810c2 36 * @return Decoded data
78d8e29d
RK
37 *
38 * See <a href="http://tools.ietf.org/html/rfc2045#section-6.8">RFC
39 * 2045 s6.8</a>.
fce810c2
RK
40 */
41char *mime_base64(const char *s, size_t *nsp) {
86e3aea7 42 return generic_base64(s, nsp, mime_base64_table);
43}
44
45/** @brief Convert base64
46 * @param s base64 data
47 * @param nsp Where to store length of converted data
0590cedc 48 * @param table Table of characters to use
86e3aea7 49 * @return Decoded data
50 *
51 * @p table should consist of 65 characters. The first 64 will be used to
52 * represents the 64 digits and the 65th will be used as padding at the end
53 * (i.e. the role of '=' in RFC2045 base64).
54 */
55char *generic_base64(const char *s, size_t *nsp, const char *table) {
fce810c2
RK
56 struct dynstr d;
57 const char *t;
58 int b[4], n, c;
59
60 dynstr_init(&d);
61 n = 0;
62 while((c = (unsigned char)*s++)) {
4d06b900 63 if(c == table[64]) {
64 if(n >= 2) {
65 dynstr_append(&d, (b[0] << 2) + (b[1] >> 4));
66 if(n == 3)
67 dynstr_append(&d, (b[1] << 4) + (b[2] >> 2));
68 }
69 break;
70 } else if((t = strchr(table, c))) {
86e3aea7 71 b[n++] = t - table;
fce810c2
RK
72 if(n == 4) {
73 dynstr_append(&d, (b[0] << 2) + (b[1] >> 4));
74 dynstr_append(&d, (b[1] << 4) + (b[2] >> 2));
75 dynstr_append(&d, (b[2] << 6) + b[3]);
76 n = 0;
77 }
fce810c2
RK
78 }
79 }
80 if(nsp)
81 *nsp = d.nvec;
82 dynstr_terminate(&d);
83 return d.vec;
84}
85
86e3aea7 86/** @brief Convert a binary string to MIME base64
fce810c2
RK
87 * @param s Bytes to convert
88 * @param ns Number of bytes to convert
89 * @return Encoded data
90 *
91 * This function does not attempt to split up lines.
78d8e29d
RK
92 *
93 * See <a href="http://tools.ietf.org/html/rfc2045#section-6.8">RFC
94 * 2045 s6.8</a>.
fce810c2
RK
95 */
96char *mime_to_base64(const uint8_t *s, size_t ns) {
86e3aea7 97 return generic_to_base64(s, ns, mime_base64_table);
98}
99
100/** @brief Convert a binary string to base64
101 * @param s Bytes to convert
102 * @param ns Number of bytes to convert
103 * @param table Table of characters to use
104 * @return Encoded data
105 *
106 * This function does not attempt to split up lines.
107 *
108 * @p table should consist of 65 characters. The first 64 will be used to
109 * represents the 64 digits and the 65th will be used as padding at the end
110 * (i.e. the role of '=' in RFC2045 base64).
111 */
112char *generic_to_base64(const uint8_t *s, size_t ns, const char *table) {
fce810c2
RK
113 struct dynstr d[1];
114
115 dynstr_init(d);
116 while(ns >= 3) {
117 /* Input bytes with output bits: AAAAAABB BBBBCCCC CCDDDDDD */
118 /* Output bytes with input bits: 000000 001111 111122 222222 */
86e3aea7 119 dynstr_append(d, table[s[0] >> 2]);
120 dynstr_append(d, table[((s[0] & 3) << 4)
fce810c2 121 + (s[1] >> 4)]);
86e3aea7 122 dynstr_append(d, table[((s[1] & 15) << 2)
fce810c2 123 + (s[2] >> 6)]);
86e3aea7 124 dynstr_append(d, table[s[2] & 63]);
fce810c2
RK
125 ns -= 3;
126 s += 3;
127 }
128 if(ns > 0) {
86e3aea7 129 dynstr_append(d, table[s[0] >> 2]);
fce810c2
RK
130 switch(ns) {
131 case 1:
86e3aea7 132 dynstr_append(d, table[(s[0] & 3) << 4]);
133 dynstr_append(d, table[64]);
134 dynstr_append(d, table[64]);
fce810c2
RK
135 break;
136 case 2:
86e3aea7 137 dynstr_append(d, table[((s[0] & 3) << 4)
fce810c2 138 + (s[1] >> 4)]);
86e3aea7 139 dynstr_append(d, table[(s[1] & 15) << 2]);
140 dynstr_append(d, table[64]);
fce810c2
RK
141 break;
142 }
143 }
144 dynstr_terminate(d);
145 return d->vec;
146}
147
148/*
149Local Variables:
150c-basic-offset:2
151comment-column:40
152fill-column:79
153End:
154*/