Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/antonioCoco/RogueWinRM
/ build_decoding_table
Function
build_decoding_table
base64.cpp:19–25 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
17
18
19
void build_decoding_table() {
20
21
decoding_table = (char*)malloc(256);
22
23
for (int i = 0; i < 64; i++)
24
decoding_table[(unsigned char)encoding_table[i]] = i;
25
}
26
27
28
void base64_cleanup() {
Callers
1
base64_decode
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected