| 155 | |
| 156 | template <typename InIter> |
| 157 | void 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 | |
| 163 | template <typename InContainer> |
| 164 | void bytes_to_hex_string(const InContainer& bytes, std::string& hex_str) { |
no test coverage detected