Class NTRUPlusKeyPairGenerator
java.lang.Object
org.bouncycastle.pqc.crypto.ntruplus.NTRUPlusKeyPairGenerator
- All Implemented Interfaces:
AsymmetricCipherKeyPairGenerator
Implementation of the NTRU+ asymmetric key pair generator following the NTRU+ KEM specifications.
This generator produces NTRUPlusPublicKeyParameters and NTRUPlusPrivateKeyParameters
based on the chosen NTRU+ algorithm parameters. The implementation follows the specification
defined in the official NTRU+ documentation and reference implementation.
NTRU+ is a key encapsulation mechanism (KEM) and public key encryption (PKE) scheme based on structured lattices. It was selected as a final algorithm in the Korean Post-Quantum Cryptography Competition (KpqC).
References:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionreturn an AsymmetricCipherKeyPair containing the generated keys.voidinit(KeyGenerationParameters param) intialise the key pair generator.
-
Constructor Details
-
NTRUPlusKeyPairGenerator
public NTRUPlusKeyPairGenerator()
-
-
Method Details
-
init
Description copied from interface:AsymmetricCipherKeyPairGeneratorintialise the key pair generator.- Specified by:
initin interfaceAsymmetricCipherKeyPairGenerator- Parameters:
param- the parameters the key pair is to be initialised with.
-
generateKeyPair
Description copied from interface:AsymmetricCipherKeyPairGeneratorreturn an AsymmetricCipherKeyPair containing the generated keys.- Specified by:
generateKeyPairin interfaceAsymmetricCipherKeyPairGenerator- Returns:
- an AsymmetricCipherKeyPair containing the generated keys.
-