Interface KEMSpi.EncapsulatorSpi
- Enclosing interface:
KEMSpi
public static interface KEMSpi.EncapsulatorSpi
The KEM encapsulator implementation, generated by
KEMSpi.engineNewEncapsulator(PublicKey, AlgorithmParameterSpec, SecureRandom) on the KEM sender side.- Since:
- 21
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionengineEncapsulate(int from, int to, String algorithm) The key encapsulation function.intReturns the size of the key encapsulation message.intReturns the size of the shared secret.
-
Method Details
-
engineEncapsulate
The key encapsulation function.Each invocation of this method must generate a new secret key and key encapsulation message that is returned in an
KEM.Encapsulatedobject.An implementation must support the case where
fromis 0,tois the same as the return value ofsecretSize(), andalgorithmis "Generic".- Parameters:
from- the initial index of the shared secret byte array to be returned, inclusiveto- the final index of the shared secret byte array to be returned, exclusivealgorithm- the algorithm name for the secret key that is returned. See the SecretKey Algorithms section in the Java Security Standard Algorithm Names Specification for information about standard secret key algorithm names. Specify "Generic" if the output will be used as the input keying material of a key derivation function (KDF).- Returns:
- an
KEM.Encapsulatedobject containing a portion of the shared secret as a key with the specified algorithm, key encapsulation message, and optional parameters. - Throws:
IndexOutOfBoundsException- iffrom < 0,from > to, orto > secretSize()NullPointerException- ifalgorithmisnullUnsupportedOperationException- if the combination offrom,to, andalgorithmis not supported by the encapsulator- External Specifications
- See Also:
-
engineSecretSize
int engineSecretSize()Returns the size of the shared secret.- Returns:
- the size of the shared secret as a finite non-negative integer
- See Also:
-
engineEncapsulationSize
int engineEncapsulationSize()Returns the size of the key encapsulation message.- Returns:
- the size of the key encapsulation message as a finite non-negative integer
- See Also:
-