Class McElieceCCA2KeyPairGenerator
- java.lang.Object
-
- org.bouncycastle.pqc.crypto.mceliece.McElieceCCA2KeyPairGenerator
-
- All Implemented Interfaces:
AsymmetricCipherKeyPairGenerator
public class McElieceCCA2KeyPairGenerator extends java.lang.Object implements AsymmetricCipherKeyPairGenerator
This class implements key pair generation of the McEliece Public Key Cryptosystem (McEliecePKC).
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
OID
The OID of the algorithm.
-
Constructor Summary
Constructors Constructor Description McElieceCCA2KeyPairGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsymmetricCipherKeyPair
generateKeyPair()
return an AsymmetricCipherKeyPair containing the generated keys.void
init(KeyGenerationParameters param)
intialise the key pair generator.
-
-
-
Field Detail
-
OID
public static final java.lang.String OID
The OID of the algorithm.- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public void init(KeyGenerationParameters param)
Description copied from interface:AsymmetricCipherKeyPairGenerator
intialise the key pair generator.- Specified by:
init
in interfaceAsymmetricCipherKeyPairGenerator
- Parameters:
param
- the parameters the key pair is to be initialised with.
-
generateKeyPair
public AsymmetricCipherKeyPair generateKeyPair()
Description copied from interface:AsymmetricCipherKeyPairGenerator
return an AsymmetricCipherKeyPair containing the generated keys.- Specified by:
generateKeyPair
in interfaceAsymmetricCipherKeyPairGenerator
- Returns:
- an AsymmetricCipherKeyPair containing the generated keys.
-
-