119120121122123124125
public InputStream createInputStream(InputStream in) throws IOException { if (cipherSession == null) { throw new RuntimeException("Cipher session is not initialized. Call init() before!"); } return new MultiCipherInputStream(in, cipherSession); }