| 19 | |
| 20 | template <unsigned int BITS> |
| 21 | std::string base_blob<BITS>::GetHex() const |
| 22 | { |
| 23 | return HexStr(std::reverse_iterator<const uint8_t*>(data + sizeof(data)), std::reverse_iterator<const uint8_t*>(data)); |
| 24 | } |
| 25 | |
| 26 | template <unsigned int BITS> |
| 27 | void base_blob<BITS>::SetHex(const char* psz) |
no test coverage detected