00001
00067 #include "linden_common.h"
00068
00069 #include "llbase32.h"
00070
00071 #include <string>
00072
00073
00074
00075
00076
00077
00078
00079
00080 static const char base32_alphabet[32] = {
00081 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
00082 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
00083 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
00084 'Y', 'Z', '2', '3', '4', '5', '6', '7'
00085 };
00086
00087 size_t
00088 base32_encode(char *dst, size_t size, const void *data, size_t len)
00089 {
00090 size_t i = 0;
00091 const U8 *p = (const U8*)data;
00092 const char *end = &dst[size];
00093 char *q = dst;
00094
00095 do {
00096 size_t j, k;
00097 U8 x[5];
00098 char s[8];
00099
00100 switch (len - i) {
00101 case 4: k = 7; break;
00102 case 3: k = 5; break;
00103 case 2: k = 3; break;
00104 case 1: k = 2; break;
00105 default:
00106 k = 8;
00107 }
00108
00109 for (j = 0; j < 5; j++)
00110 x[j] = i < len ? p[i++] : 0;
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129 s[0] = (x[0] >> 3);
00130 s[1] = ((x[0] & 0x07) << 2) | (x[1] >> 6);
00131 s[2] = (x[1] >> 1) & 0x1f;
00132 s[3] = ((x[1] & 0x01) << 4) | (x[2] >> 4);
00133 s[4] = ((x[2] & 0x0f) << 1) | (x[3] >> 7);
00134 s[5] = (x[3] >> 2) & 0x1f;
00135 s[6] = ((x[3] & 0x03) << 3) | (x[4] >> 5);
00136 s[7] = x[4] & 0x1f;
00137
00138 for (j = 0; j < k && q != end; j++)
00139 *q++ = base32_alphabet[(U8) s[j]];
00140
00141 } while (i < len);
00142
00143 return q - dst;
00144 }
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227 std::string LLBase32::encode(const U8* input, size_t input_size)
00228 {
00229 std::string output;
00230 if (input)
00231 {
00232
00233
00234 size_t input_chunks = (input_size + 4) / 5;
00235 size_t output_size = input_chunks * 8;
00236
00237 output.resize(output_size);
00238
00239 size_t encoded = base32_encode(&output[0], output_size, input, input_size);
00240
00241 llinfos << "encoded " << encoded << " into buffer of size "
00242 << output_size << llendl;
00243 }
00244 return output;
00245 }