Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

7zip CRC data of files in packed archive

Tags:

hex

7zip

I just faced with the next problem. I need to get CRC data of files in packed archive 7z. I have found docs (http://www.7-zip.org/recover.html) that describes how is 7z works with integrity of the packages but unfortunately I didn't found answer.

Do you have any ideas how to get CRC file's data from packed 7zip archive without unpacking it?

like image 894
pic0 Avatar asked Mar 15 '23 07:03

pic0


1 Answers

7z l -slt archive.zip

should list extended info for the files in the archive, including CRC if it was added at the creation time

like image 83
Iusti Avatar answered Mar 18 '23 18:03

Iusti