Home
last modified time | relevance | path

Searched refs:base64Decoder (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/src/
H A Dbase64_helper.cpp25 static const uint8_t base64Decoder[] = { variable
91 uint8_t ch1 = base64Decoder[static_cast<uint8_t>(input.at(index++))]; in Decode()
92 uint8_t ch2 = base64Decoder[static_cast<uint8_t>(input.at(index++))]; in Decode()
100 uint8_t ch3 = base64Decoder[static_cast<uint8_t>(input.at(index++))]; in Decode()
108 uint8_t ch4 = base64Decoder[static_cast<uint8_t>(input.at(index++))]; in Decode()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/codec/src/
H A Dimage_source.cpp2761 SkBase64 base64Decoder; in DecodeBase64() local
2762 if (base64Decoder.decode(sub, subSize) != SkBase64::kNoError) { in DecodeBase64()
2766 auto base64Data = base64Decoder.getData(); in DecodeBase64()
2769 auto result = BufferSourceStream::CreateSourceStream(imageData, base64Decoder.getDataSize()); in DecodeBase64()