Package org.bouncycastle.crypto.kems
Class ECIESKEMExtractor
java.lang.Object
org.bouncycastle.crypto.kems.ECIESKEMExtractor
- All Implemented Interfaces:
EncapsulatedSecretExtractor
The ECIES Key Encapsulation Mechanism (ECIES-KEM) from ISO 18033-2.
-
Constructor Summary
ConstructorDescriptionECIESKEMExtractor
(ECPrivateKeyParameters decKey, int keyLen, DerivationFunction kdf) Set up the ECIES-KEM.ECIESKEMExtractor
(ECPrivateKeyParameters decKey, int keyLen, DerivationFunction kdf, boolean cofactorMode, boolean oldCofactorMode, boolean singleHashMode) Set up the ECIES-KEM. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
extractSecret
(byte[] encapsulation) Extract the secret based on the recipient private key.int
Return the length in bytes of the encapsulation.
-
Constructor Details
-
ECIESKEMExtractor
Set up the ECIES-KEM.- Parameters:
decKey
- the decryption key.keyLen
- length in bytes of key to generate.kdf
- the key derivation function to be used.
-
ECIESKEMExtractor
public ECIESKEMExtractor(ECPrivateKeyParameters decKey, int keyLen, DerivationFunction kdf, boolean cofactorMode, boolean oldCofactorMode, boolean singleHashMode) Set up the ECIES-KEM.- Parameters:
decKey
- the decryption key.keyLen
- length in bytes of key to generate.kdf
- the key derivation function to be used.cofactorMode
- if true use the new cofactor ECDH.oldCofactorMode
- if true use the old cofactor ECDH.singleHashMode
- if true use single hash mode.
-
-
Method Details
-
extractSecret
public byte[] extractSecret(byte[] encapsulation) Description copied from interface:EncapsulatedSecretExtractor
Extract the secret based on the recipient private key.- Specified by:
extractSecret
in interfaceEncapsulatedSecretExtractor
- Parameters:
encapsulation
- the encapsulated secret.
-
getEncapsulationLength
public int getEncapsulationLength()Description copied from interface:EncapsulatedSecretExtractor
Return the length in bytes of the encapsulation.- Specified by:
getEncapsulationLength
in interfaceEncapsulatedSecretExtractor
- Returns:
- length in bytes of an encapsulation for this parameter set.
-