feat: added '\n' in end of output

This commit is contained in:
Lisoveliy 2025-06-23 18:06:48 +03:00
parent 4ba265728e
commit 0955f1ce03

View File

@ -54,4 +54,5 @@ void returnHash(uint8_t* digest){
for (size_t i = 0; i < 16; i++) { for (size_t i = 0; i < 16; i++) {
printf("%02x", digest[i]); printf("%02x", digest[i]);
} }
printf("\n");
} }