MCPcopy Create free account
hub / github.com/cinder/Cinder / base64_encode_value

Function base64_encode_value

src/cinder/Base64.cpp:132–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130}
131
132char base64_encode_value(char value_in)
133{
134 static const char* encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
135 if (value_in > 63) return '=';
136 return encoding[(int)value_in];
137}
138
139ptrdiff_t base64_encode_block(const char* plaintext_in, size_t length_in, char* code_out, base64_encodestate* state_in, int charsPerLine )
140{

Callers 2

base64_encode_blockFunction · 0.85
base64_encode_blockendFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected