Package org.bouncycastle.pqc.crypto.bike
Class BIKEKeyPairGenerator
- java.lang.Object
-
- org.bouncycastle.pqc.crypto.bike.BIKEKeyPairGenerator
-
- All Implemented Interfaces:
AsymmetricCipherKeyPairGenerator
public class BIKEKeyPairGenerator extends java.lang.Object implements AsymmetricCipherKeyPairGenerator
-
-
Constructor Summary
Constructors Constructor Description BIKEKeyPairGenerator()
-
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 params)
intialise the key pair generator.
-
-
-
Method Detail
-
init
public void init(KeyGenerationParameters params)
Description copied from interface:AsymmetricCipherKeyPairGenerator
intialise the key pair generator.- Specified by:
init
in interfaceAsymmetricCipherKeyPairGenerator
- Parameters:
params
- 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.
-
-