Class SABERKEMExtractor
- java.lang.Object
-
- org.bouncycastle.pqc.crypto.saber.SABERKEMExtractor
-
- All Implemented Interfaces:
EncapsulatedSecretExtractor
public class SABERKEMExtractor extends java.lang.Object implements EncapsulatedSecretExtractor
-
-
Constructor Summary
Constructors Constructor Description SABERKEMExtractor(SABERKeyParameters privParams)
-
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
-
SABERKEMExtractor
public SABERKEMExtractor(SABERKeyParameters privParams)
-
-
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.
-
-