CipherSpi (Java SE 15 & JDK 15) (original) (raw)


public abstract class CipherSpi extends Object

This class defines the Service Provider Interface (SPI) for the Cipher class. All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a particular cipher algorithm.

In order to create an instance of Cipher, which encapsulates an instance of this CipherSpi class, an application calls one of thegetInstance factory methods of theCipher engine class and specifies the requested_transformation_. Optionally, the application may also specify the name of a provider.

A transformation is a string that describes the operation (or set of operations) to be performed on the given input, to produce some output. A transformation always includes the name of a cryptographic algorithm (e.g., AES), and may be followed by a feedback mode and padding scheme.

A transformation is of the form:

(in the latter case, provider-specific default values for the mode and padding scheme are used). For example, the following is a valid transformation:

 Cipher c = Cipher.getInstance("_AES/CBC/PKCS5Padding_");

A provider may supply a separate class for each combination of algorithm/mode/padding, or may decide to provide more generic classes representing sub-transformations corresponding to_algorithm_ or algorithm/mode or algorithm//padding (note the double slashes), in which case the requested mode and/or padding are set automatically by the getInstance methods of Cipher, which invoke the engineSetMode andengineSetPadding methods of the provider's subclass of CipherSpi.

A Cipher property in a provider master class may have one of the following formats:

For example, a provider may supply a subclass of CipherSpi that implements AES/ECB/PKCS5Padding, one that implements_AES/CBC/PKCS5Padding_, one that implements_AES/CFB/PKCS5Padding_, and yet another one that implements_AES/OFB/PKCS5Padding_. That provider would have the followingCipher properties in its master class:

Another provider may implement a class for each of the above modes (i.e., one class for ECB, one for CBC, one for CFB, and one for OFB), one class for PKCS5Padding, and a generic AES class that subclasses from CipherSpi. That provider would have the followingCipher properties in its master class:

The getInstance factory method of the Cipher engine class follows these rules in order to instantiate a provider's implementation of CipherSpi for a transformation of the form "algorithm":

  1. Check if the provider has registered a subclass of CipherSpi for the specified "algorithm".
    If the answer is YES, instantiate this class, for whose mode and padding scheme default values (as supplied by the provider) are used.
    If the answer is NO, throw a NoSuchAlgorithmException exception.

The getInstance factory method of the Cipher engine class follows these rules in order to instantiate a provider's implementation of CipherSpi for a transformation of the form "algorithm/mode/padding":

  1. Check if the provider has registered a subclass of CipherSpi for the specified "algorithm/mode/padding" transformation.
    If the answer is YES, instantiate it.
    If the answer is NO, go to the next step.
  2. Check if the provider has registered a subclass of CipherSpi for the sub-transformation "algorithm/mode".
    If the answer is YES, instantiate it, and callengineSetPadding(_padding_) on the new instance.
    If the answer is NO, go to the next step.
  3. Check if the provider has registered a subclass of CipherSpi for the sub-transformation "algorithm//padding" (note the double slashes).
    If the answer is YES, instantiate it, and callengineSetMode(_mode_) on the new instance.
    If the answer is NO, go to the next step.
  4. Check if the provider has registered a subclass of CipherSpi for the sub-transformation "algorithm".
    If the answer is YES, instantiate it, and callengineSetMode(_mode_) andengineSetPadding(_padding_) on the new instance.
    If the answer is NO, throw a NoSuchAlgorithmException exception.

Since:

1.4

See Also:

KeyGenerator, SecretKey

Constructors

Constructor Description
CipherSpi()
Modifier and Type Method Description
protected abstract byte[] engineDoFinal​(byte[] input, int inputOffset, int inputLen) Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
protected abstract int engineDoFinal​(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
protected int engineDoFinal​(ByteBuffer input,ByteBuffer output) Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
protected abstract int engineGetBlockSize() Returns the block size (in bytes).
protected abstract byte[] engineGetIV() Returns the initialization vector (IV) in a new buffer.
protected int engineGetKeySize​(Key key) Returns the key size of the given key object in bits.
protected abstract int engineGetOutputSize​(int inputLen) Returns the length in bytes that an output buffer would need to be in order to hold the result of the next update or doFinal operation, given the input lengthinputLen (in bytes).
protected abstract AlgorithmParameters engineGetParameters() Returns the parameters used with this cipher.
protected abstract void engineInit​(int opmode,Key key,AlgorithmParameters params,SecureRandom random) Initializes this cipher with a key, a set of algorithm parameters, and a source of randomness.
protected abstract void engineInit​(int opmode,Key key,SecureRandom random) Initializes this cipher with a key and a source of randomness.
protected abstract void engineInit​(int opmode,Key key,AlgorithmParameterSpec params,SecureRandom random) Initializes this cipher with a key, a set of algorithm parameters, and a source of randomness.
protected abstract void engineSetMode​(String mode) Sets the mode of this cipher.
protected abstract void engineSetPadding​(String padding) Sets the padding mechanism of this cipher.
protected Key engineUnwrap​(byte[] wrappedKey,String wrappedKeyAlgorithm, int wrappedKeyType) Unwrap a previously wrapped key.
protected abstract byte[] engineUpdate​(byte[] input, int inputOffset, int inputLen) Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
protected abstract int engineUpdate​(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
protected int engineUpdate​(ByteBuffer input,ByteBuffer output) Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
protected void engineUpdateAAD​(byte[] src, int offset, int len) Continues a multi-part update of the Additional Authentication Data (AAD), using a subset of the provided buffer.
protected void engineUpdateAAD​(ByteBuffer src) Continues a multi-part update of the Additional Authentication Data (AAD).
protected byte[] engineWrap​(Key key) Wrap a key.

Methods declared in class java.lang.Object

[clone](../../java/lang/Object.html#clone%28%29), [equals](../../java/lang/Object.html#equals%28java.lang.Object%29), [finalize](../../java/lang/Object.html#finalize%28%29), [getClass](../../java/lang/Object.html#getClass%28%29), [hashCode](../../java/lang/Object.html#hashCode%28%29), [notify](../../java/lang/Object.html#notify%28%29), [notifyAll](../../java/lang/Object.html#notifyAll%28%29), [toString](../../java/lang/Object.html#toString%28%29), [wait](../../java/lang/Object.html#wait%28%29), [wait](../../java/lang/Object.html#wait%28long%29), [wait](../../java/lang/Object.html#wait%28long,int%29)