Class SM9KEMExtractor
java.lang.Object
org.bouncycastle.crypto.kems.SM9KEMExtractor
- All Implemented Interfaces:
EncapsulatedSecretExtractor
SM9 key encapsulation mechanism - decapsulation side (GM/T 0044.4-2016, clause 6).
Recovers the shared key K from the encapsulation C using the user's private
key de: w' = e(C, de), K = KDF(C || w' || ID, klen).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]extractSecret(byte[] encapsulation) Extract the secret based on the recipient private key.intReturn the length in bytes of the encapsulation.
-
Constructor Details
-
SM9KEMExtractor
-
-
Method Details
-
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.
-