MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / bytes_to_hex_string

Function bytes_to_hex_string

src/pull/picosha2.h:157–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155
156template <typename InIter>
157void bytes_to_hex_string(InIter first, InIter last, std::string& hex_str) {
158 std::ostringstream oss;
159 output_hex(first, last, oss);
160 hex_str.assign(oss.str());
161}
162
163template <typename InContainer>
164void bytes_to_hex_string(const InContainer& bytes, std::string& hex_str) {

Callers 2

calculate_file_sha256Function · 0.85
get_hash_hex_stringFunction · 0.85

Calls 4

output_hexFunction · 0.85
assignMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected