Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I know if 7zip used AES256? [closed]

Tags:

zip

aes

7zip

I originally was using WinZip15 to create .ZIP files with AES256 which we later package into .EXE files using WinZip's self extracting tool (since we can't be sure the people we are giving the archives to will have a zip utility that can handle AES-256 ZIP archives).

I started using 7Zip's command line utility to package the ZIP files using

7za a -y -tzip -ptestabc123 -mem=AES256 C:\helloworld.zip C:\test\

Is there anyway to tell if it actually used AES256 to encrypt the archive? It clearly has a password, but other than that it seems difficult to determine. When I created AES256 archives using WinZip15 "View in explorer" did not work, which I presume is normal. When I create archives using 7za (with the -mem=AES256 switch), windows explorer CAN open the zip archive which I find strange.

like image 627
Jai Avatar asked Mar 09 '11 16:03

Jai


1 Answers

I don't know about 7zip, but you can create a self-extracting EXE that uses AES56, using DotNetZip's command line tools.

like image 69
Cheeso Avatar answered Sep 29 '22 19:09

Cheeso