slow start, increasing number of blocks worked on per thread, reusing ciphers for multiple consecutive blocks

This commit is contained in:
Sebastian Stenzel
2015-08-02 00:37:26 +02:00
parent 6bbfacd794
commit ed7dc60f5e
8 changed files with 179 additions and 101 deletions
@@ -3,6 +3,10 @@ package org.cryptomator.crypto.exceptions;
public class EncryptFailedException extends CryptingException {
private static final long serialVersionUID = -3855673600374897828L;
public EncryptFailedException(Throwable t) {
super("Encryption failed.", t);
}
public EncryptFailedException(String msg) {
super(msg);
}