public class ECIESKEMExtractor extends java.lang.Object implements EncapsulatedSecretExtractor
| Constructor and Description |
|---|
ECIESKEMExtractor(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.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
extractSecret(byte[] encapsulation)
Extract the secret based on the recipient private key.
|
int |
getEncapsulationLength()
Return the length in bytes of the encapsulation.
|
public ECIESKEMExtractor(ECPrivateKeyParameters decKey, int keyLen, DerivationFunction kdf)
decKey - the decryption key.keyLen - length in bytes of key to generate.kdf - the key derivation function to be used.public ECIESKEMExtractor(ECPrivateKeyParameters decKey, int keyLen, DerivationFunction kdf, boolean cofactorMode, boolean oldCofactorMode, boolean singleHashMode)
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.public byte[] extractSecret(byte[] encapsulation)
EncapsulatedSecretExtractorextractSecret in interface EncapsulatedSecretExtractorencapsulation - the encapsulated secret.public int getEncapsulationLength()
EncapsulatedSecretExtractorgetEncapsulationLength in interface EncapsulatedSecretExtractor