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

org.jasypt.salt.IVGenerator Maven / Gradle / Ivy

There is a newer version: 1.9.4
Show newest version
package org.jasypt.salt;

/**
 * 

* Common interface for all IV generators which can be applied in digest * or encryption operations. *

*

* Every implementation of this interface must be thread-safe. *

* * @since 1.9.3 * * @author Alex Scal * */ public interface IVGenerator { /** *

* This method will be called for requesting the generation of a new * IV of the specified length. *

* * @param length the requested length for the IV. * @return the generated IV. */ byte[] generateIV(int length); /** *

* Determines if the digests and encrypted messages created with a * specific IV generator will include (prepended) the unencrypted * IV itself, so that it can be used for matching and decryption * operations. *

*

* Generally, including the IV unencrypted in encryption results will * be mandatory for randomly generated IVs, or for those generated in a * non-predictable manner. * Otherwise, digest matching and decryption operations will always fail. *

* * @return whether the plain (unencrypted) IV has to be included in * encryption results or not. */ public boolean includePlainIVInEncryptionResults(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy