aboutsummaryrefslogtreecommitdiff
path: root/include/misc.h
blob: bf6891526d4c828672ea433b969e67b068e154d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MISC_H
#define MISC_H
#include <stdio.h>
#include <string>

namespace nitrokey {
namespace misc {

std::string hexdump(const char *p, size_t size);
uint32_t stm_crc32(const uint8_t *data, size_t size);

}
}

#endif