Uses of Interface
org.jasypt.iv.IvGenerator
Packages that use IvGenerator
-
Uses of IvGenerator in org.jasypt.encryption.pbe
Methods in org.jasypt.encryption.pbe with parameters of type IvGeneratorModifier and TypeMethodDescriptionvoidPooledPBEBigDecimalEncryptor.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 IvGeneratorModifier and TypeMethodDescriptionPBEConfig.getIvGenerator()Returns aIvGeneratorimplementation to be used by the encryptor.SimplePBEConfig.getIvGenerator()Methods in org.jasypt.encryption.pbe.config with parameters of type IvGeneratorModifier and TypeMethodDescriptionvoidEnvironmentPBEConfig.setIvGenerator(IvGenerator ivGenerator) voidSimplePBEConfig.setIvGenerator(IvGenerator ivGenerator) Sets the IV generator. -
Uses of IvGenerator in org.jasypt.iv
Subinterfaces of IvGenerator in org.jasypt.ivModifier and TypeInterfaceDescriptioninterfaceMarker 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 IvGeneratorModifier and TypeClassDescriptionclassByte-array based implementation ofFixedIvGenerator, that will always return the same initialization vector (IV).classThis implementation ofIvGeneratoralways returns a initialization vector (IV) of length 0.classThis implementation ofIvGeneratorholds a secure random generator which can be used for generating random initialization vectors (IV) for encryption.classString based implementation ofIvGenerator, that will always return the same initialization vector (IV).