- opmode
- the operation this cipher instance should be initialized for (one of: ENCRYPT_MODE, DECRYPT_MODE, WRAP_MODE or UNWRAP_MODE).
- key
- the input key for the operation.
- params
- the algorithm parameters.
Type Reason Java.Security.InvalidKeyException if the specified key can not be used to initialize this cipher instance. Java.Security.InvalidAlgorithmParameterException it the specified parameters are inappropriate for this cipher.
Initializes this cipher instance with the specified key and algorithm parameters.
The cipher is initialized for the specified operational mode (one of: encryption, decryption, key wrapping or key unwrapping).
If this cipher instance needs any algorithm parameters and params is null, the underlying implementation of this cipher is supposed to generate the required parameters (using its provider or random values).
When a cipher instance is initialized by a call to any of the init methods, the state of the instance is overridden, means it is equivalent to creating a new instance and calling it init method.