Class BLSKeyPairGenerator
- java.lang.Object
-
- org.bouncycastle.crypto.generators.BLSKeyPairGenerator
-
- All Implemented Interfaces:
AsymmetricCipherKeyPairGenerator
public class BLSKeyPairGenerator extends java.lang.Object implements AsymmetricCipherKeyPairGenerator
Generates a BLS signature scheme keypair. The secret key is derived fromSecureRandominput keying material via the draft-irtf-cfrg-bls-signature sec. 2.3KeyGenprocedure (HKDF-SHA256 with the spec's salt rotation), so a given random source produces a uniform secret in[1, r - 1].
-
-
Constructor Summary
Constructors Constructor Description BLSKeyPairGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsymmetricCipherKeyPairgenerateKeyPair()return an AsymmetricCipherKeyPair containing the generated keys.voidinit(KeyGenerationParameters param)intialise the key pair generator.
-
-
-
Method Detail
-
init
public void init(KeyGenerationParameters param)
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
public AsymmetricCipherKeyPair generateKeyPair()
Description copied from interface:AsymmetricCipherKeyPairGeneratorreturn an AsymmetricCipherKeyPair containing the generated keys.- Specified by:
generateKeyPairin interfaceAsymmetricCipherKeyPairGenerator- Returns:
- an AsymmetricCipherKeyPair containing the generated keys.
-
-