Class KEM.Encapsulator
- Enclosing class:
KEM
KEM.newEncapsulator(PublicKey)
on the KEM
sender side.
This class represents the key encapsulation function of a KEM.
Each invocation of the encapsulate
method generates a
new secret key and key encapsulation message that is returned
in an KEM.Encapsulated
object.
- Since:
- 21
-
Method Summary
Modifier and TypeMethodDescriptionThe key encapsulation function.encapsulate
(int from, int to, String algorithm) The key encapsulation function.int
Returns the size of the key encapsulation message.Returns the name of the provider.int
Returns the size of the shared secret.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
providerName
-
encapsulate
The key encapsulation function.This method is equivalent to
encapsulate(0, secretSize(), "Generic")
. This combination of arguments must be supported by every implementation.The generated secret key is usually passed to a key derivation function (KDF) as the input keying material.
- Returns:
- a
KEM.Encapsulated
object containing the shared secret, key encapsulation message, and optional parameters. The shared secret is aSecretKey
containing all of the bytes of the secret, and an algorithm name of "Generic".
-
encapsulate
The key encapsulation function.Each invocation of this method generates a new secret key and key encapsulation message that is returned in an
KEM.Encapsulated
object.An implementation may choose to not support arbitrary combinations of
from
,to
, andalgorithm
.- 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:
- a
KEM.Encapsulated
object containing a portion of the shared secret, key encapsulation message, and optional parameters. The portion of the shared secret is aSecretKey
containing the bytes of the secret ranging fromfrom
toto
, exclusive, and an algorithm name as specified. For example,encapsulate(0, 16, "AES")
uses the first 16 bytes of the shared secret as a 128-bit AES key. - Throws:
IndexOutOfBoundsException
- iffrom < 0
,from > to
, orto > secretSize()
NullPointerException
- ifalgorithm
isnull
UnsupportedOperationException
- if the combination offrom
,to
, andalgorithm
is not supported by the encapsulator- External Specifications
-
secretSize
public int secretSize()Returns the size of the shared secret.This method can be called to find out the length of the shared secret before
encapsulate
is called or if the obtainedSecretKey
is not extractable.- Returns:
- the size of the shared secret
-
encapsulationSize
public int encapsulationSize()Returns the size of the key encapsulation message.This method can be called to find out the length of the encapsulation message before
encapsulate
is called.- Returns:
- the size of the key encapsulation message
-