mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-13 11:50:10 +01:00
Initial checking of what was revision 56 on http://luks.endorphin.org/svn/cryptsetup
git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@3 36d66b0a-2a48-0410-832c-cd162a569da5
This commit is contained in:
12
luks/hexprint.c
Normal file
12
luks/hexprint.c
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void hexprint(char *d, int n)
|
||||
{
|
||||
int i;
|
||||
for(i = 0; i < n; i++)
|
||||
{
|
||||
printf("%02hhx ", (char)d[i]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user