MCPcopy Create free account
hub / github.com/BabitMF/bmf / toString

Method toString

bmf_lite/src/algorithm/modules/operators/utils/SHA256.cpp:176–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176std::string SHA256::toString(const std::array<uint8_t, 32> &digest) {
177 std::stringstream s;
178 s << std::setfill('0') << std::hex;
179
180 for (uint8_t i = 0; i < 32; i++) {
181 s << std::setw(2) << (unsigned int)digest[i];
182 }
183
184 return s.str();
185}
186} // namespace bmf_lite

Callers 2

afterTextChangedMethod · 0.45
onTexGenPicBtyMethod · 0.45

Calls 1

strMethod · 0.80

Tested by

no test coverage detected