Class RSAKeyPairGenerator
java.lang.Object
org.bouncycastle.crypto.generators.RSAKeyPairGenerator
- All Implemented Interfaces:
AsymmetricCipherKeyPairGenerator
an RSA key pair generator.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected BigIntegerchooseRandomPrime(int bitlength, BigInteger e, BigInteger sqrdBound) Choose a random prime value for use with RSAreturn an AsymmetricCipherKeyPair containing the generated keys.voidinit(KeyGenerationParameters param) intialise the key pair generator.protected boolean
-
Constructor Details
-
RSAKeyPairGenerator
public RSAKeyPairGenerator()
-
-
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.
-
chooseRandomPrime
Choose a random prime value for use with RSA- Parameters:
bitlength- the bit-length of the returned primee- the RSA public exponent- Returns:
- A prime p, with (p-1) relatively prime to e
-
isProbablePrime
-