尝试创建与TrueZIP java库兼容的加密ZIP文件。
我尝试了7z
7za -tzip -mem=AES256 a out.myzip -pFoo in.file
但是当在TrueZIP中解密时,我得到了例外:
W/System.err: de.schlichtherle.truezip.io.InputException:
java.util.zip.ZipException: in.file (encrypted compression method 8
is not supported)
答案 0 :(得分:0)
使用
7z -tzip -mm=Deflate -mem=AES256 a ....
和
@Override
public AesKeyStrength getKeyStrength(String arg0)
throws ZipKeyException {
return AesKeyStrength.BITS_256;
}
在Java方面。