MCPcopy Create free account
hub / github.com/Clarionos/clarion / base64url_encode

Function base64url_encode

libraries/fc/src/crypto/base64.cpp:101–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101std::string base64url_encode(unsigned char const* bytes_to_encode, unsigned int in_len) {
102 return base64_encode_impl(bytes_to_encode, in_len, base64url_chars);
103}
104
105std::string base64url_encode( const std::string& enc ) {
106 char const* s = enc.c_str();

Callers

nothing calls this directly

Calls 3

base64_encode_implFunction · 0.85
c_strMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected