aboutsummaryrefslogtreecommitdiff
path: root/misc.cc
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-09-09 10:18:46 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-09-10 10:51:53 +0200
commit77ea27f25165302491a693051bea05c67e6dfbed (patch)
treeec35346b64dfed3e05282c393f1074fc81bf9c5c /misc.cc
parent9d84244156e8abd93a7c1d4326231bcd1abb909d (diff)
downloadlibnitrokey-77ea27f25165302491a693051bea05c67e6dfbed.tar.gz
libnitrokey-77ea27f25165302491a693051bea05c67e6dfbed.tar.bz2
Add hex to binary converting function
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'misc.cc')
-rw-r--r--misc.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/misc.cc b/misc.cc
index d004d0f..5d7c387 100644
--- a/misc.cc
+++ b/misc.cc
@@ -2,10 +2,36 @@
#include <string>
#include "misc.h"
#include "inttypes.h"
+#include <cstdlib>
+#include <cstring>
+#include <cassert>
namespace nitrokey {
namespace misc {
+std::vector<uint8_t> hex_string_to_byte(const char* hexString){
+ const size_t s_size = strlen(hexString);
+ const size_t d_size = (s_size+1)/2; // add 1 for odd, ignore for even
+ assert(s_size%2==0);
+ assert(s_size<256); //arbitrary 'big' number
+ auto data = std::vector<uint8_t>(d_size, 0);
+
+ char buf[2];
+ for(int i=0; i<s_size; i++){
+
+ char c = hexString[i];
+ bool char_from_range = ('0' <= c && c <='9' || 'A' <= c && c <= 'F' || 'a' <= c && c<= 'f');
+ if (!char_from_range){
+ return {};
+ }
+ buf[i%2] = c;
+ if (i%2==1){
+ data[i/2] = strtoul(buf, NULL, 16) & 0xFF;
+ }
+ }
+ return data;
+};
+
std::string hexdump(const char *p, size_t size, bool print_header) {
std::stringstream out;
char formatbuf[128];