Package org.jasypt.iv
-
Interface Summary Interface Description FixedIvGenerator Marker interface for all implementations ofIvGeneratorthat will always return the same IV (for the same amount of bytes asked).IvGenerator Common interface for all initialization vector (IV) generators which can be applied in encryption operations. -
Class Summary Class Description ByteArrayFixedIvGenerator Byte-array based implementation ofFixedIvGenerator, that will always return the same initialization vector (IV).NoIvGenerator This implementation ofIvGeneratoralways returns a initialization vector (IV) of length 0.RandomIvGenerator This implementation ofIvGeneratorholds a secure random generator which can be used for generating random initialization vectors (IV) for encryption.StringFixedIvGenerator String based implementation ofIvGenerator, that will always return the same initialization vector (IV).