KEM
public static final class KEM.Encapsulated extends Object
SecretKey
), the key encapsulation message, and optional parameters. Note: the key encapsulation message can be also referred to as ciphertext.
Constructor | Description |
---|---|
Encapsulated |
Constructs an Encapsulated object. |
Modifier and Type | Method | Description |
---|---|---|
byte[] |
encapsulation() |
Returns the key encapsulation message. |
SecretKey |
key() |
Returns the SecretKey . |
byte[] |
params() |
Returns the optional parameters in a byte array. |
public Encapsulated(SecretKey key, byte[] encapsulation, byte[] params)
Encapsulated
object.key
- the shared secret as a key, must not be null
.encapsulation
- the key encapsulation message, must not be null
. The contents of the array are copied to protect against subsequent modification.params
- optional parameters, can be null
. The contents of the array are copied to protect against subsequent modification.NullPointerException
- if key
or encapsulation
is null
public SecretKey key()
SecretKey
.public byte[] encapsulation()
public byte[] params()
null
if not specified. A new copy of the byte array is returned.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/KEM.Encapsulated.html