Hello, this issue is kind of related with: SevenZipArchiveEntry ignores the password provided to the SevenZipArchive
Still, it is different.
The code that could be relevant is:
@Override
protected SevenZipArchive getArchive() {
return decryptionPassword == null ? new SevenZipArchive(zipInputStream) : new SevenZipArchive(zipInputStream, decryptionPassword);
}
and then:
sevenZipArchive.getModificationTime().getTime();
The problem is that instead of the real modification timestamp I get a negative number that does not make sense, even if the provided password is correct.
This can be reproducible with this file:
prova.7z (15.1 KB)