-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Server: accept json inputs + return bas64 image
- Loading branch information
Showing
2 changed files
with
204 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
//FROM | ||
//https://stackoverflow.com/a/34571089/5155484 | ||
|
||
static const std::string b = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";//= | ||
static std::string base64_encode(const std::string &in) { | ||
std::string out; | ||
|
||
int val=0, valb=-6; | ||
for (uint8_t c : in) { | ||
val = (val<<8) + c; | ||
valb += 8; | ||
while (valb>=0) { | ||
out.push_back(b[(val>>valb)&0x3F]); | ||
valb-=6; | ||
} | ||
} | ||
if (valb>-6) out.push_back(b[((val<<8)>>(valb+8))&0x3F]); | ||
while (out.size()%4) out.push_back('='); | ||
return out; | ||
} | ||
|
||
|
||
static std::string base64_decode(const std::string &in) { | ||
|
||
std::string out; | ||
|
||
std::vector<int> T(256,-1); | ||
for (int i=0; i<64; i++) T[b[i]] = i; | ||
|
||
int val=0, valb=-8; | ||
for (uint8_t c : in) { | ||
if (T[c] == -1) break; | ||
val = (val<<6) + T[c]; | ||
valb += 6; | ||
if (valb>=0) { | ||
out.push_back(char((val>>valb)&0xFF)); | ||
valb-=8; | ||
} | ||
} | ||
return out; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters