solo/fido2/util.c
2018-09-10 20:27:15 +00:00

14 lines
166 B
C

#include <stdint.h>
#include <stdio.h>
void dump_hex(uint8_t * buf, int size)
{
while(size--)
{
printf("%02x ", *buf++);
}
printf("\n");
}