Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.ars.security;

/**
*
* This class provides the constants for the AesEncryption class
*
* @author Ian Meinert
* @version 1.0 February 23, 2018
*
*/
public final class EncryptionConstants {

/**
* IV ensures that the identical plaintexts will never result in indentical
* ciphertexts.
*/
public static final String IV = "e675f725e675f725";

/**
* The number of iterations to encypt the text
*/
public static final int ITERATION_COUNT = 65536;

/**
* The encryption key length in bits
*/
public static final int KEY_LENGTH = 128;

/**
* The value used in the cipher
*/
public static final String ENCR_STR = "dC10UEIo87L$#6ww";

/**
* The salt used in the cipher
*/
public static final String SALT = "G00f3#0B$4@56zql";
}