ENCCSM_CIPHERS parameter

The ENCCSM_CIPHERS parameter specifies the ciphers and modes to use during encryption.

syntax ENCCSM_CIPHERS
all|allbut:<list of ciphers and 
modes>|cipher:mode{,cipher:mode ...}  
  • all: Specifies to include all available ciphers and modes, except ECB mode. For example:
    ENCCSM_CIPHERS all
  • allbut:<list of ciphers and modes>: Specifies to include all ciphers and modes except the ones in the list. Separate ciphers or modes with a comma. For example:
    ENCCSM_CIPHERS allbut:<cbc,bf>
  • cipher:mode: Specifies the ciphers and modes. Separate cipher-mode pairs with a comma. For example:
    ENCCSM_CIPHERS des3:cbc,des3:ofb
  • default value: allbut:<ecb>

For more information about ciphers and modes, see Encryption ciphers and modes.