Package org.jasypt.iv
Class NoIvGenerator
- Object
-
- org.jasypt.iv.NoIvGenerator
-
- All Implemented Interfaces:
IvGenerator
public class NoIvGenerator extends Object implements IvGenerator
This implementation of
IvGeneratoralways returns a initialization vector (IV) of length 0.This class is thread-safe.
- Since:
- 1.9.3
- Author:
- Hoki Torres
-
-
Constructor Summary
Constructors Constructor Description NoIvGenerator()Creates a new instance of NoIvGenerator
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]generateIv(int lengthBytes)Return IV with 0 byte length.booleanincludePlainIvInEncryptionResults()As this IV generator provides an empty vector, its inclusion unencrypted in encryption results is not necessary.
-
-
-
Method Detail
-
generateIv
public byte[] generateIv(int lengthBytes)
Return IV with 0 byte length.- Specified by:
generateIvin interfaceIvGenerator- Parameters:
lengthBytes- length in bytes.- Returns:
- the generated IV.
-
includePlainIvInEncryptionResults
public boolean includePlainIvInEncryptionResults()
As this IV generator provides an empty vector, its inclusion unencrypted in encryption results is not necessary.- Specified by:
includePlainIvInEncryptionResultsin interfaceIvGenerator- Returns:
- false
-
-