Class JKConstants.Security

java.lang.Object
com.jk.core.config.JKConstants.Security
Enclosing class:
JKConstants

public static class JKConstants.Security extends Object
This class provides constants related to Security.
Version:
1.0
Author:
Dr. Jalal H. Kiswani
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Represents the configuration property for specifying the encryption algorithm.
    static final String
    Represents the configuration property for specifying the default encryption algorithm.
    static final String
    Represents the configuration property for specifying the initialization vector (IV) used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the default initialization vector (IV) used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the encryption security key.
    static final String
    Represents the configuration property for specifying the default encryption security key.
    static final String
    Represents the configuration property for specifying the key factory used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the default key factory used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the key specification used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the default key specification used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the salt used for encryption in security operations.
    static final String
    Represents the configuration property for specifying the default salt used for encryption in security operations.
    static final String
    Represents the prefix used to indicate that a value is secured (encrypted) in a configuration property.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ENC_KEY

      public static final String ENC_KEY
      Represents the configuration property for specifying the encryption security key.
      See Also:
    • ENC_KEY_DFAULT

      public static final String ENC_KEY_DFAULT
      Represents the configuration property for specifying the default encryption security key.
      See Also:
    • ENC_SALT

      public static final String ENC_SALT
      Represents the configuration property for specifying the salt used for encryption in security operations.
      See Also:
    • ENC_SALT_DEFAULT

      public static final String ENC_SALT_DEFAULT
      Represents the configuration property for specifying the default salt used for encryption in security operations.
      See Also:
    • ENC_KEY_FACTORY

      public static final String ENC_KEY_FACTORY
      Represents the configuration property for specifying the key factory used for encryption in security operations.
      See Also:
    • ENC_KEY_FACTORY_DEFAULT

      public static final String ENC_KEY_FACTORY_DEFAULT
      Represents the configuration property for specifying the default key factory used for encryption in security operations.
      See Also:
    • ENC_KEY_SPEC

      public static final String ENC_KEY_SPEC
      Represents the configuration property for specifying the key specification used for encryption in security operations.
      See Also:
    • ENC_KEY_SPEC_DEFAULT

      public static final String ENC_KEY_SPEC_DEFAULT
      Represents the configuration property for specifying the default key specification used for encryption in security operations.
      See Also:
    • ENC_ALGORITHM

      public static final String ENC_ALGORITHM
      Represents the configuration property for specifying the encryption algorithm.
      See Also:
    • ENC_ALGORITHM_DEFAULT

      public static final String ENC_ALGORITHM_DEFAULT
      Represents the configuration property for specifying the default encryption algorithm.
      See Also:
    • ENC_IV

      public static final String ENC_IV
      Represents the configuration property for specifying the initialization vector (IV) used for encryption in security operations.
      See Also:
    • ENC_IV_DEFAULT

      public static final String ENC_IV_DEFAULT
      Represents the configuration property for specifying the default initialization vector (IV) used for encryption in security operations.
      See Also:
    • SECURED_VALUE_PREFIX

      public static final String SECURED_VALUE_PREFIX
      Represents the prefix used to indicate that a value is secured (encrypted) in a configuration property.
      See Also:
  • Constructor Details

    • Security

      public Security()