-
Notifications
You must be signed in to change notification settings - Fork 129
/
bin2ascii.h
134 lines (124 loc) · 5.04 KB
/
bin2ascii.h
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
131
132
133
134
/*
* Copyright (c) 2013 Pavel Shramov <shramov@mexmat.net>
*
* json2pb is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef __BIN2ASCII_H__
#define __BIN2ASCII_H__
#include <string>
#include <stdexcept>
inline std::string hex2bin(const std::string &s)
{
if (s.size() % 2)
throw std::runtime_error("Odd hex data size");
static const char lookup[] = ""
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x00
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x10
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x20
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x80\x80\x80\x80\x80\x80" // 0x30
"\x80\x0a\x0b\x0c\x0d\x0e\x0f\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x40
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x50
"\x80\x0a\x0b\x0c\x0d\x0e\x0f\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x60
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x70
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x80
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x90
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xa0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xb0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xc0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xd0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xe0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xf0
"";
std::string r;
r.reserve(s.size() / 2);
for (size_t i = 0; i < s.size(); i += 2) {
char hi = lookup[s[i]];
char lo = lookup[s[i+1]];
if (0x80 & (hi | lo))
throw std::runtime_error("Invalid hex data: " + s.substr(i, 6));
r.push_back((hi << 4) | lo);
}
return r;
}
inline std::string bin2hex(const std::string &s)
{
static const char lookup[] = "0123456789abcdef";
std::string r;
r.reserve(s.size() * 2);
for (size_t i = 0; i < s.size(); i++) {
char hi = s[i] >> 4;
char lo = s[i] & 0xf;
r.push_back(lookup[hi]);
r.push_back(lookup[lo]);
}
return r;
}
inline std::string b64_encode(const std::string &s)
{
typedef unsigned char u1;
static const char lookup[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
const u1 * data = (const u1 *) s.c_str();
std::string r;
r.reserve(s.size() * 4 / 3 + 3);
for (size_t i = 0; i < s.size(); i += 3) {
unsigned n = data[i] << 16;
if (i + 1 < s.size()) n |= data[i + 1] << 8;
if (i + 2 < s.size()) n |= data[i + 2];
u1 n0 = (u1)(n >> 18) & 0x3f;
u1 n1 = (u1)(n >> 12) & 0x3f;
u1 n2 = (u1)(n >> 6) & 0x3f;
u1 n3 = (u1)(n ) & 0x3f;
r.push_back(lookup[n0]);
r.push_back(lookup[n1]);
if (i + 1 < s.size()) r.push_back(lookup[n2]);
if (i + 2 < s.size()) r.push_back(lookup[n3]);
}
for (int i = 0; i < (3 - s.size() % 3) % 3; i++)
r.push_back('=');
return r;
}
inline std::string b64_decode(const std::string &s)
{
typedef unsigned char u1;
static const char lookup[] = ""
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x00
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x10
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x3e\x80\x80\x80\x3f" // 0x20
"\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x80\x80\x80\x00\x80\x80" // 0x30
"\x80\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e" // 0x40
"\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x80\x80\x80\x80\x80" // 0x50
"\x80\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\x23\x24\x25\x26\x27\x28" // 0x60
"\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\x33\x80\x80\x80\x80\x80" // 0x70
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x80
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0x90
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xa0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xb0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xc0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xd0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xe0
"\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80" // 0xf0
"";
std::string r;
if (!s.size()) return r;
if (s.size() % 4)
throw std::runtime_error("Invalid base64 data size");
size_t pad = 0;
if (s[s.size() - 1] == '=') pad++;
if (s[s.size() - 2] == '=') pad++;
r.reserve(s.size() * 3 / 4 + 3);
for (size_t i = 0; i < s.size(); i += 4) {
u1 n0 = lookup[(u1) s[i+0]];
u1 n1 = lookup[(u1) s[i+1]];
u1 n2 = lookup[(u1) s[i+2]];
u1 n3 = lookup[(u1) s[i+3]];
if (0x80 & (n0 | n1 | n2 | n3))
throw std::runtime_error("Invalid hex data: " + s.substr(i, 4));
unsigned n = (n0 << 18) | (n1 << 12) | (n2 << 6) | n3;
r.push_back((n >> 16) & 0xff);
if (s[i+2] != '=') r.push_back((n >> 8) & 0xff);
if (s[i+3] != '=') r.push_back((n ) & 0xff);
}
return r;
}
#endif//__BIN2ASCII_H__