diff options
Diffstat (limited to 'include/misc.h')
-rw-r--r-- | include/misc.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/misc.h b/include/misc.h new file mode 100644 index 0000000..07f221c --- /dev/null +++ b/include/misc.h @@ -0,0 +1,14 @@ +#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 |