/* * Chrome Token Signing Native Host * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "binaryutils.h" #include #include using namespace std; vector BinaryUtils::hex2bin(const string &hex) { if (hex.size() % 2 == 1) throw runtime_error("Hex is incorrect"); vector bin(hex.size() / 2, 0); unsigned char *c = &bin[0]; const char *h = hex.c_str(); while (*h) { int x; sscanf(h, "%2X", &x); *c = x; c++; h += 2; } return bin; } string BinaryUtils::bin2hex(const vector &bin) { string hex(bin.size() * 2, 0); for (size_t j = 0; j < bin.size(); ++j) sprintf(&hex[j * 2], "%02X", (unsigned char) bin.at(j)); return hex; }