1
1
/* *
2
- * Copyright (c) 2006-2008 Apple Inc. All rights reserved.
2
+ * Copyright (c) 2006-2018 Apple Inc. All rights reserved.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
16
16
17
17
#include " base64.h"
18
18
19
- #include <errno.h>
20
- #include <stdio.h>
21
19
#include < stdlib.h>
22
20
#include < string.h>
23
21
24
- void die2 (const char * message ) {
25
- if (errno ) {
26
- perror (message );
27
- } else {
28
- printf ("ERROR: %s\n" , message );
29
- }
30
-
31
- exit (1 );
32
- }
33
-
34
22
// base64 tables
35
- static char basis_64 [] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ;
36
- static signed char index_64 [128 ] = {
37
- -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 ,
38
- -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 62 ,
39
- -1 , -1 , -1 , 63 , 52 , 53 , 54 , 55 , 56 , 57 , 58 , 59 , 60 , 61 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , 0 ,
40
- 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 , 17 , 18 , 19 , 20 , 21 , 22 ,
41
- 23 , 24 , 25 , -1 , -1 , -1 , -1 , -1 , -1 , 26 , 27 , 28 , 29 , 30 , 31 , 32 , 33 , 34 , 35 , 36 , 37 , 38 ,
42
- 39 , 40 , 41 , 42 , 43 , 44 , 45 , 46 , 47 , 48 , 49 , 50 , 51 , -1 , -1 , -1 , -1 , -1 };
43
- #define CHAR64 (c ) (((c) < 0 || (c) > 127) ? -1 : index_64[(c)])
23
+ static char basis_64[] =
24
+ " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ;
25
+ static signed char index_64[128 ] =
26
+ {
27
+ -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 ,
28
+ -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 ,
29
+ -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 , -1 ,-1 ,-1 ,62 , -1 ,-1 ,-1 ,63 ,
30
+ 52 ,53 ,54 ,55 , 56 ,57 ,58 ,59 , 60 ,61 ,-1 ,-1 , -1 ,-1 ,-1 ,-1 ,
31
+ -1 , 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 ,10 , 11 ,12 ,13 ,14 ,
32
+ 15 ,16 ,17 ,18 , 19 ,20 ,21 ,22 , 23 ,24 ,25 ,-1 , -1 ,-1 ,-1 ,-1 ,
33
+ -1 ,26 ,27 ,28 , 29 ,30 ,31 ,32 , 33 ,34 ,35 ,36 , 37 ,38 ,39 ,40 ,
34
+ 41 ,42 ,43 ,44 , 45 ,46 ,47 ,48 , 49 ,50 ,51 ,-1 , -1 ,-1 ,-1 ,-1
35
+ };
36
+ #define CHAR64 (c ) (((c) < 0 || (c) > 127 ) ? -1 : index_64[(c)])
44
37
45
38
// base64_encode : base64 encode
46
39
//
47
40
// value : data to encode
48
41
// vlen : length of data
49
42
// (result) : new char[] - c-str of result
50
- char * base64_encode (const unsigned char * value , int vlen ) {
51
- char * result = (char * )malloc ((vlen * 4 ) / 3 + 5 );
43
+ char *base64_encode (const unsigned char *value, size_t vlen)
44
+ {
45
+ char *result = (char *)malloc ((vlen * 4 ) / 3 + 5 );
52
46
if (result == NULL )
53
- die2 ("Memory allocation failed" );
54
- char * out = result ;
55
- while (vlen >= 3 ) {
47
+ {
48
+ return NULL ;
49
+ }
50
+ char *out = result;
51
+ while (vlen >= 3 )
52
+ {
56
53
*out++ = basis_64[value[0 ] >> 2 ];
57
54
*out++ = basis_64[((value[0 ] << 4 ) & 0x30 ) | (value[1 ] >> 4 )];
58
55
*out++ = basis_64[((value[1 ] << 2 ) & 0x3C ) | (value[2 ] >> 6 )];
59
56
*out++ = basis_64[value[2 ] & 0x3F ];
60
57
value += 3 ;
61
58
vlen -= 3 ;
62
59
}
63
- if (vlen > 0 ) {
60
+ if (vlen > 0 )
61
+ {
64
62
*out++ = basis_64[value[0 ] >> 2 ];
65
63
unsigned char oval = (value[0 ] << 4 ) & 0x30 ;
66
- if (vlen > 1 )
67
- oval |= value [1 ] >> 4 ;
64
+ if (vlen > 1 ) oval |= value[1 ] >> 4 ;
68
65
*out++ = basis_64[oval];
69
66
*out++ = (vlen < 2 ) ? ' =' : basis_64[(value[1 ] << 2 ) & 0x3C ];
70
67
*out++ = ' =' ;
@@ -79,42 +76,48 @@ char* base64_encode(const unsigned char* value, int vlen) {
79
76
// value : c-str to decode
80
77
// rlen : length of decoded result
81
78
// (result) : new unsigned char[] - decoded result
82
- unsigned char * base64_decode (const char * value , int * rlen ) {
79
+ unsigned char *base64_decode (const char *value, size_t *rlen)
80
+ {
83
81
*rlen = 0 ;
84
82
int c1, c2, c3, c4;
85
83
86
- int vlen = strlen (value );
87
- unsigned char * result = (unsigned char * )malloc ((vlen * 3 ) / 4 + 1 );
84
+ size_t vlen = strlen (value);
85
+ unsigned char * result =(unsigned char *)malloc ((vlen * 3 ) / 4 + 1 );
88
86
if (result == NULL )
89
- die2 ("Memory allocation failed" );
90
- unsigned char * out = result ;
87
+ {
88
+ return NULL ;
89
+ }
90
+ unsigned char *out = result;
91
91
92
92
while (1 ) {
93
- if (value [0 ] == 0 )
93
+ if (value[0 ]== 0 ) {
94
94
return result;
95
+ }
95
96
c1 = value[0 ];
96
- if (CHAR64 (c1 ) == -1 )
97
- goto base64_decode_error ;
98
- ;
97
+ if (CHAR64 (c1) == -1 ) {
98
+ goto base64_decode_error;;
99
+ }
99
100
c2 = value[1 ];
100
- if (CHAR64 (c2 ) == -1 )
101
- goto base64_decode_error ;
102
- ;
101
+ if (CHAR64 (c2) == -1 ) {
102
+ goto base64_decode_error;;
103
+ }
103
104
c3 = value[2 ];
104
- if ((c3 != '=' ) && (CHAR64 (c3 ) == -1 ))
105
- goto base64_decode_error ;
106
- ;
105
+ if ((c3 != ' =' ) && (CHAR64 (c3) == -1 )) {
106
+ goto base64_decode_error;;
107
+ }
107
108
c4 = value[3 ];
108
- if ((c4 != '=' ) && (CHAR64 (c4 ) == -1 ))
109
- goto base64_decode_error ;
110
- ;
109
+ if ((c4 != ' =' ) && (CHAR64 (c4) == -1 )) {
110
+ goto base64_decode_error;;
111
+ }
111
112
112
113
value += 4 ;
113
114
*out++ = (CHAR64 (c1) << 2 ) | (CHAR64 (c2) >> 4 );
114
115
*rlen += 1 ;
116
+
115
117
if (c3 != ' =' ) {
116
118
*out++ = ((CHAR64 (c2) << 4 ) & 0xf0 ) | (CHAR64 (c3) >> 2 );
117
119
*rlen += 1 ;
120
+
118
121
if (c4 != ' =' ) {
119
122
*out++ = ((CHAR64 (c3) << 6 ) & 0xc0 ) | CHAR64 (c4);
120
123
*rlen += 1 ;
@@ -125,5 +128,6 @@ unsigned char* base64_decode(const char* value, int* rlen) {
125
128
base64_decode_error:
126
129
*result = 0 ;
127
130
*rlen = 0 ;
131
+
128
132
return result;
129
133
}
0 commit comments