solo/fido2/util.c
2018-06-27 21:39:19 -04:00

13 lines
146 B
C

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