| 40 | } |
| 41 | |
| 42 | void convertValVecToHexStr(Span<const uint8_t> Src, std::string &Dst, |
| 43 | const uint32_t Padding) { |
| 44 | convertBytesToHexStr(Src, Dst, Padding, true); |
| 45 | } |
| 46 | |
| 47 | void convertHexStrToBytes(std::string_view Src, std::vector<uint8_t> &Dst, |
| 48 | uint32_t Padding, const bool IsLittleEndian) { |
nothing calls this directly
no test coverage detected