This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbase64.c
130 lines (109 loc) · 2.78 KB
/
base64.c
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* $Id$ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <sys/types.h>
#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>
#include "extern.h"
static const char b64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789+/";
/*
* Compute the maximum buffer required for a base64 encoded string of
* length "len".
*/
size_t
base64len(size_t len)
{
return (((len + 2) / 3 * 4) + 1);
}
/*
* Base64 computation.
* This is heavily "assert"-d because Coverity complains.
*/
size_t
base64buf(char *enc, const char *str, size_t len)
{
size_t i, val;
char *p;
p = enc;
for (i = 0; i < len - 2; i += 3) {
val = (str[i] >> 2) & 0x3F;
assert(val < sizeof(b64));
*p++ = b64[val];
val = ((str[i] & 0x3) << 4) |
((int)(str[i + 1] & 0xF0) >> 4);
assert(val < sizeof(b64));
*p++ = b64[val];
val = ((str[i + 1] & 0xF) << 2) |
((int)(str[i + 2] & 0xC0) >> 6);
assert(val < sizeof(b64));
*p++ = b64[val];
val = str[i + 2] & 0x3F;
assert(val < sizeof(b64));
*p++ = b64[val];
}
if (i < len) {
val = (str[i] >> 2) & 0x3F;
assert(val < sizeof(b64));
*p++ = b64[val];
if (i == (len - 1)) {
val = ((str[i] & 0x3) << 4);
assert(val < sizeof(b64));
*p++ = b64[val];
*p++ = '=';
} else {
val = ((str[i] & 0x3) << 4) |
((int)(str[i + 1] & 0xF0) >> 4);
assert(val < sizeof(b64));
*p++ = b64[val];
val = ((str[i + 1] & 0xF) << 2);
assert(val < sizeof(b64));
*p++ = b64[val];
}
*p++ = '=';
}
*p++ = '\0';
return(p - enc);
}
/*
* Pass a stream of bytes to be base64 encoded, then converted into
* base64url format.
* Returns NULL on allocation failure (not logged).
*/
char *
base64buf_url(const char *data, size_t len)
{
size_t i, sz;
char *buf;
sz = base64len(len);
if (NULL == (buf = malloc(sz)))
return (NULL);
base64buf(buf, data, len);
for (i = 0; i < sz; i++)
if ('+' == buf[i])
buf[i] = '-';
else if ('/' == buf[i])
buf[i] = '_';
else if ('=' == buf[i])
buf[i] = '\0';
return (buf);
}