Bouncy Castle Cryptography 1.26

org.bouncycastle.jce.provider
Class JCEKeyGenerator

java.lang.Object
  extended byjavax.crypto.KeyGeneratorSpi
      extended byorg.bouncycastle.jce.provider.JCEKeyGenerator
Direct Known Subclasses:
JCEKeyGenerator.AES, JCEKeyGenerator.AES128, JCEKeyGenerator.AES192, JCEKeyGenerator.AES256, JCEKeyGenerator.Blowfish, JCEKeyGenerator.CAST5, JCEKeyGenerator.CAST6, JCEKeyGenerator.DES, JCEKeyGenerator.DESede, JCEKeyGenerator.DESede3, JCEKeyGenerator.HMACSHA1, JCEKeyGenerator.HMACTIGER, JCEKeyGenerator.IDEA, JCEKeyGenerator.MD2HMAC, JCEKeyGenerator.MD4HMAC, JCEKeyGenerator.MD5HMAC, JCEKeyGenerator.RC2, JCEKeyGenerator.RC4, JCEKeyGenerator.RC5, JCEKeyGenerator.RC564, JCEKeyGenerator.RC6, JCEKeyGenerator.Rijndael, JCEKeyGenerator.RIPEMD128HMAC, JCEKeyGenerator.RIPEMD160HMAC, JCEKeyGenerator.Serpent, JCEKeyGenerator.Skipjack, JCEKeyGenerator.Twofish

public class JCEKeyGenerator
extends KeyGeneratorSpi


Nested Class Summary
static class JCEKeyGenerator.AES
          AES
static class JCEKeyGenerator.AES128
           
static class JCEKeyGenerator.AES192
           
static class JCEKeyGenerator.AES256
           
static class JCEKeyGenerator.Blowfish
          Blowfish
static class JCEKeyGenerator.CAST5
          CAST5
static class JCEKeyGenerator.CAST6
          CAST6
static class JCEKeyGenerator.DES
          DES
static class JCEKeyGenerator.DESede
          DESede - the default for this is to generate a key in a-b-a format that's 24 bytes long but has 16 bytes of key material (the first 8 bytes is repeated as the last 8 bytes).
static class JCEKeyGenerator.DESede3
          generate a desEDE key in the a-b-c format.
static class JCEKeyGenerator.HMACSHA1
          HMACSHA1
static class JCEKeyGenerator.HMACTIGER
          HMACTIGER
static class JCEKeyGenerator.IDEA
          IDEA
static class JCEKeyGenerator.MD2HMAC
          MD2HMAC
static class JCEKeyGenerator.MD4HMAC
          MD4HMAC
static class JCEKeyGenerator.MD5HMAC
          MD5HMAC
static class JCEKeyGenerator.RC2
          RC2
static class JCEKeyGenerator.RC4
          RC4
static class JCEKeyGenerator.RC5
          RC5
static class JCEKeyGenerator.RC564
          RC5
static class JCEKeyGenerator.RC6
          RC6
static class JCEKeyGenerator.Rijndael
          Rijndael
static class JCEKeyGenerator.RIPEMD128HMAC
          RIPE128HMAC
static class JCEKeyGenerator.RIPEMD160HMAC
          RIPE160HMAC
static class JCEKeyGenerator.Serpent
          Serpent
static class JCEKeyGenerator.Skipjack
          SKIPJACK
static class JCEKeyGenerator.Twofish
          Twofish
 
Field Summary
protected  java.lang.String algName
           
protected  int defaultKeySize
           
protected  CipherKeyGenerator engine
           
protected  int keySize
           
protected  boolean uninitialised
           
 
Constructor Summary
protected JCEKeyGenerator(java.lang.String algName, int defaultKeySize, CipherKeyGenerator engine)
           
 
Method Summary
protected  SecretKey engineGenerateKey()
          Generates a secret key.
protected  void engineInit(AlgorithmParameterSpec params, java.security.SecureRandom random)
          Initializes the key generator with the specified parameter set and a user-provided source of randomness.
protected  void engineInit(int keySize, java.security.SecureRandom random)
          Initializes this key generator for a certain keysize, using the given source of randomness.
protected  void engineInit(java.security.SecureRandom random)
          Initializes the key generator.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

algName

protected java.lang.String algName

keySize

protected int keySize

defaultKeySize

protected int defaultKeySize

engine

protected CipherKeyGenerator engine

uninitialised

protected boolean uninitialised
Constructor Detail

JCEKeyGenerator

protected JCEKeyGenerator(java.lang.String algName,
                          int defaultKeySize,
                          CipherKeyGenerator engine)
Method Detail

engineInit

protected void engineInit(AlgorithmParameterSpec params,
                          java.security.SecureRandom random)
                   throws InvalidAlgorithmParameterException
Description copied from class: KeyGeneratorSpi
Initializes the key generator with the specified parameter set and a user-provided source of randomness.

Specified by:
engineInit in class KeyGeneratorSpi
Parameters:
params - the key generation parameters
random - the source of randomness for this key generator
Throws:
InvalidAlgorithmParameterException - if params is inappropriate for this key generator

engineInit

protected void engineInit(java.security.SecureRandom random)
Description copied from class: KeyGeneratorSpi
Initializes the key generator.

Specified by:
engineInit in class KeyGeneratorSpi
Parameters:
random - the source of randomness for this generator

engineInit

protected void engineInit(int keySize,
                          java.security.SecureRandom random)
Description copied from class: KeyGeneratorSpi
Initializes this key generator for a certain keysize, using the given source of randomness.

Specified by:
engineInit in class KeyGeneratorSpi
Parameters:
keySize - the keysize. This is an algorithm-specific metric, specified in number of bits.
random - the source of randomness for this key generator.

engineGenerateKey

protected SecretKey engineGenerateKey()
Description copied from class: KeyGeneratorSpi
Generates a secret key.

Specified by:
engineGenerateKey in class KeyGeneratorSpi
Returns:
the new key.

Bouncy Castle Cryptography 1.26