fixed print of hash
This commit is contained in:
parent
b53b4144d0
commit
649b9af022
1 changed files with 1 additions and 1 deletions
|
|
@ -455,7 +455,7 @@ void fake_exit(char* msg){
|
||||||
|
|
||||||
void print_hash(unsigned char hash [32]){
|
void print_hash(unsigned char hash [32]){
|
||||||
for(int i = 0; i < 32; i++){
|
for(int i = 0; i < 32; i++){
|
||||||
printf("%x",hash[i]);
|
printf("0x%x, ",hash[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue