Removed debug instructions

This commit is contained in:
alessandro ferro 2023-04-27 17:35:44 +02:00
parent b7efa99c55
commit 756ce9d0fd
1 changed files with 0 additions and 5 deletions

View File

@ -397,11 +397,6 @@ unsigned char* sha1(char *filename){
return NULL;
}
EVP_MD_CTX_free(mdctx);
// print the result in hexadecimal format
for (i = 0; i < digest_len; i++) {
printf("%02x", hash[i]);
}
fclose(f);
return hash;
}