All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.openpgp.operator.PGPDataEncryptor Maven / Gradle / Ivy

package org.bouncycastle.openpgp.operator;

import java.io.OutputStream;

/**
 * A data encryptor, combining a cipher instance and an optional integrity check calculator.
 * 

* {@link PGPDataEncryptor} instances are generally not constructed directly, but obtained from a * {@link PGPDataEncryptorBuilder}. *

*/ public interface PGPDataEncryptor { /** * Constructs an encrypting output stream that encrypts data using the underlying cipher of this * encryptor. *

* The cipher instance in this encryptor is used for all output streams obtained from this * method, so it should only be invoked once. *

* @param out the stream to wrap and write encrypted data to. * @return a cipher output stream appropriate to the type of this data encryptor. */ OutputStream getOutputStream(OutputStream out); /** * Obtains the integrity check calculator configured for this encryptor instance. * * @return the integrity check calculator, or null if no integrity checking was * configured. */ PGPDigestCalculator getIntegrityCalculator(); /** * Gets the block size of the underlying cipher used by this encryptor. * * @return the block size in bytes. */ int getBlockSize(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy