net.java.truevfs.driver.zip.raes.ParanoidZipRaesDriver Maven / Gradle / Ivy
Show all versions of truevfs-driver-zip-raes Show documentation
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truevfs.driver.zip.raes;
import java.io.IOException;
import javax.annotation.CheckForNull;
import javax.annotation.WillNotClose;
import javax.annotation.concurrent.Immutable;
import net.java.truevfs.comp.zipdriver.JarDriverEntry;
import net.java.truevfs.comp.zipdriver.ZipInputService;
import net.java.truevfs.comp.zipdriver.ZipOutputService;
import net.java.truevfs.kernel.spec.FsModel;
import net.java.truevfs.kernel.spec.FsOutputSocketSink;
import net.java.truecommons.cio.InputService;
/**
* A paranoid archive driver for RAES encrypted ZIP files.
* This driver always checks the cipher text of input archive files
* using the RAES Message Authentication Code (MAC), which makes it slower than
* the {@link SafeZipRaesDriver} for archive files larger than 512 KB and
* may pause the client application on the first access to the archive file
* for a while if the file is large.
* Note that the CRC-32 value of the plain text ZIP file is never checked
* because this is made redundant by the MAC verification.
*
* In addition, this driver limits the number of concurrent entry sink
* streams to one, so that writing unencrypted temporary files is inhibited.
*
* Subclasses must be thread-safe and should be immutable!
*
* @see SafeZipRaesDriver
* @author Christian Schlichtherle
*/
@Immutable
public class ParanoidZipRaesDriver extends ZipRaesDriver {
@Override
public final long getAuthenticationTrigger() {
return Long.MAX_VALUE;
}
/**
* {@inheritDoc}
*
* The implementation in the class {@link ParanoidZipRaesDriver} returns a
* new {@link ZipOutputService}.
* This restricts the number of concurrent sink entry streams to one in
* order to inhibit writing unencrypted temporary files for buffering the
* written entries.
*/
@Override
protected final ZipOutputService newOutput(
final FsModel model,
final FsOutputSocketSink sink,
final @CheckForNull @WillNotClose InputService input)
throws IOException {
final ZipInputService zis = (ZipInputService) input;
return new ZipOutputService<>(model, new RaesSocketSink(model, sink), zis, this);
}
}