Searched refs:Base64 (Results 1 – 11 of 11) sorted by relevance
15 src/Library/Base64.cpp | 1 -16 src/Library/Base64.hpp | 1 +19 diff --git a/src/Library/Base64.cpp b/src/Library/Base64.cpp21 --- a/src/Library/Base64.cpp22 +++ b/src/Library/Base64.cpp25 #include "Base64.hpp"31 diff --git a/src/Library/Base64.hpp b/src/Library/Base64.hpp33 --- a/src/Library/Base64.hpp34 +++ b/src/Library/Base64.hpp
69 HttpBody::value_type value(EncodingType::Base64); in TEST()80 EXPECT_EQ(value2.encodingType, EncodingType::Base64); in TEST()93 HttpBody::value_type value(EncodingType::Base64); in TEST()104 EXPECT_EQ(value2.encodingType, EncodingType::Base64); in TEST()116 HttpBody::value_type value(EncodingType::Base64); in TEST()
109 res.openFd(fileno(fd), bmcweb::EncodingType::Base64); in TEST()151 res.openFd(fileno(f), bmcweb::EncodingType::Base64); in TEST()166 res.openFd(file.native_handle(), bmcweb::EncodingType::Base64); in TEST()
99 +static const char Base64[] =191 + target[datalength++] = Base64[output[0]];192 + target[datalength++] = Base64[output[1]];193 + target[datalength++] = Base64[output[2]];194 + target[datalength++] = Base64[output[3]];213 + target[datalength++] = Base64[output[0]];214 + target[datalength++] = Base64[output[1]];218 + target[datalength++] = Base64[output[2]];248 + pos = strchr(Base64, ch);257 + target[tarindex] = (pos - Base64) << 2;[all …]
108 +static const char Base64[] =199 + target[datalength++] = Base64[output[0]];200 + target[datalength++] = Base64[output[1]];201 + target[datalength++] = Base64[output[2]];202 + target[datalength++] = Base64[output[3]];221 + target[datalength++] = Base64[output[0]];222 + target[datalength++] = Base64[output[1]];226 + target[datalength++] = Base64[output[2]];257 + pos = strchr(Base64, ch);266 + target[tarindex] = (pos - Base64) << 2;[all …]
36 Base64, enumerator74 if (encodingType == EncodingType::Base64) in payloadSize()209 if (body.encodingType == EncodingType::Base64) in getWithMaxSize()
1 SUMMARY = "Base64 Encoding/Decoding Routines"
48 Base64 encoded cryptographic signed statement generated by the
118 # @base64: Data is Base64 encoded binary (RFC 3548)
285 Base64-encoded JSON representation of the entire `Logging.Entry` for445 1. A Base64-encoded JSON representation of the `Logging.Entry` will be assigned
658 if (!asyncResp->res.openFd(fd, bmcweb::EncodingType::Base64)) in downloadEntryCallback()