Uses of Interface
org.jasypt.iv.IvGenerator
-
Packages that use IvGenerator Package Description org.jasypt.encryption.pbe org.jasypt.encryption.pbe.config org.jasypt.iv -
-
Uses of IvGenerator in org.jasypt.encryption.pbe
Methods in org.jasypt.encryption.pbe with parameters of type IvGenerator Modifier and Type Method Description voidPooledPBEBigDecimalEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidPooledPBEBigIntegerEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidPooledPBEByteEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidPooledPBEStringEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidStandardPBEBigDecimalEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidStandardPBEBigIntegerEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidStandardPBEByteEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used.voidStandardPBEStringEncryptor. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator to be used. -
Uses of IvGenerator in org.jasypt.encryption.pbe.config
Methods in org.jasypt.encryption.pbe.config that return IvGenerator Modifier and Type Method Description IvGeneratorPBEConfig. getIvGenerator()Returns aIvGeneratorimplementation to be used by the encryptor.IvGeneratorSimplePBEConfig. getIvGenerator()Methods in org.jasypt.encryption.pbe.config with parameters of type IvGenerator Modifier and Type Method Description voidEnvironmentPBEConfig. setIvGenerator(IvGenerator ivGenerator)voidSimplePBEConfig. setIvGenerator(IvGenerator ivGenerator)Sets the IV generator. -
Uses of IvGenerator in org.jasypt.iv
Subinterfaces of IvGenerator in org.jasypt.iv Modifier and Type Interface Description interfaceFixedIvGeneratorMarker interface for all implementations ofIvGeneratorthat will always return the same IV (for the same amount of bytes asked).Classes in org.jasypt.iv that implement IvGenerator Modifier and Type Class Description classByteArrayFixedIvGeneratorByte-array based implementation ofFixedIvGenerator, that will always return the same initialization vector (IV).classNoIvGeneratorThis implementation ofIvGeneratoralways returns a initialization vector (IV) of length 0.classRandomIvGeneratorThis implementation ofIvGeneratorholds a secure random generator which can be used for generating random initialization vectors (IV) for encryption.classStringFixedIvGeneratorString based implementation ofIvGenerator, that will always return the same initialization vector (IV).
-