diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-09-09 10:18:46 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-09-10 10:51:53 +0200 |
commit | 77ea27f25165302491a693051bea05c67e6dfbed (patch) | |
tree | ec35346b64dfed3e05282c393f1074fc81bf9c5c /include/misc.h | |
parent | 9d84244156e8abd93a7c1d4326231bcd1abb909d (diff) | |
download | libnitrokey-77ea27f25165302491a693051bea05c67e6dfbed.tar.gz libnitrokey-77ea27f25165302491a693051bea05c67e6dfbed.tar.bz2 |
Add hex to binary converting function
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include/misc.h')
-rw-r--r-- | include/misc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/misc.h b/include/misc.h index cccd830..5fcd16d 100644 --- a/include/misc.h +++ b/include/misc.h @@ -2,6 +2,7 @@ #define MISC_H #include <stdio.h> #include <string> +#include <vector> namespace nitrokey { namespace misc { @@ -16,7 +17,8 @@ typename T::CommandPayload get_payload(){ std::string hexdump(const char *p, size_t size, bool print_header=true); -uint32_t stm_crc32(const uint8_t *data, size_t size); + uint32_t stm_crc32(const uint8_t *data, size_t size); + std::vector<uint8_t> hex_string_to_byte(const char* hexString); } } |