-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBase64.h
54 lines (50 loc) · 1.34 KB
/
Base64.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
#ifndef BASE64_H
#define BASE64_H
#include <vector>
#include <string>
namespace Base64
{
std::string base64_encode (const std::string &);
const std::string &SALT1 = "LM::TB::BB";
const std::string &SALT2 = "_:/_77";
const std::string &SALT3 = "uR_screWed";
std::string EncryptB64 (std::string s)
{
s = SALT1 + s + SALT2 + SALT3;
s = base64_encode(s);
s.insert(7, SALT3);
s += SALT1;
s = base64_encode(s);
s = SALT1 + s + SALT2 + SALT3;
s = base64_encode(s);
s.insert(1, "L");
s.insert(7, "M");
return s;
}
const std::string &BASE64_CODES = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
std::string base64_encode(const std::string &s)
{
std::string ret;
int val = 0;
int bits = -6;
const unsigned int b63 = 0x3F;
for (const auto &c : s)
{
val = (val << 8) + c;
bits += 8;
while (bits >= 0)
{
ret.push_back(BASE64_CODES[(val >> bits) & b63]);
bits -= 6;
}
}
if (bits > -6)
{
ret.push_back(BASE64_CODES[((val << 8) >> (bits + 8)) & b63]);
}
while(ret.size()%4)
ret.push_back('-');
return ret;
}
}
#endif // BASE_64