Package org.bouncycastle.crypto.kems
Class RSAKEMExtractor
- java.lang.Object
-
- org.bouncycastle.crypto.kems.RSAKEMExtractor
-
- All Implemented Interfaces:
EncapsulatedSecretExtractor
public class RSAKEMExtractor extends java.lang.Object implements EncapsulatedSecretExtractor
The RSA Key Encapsulation Mechanism (RSA-KEM) from ISO 18033-2.
-
-
Constructor Summary
Constructors Constructor Description RSAKEMExtractor(RSAKeyParameters privKey, int keyLen, DerivationFunction kdf)Set up the RSA-KEM.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]extractSecret(byte[] encapsulation)Extract the secret based on the recipient private key.intgetEncapsulationLength()Return the length in bytes of the encapsulation.
-
-
-
Constructor Detail
-
RSAKEMExtractor
public RSAKEMExtractor(RSAKeyParameters privKey, int keyLen, DerivationFunction kdf)
Set up the RSA-KEM.- Parameters:
privKey- the decryption key.keyLen- length in bytes of key to generate.kdf- the key derivation function to be used.
-
-
Method Detail
-
extractSecret
public byte[] extractSecret(byte[] encapsulation)
Description copied from interface:EncapsulatedSecretExtractorExtract the secret based on the recipient private key.- Specified by:
extractSecretin interfaceEncapsulatedSecretExtractor- Parameters:
encapsulation- the encapsulated secret.
-
getEncapsulationLength
public int getEncapsulationLength()
Description copied from interface:EncapsulatedSecretExtractorReturn the length in bytes of the encapsulation.- Specified by:
getEncapsulationLengthin interfaceEncapsulatedSecretExtractor- Returns:
- length in bytes of an encapsulation for this parameter set.
-
-