Convert an ASCII hex-string (case-insensitive) to the binary form. Note that h.Size() must be even (+h % 2 == 0).
| 55 | |
| 56 | //! Convert an ASCII hex-string (case-insensitive) to the binary form. Note that h.Size() must be even (+h % 2 == 0). |
| 57 | inline TString HexDecode(const TStringBuf h) { |
| 58 | return HexDecode(h.data(), h.size()); |
| 59 | } |
no test coverage detected