aboutsummaryrefslogtreecommitdiff
path: root/misc.cc
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-09-08 16:04:47 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-09-08 16:04:47 +0200
commit49de98994f234e93cc37e2f01d2927a05880a7e7 (patch)
tree9504916f296ec7b15908cd1d16150dbc59be9928 /misc.cc
parent7dbbe7fb4c50c62b0e1818c5356aafb97a00ac0f (diff)
downloadlibnitrokey-49de98994f234e93cc37e2f01d2927a05880a7e7.tar.gz
libnitrokey-49de98994f234e93cc37e2f01d2927a05880a7e7.tar.bz2
Allow disabling hexdump header
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'misc.cc')
-rw-r--r--misc.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/misc.cc b/misc.cc
index a31d9bc..d004d0f 100644
--- a/misc.cc
+++ b/misc.cc
@@ -6,14 +6,16 @@
namespace nitrokey {
namespace misc {
-std::string hexdump(const char *p, size_t size) {
+std::string hexdump(const char *p, size_t size, bool print_header) {
std::stringstream out;
char formatbuf[128];
const char *pstart = p;
for (const char *pend = p + size; p < pend;) {
- snprintf(formatbuf, 128, "%04lx\t", p - pstart);
- out << formatbuf;
+ if (print_header){
+ snprintf(formatbuf, 128, "%04lx\t", p - pstart);
+ out << formatbuf;
+ }
for (const char *le = p + 16; p < le && p < pend; p++) {
snprintf(formatbuf, 128, "%02x ", uint8_t(*p));