projects
/
dragonfly.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'vendor/OPENSSH'
[dragonfly.git]
/
contrib
/
cryptsetup
/
luks
/
hexprint.c
1
2
#include <stdio.h>
3
4
void hexprint(char *d, int n)
5
{
6
int i;
7
for(i = 0; i < n; i++)
8
{
9
printf("%02hhx ", (char)d[i]);
10
}
11
}
12