67686970717273
this(256); } public KeyGen(int keySize) { super("Camellia", keySize, new CipherKeyGenerator()); }
23242526272829
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("Grainv1", 80, new CipherKeyGenerator()); }
45464748495051
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("CAST5", 128, new CipherKeyGenerator()); }
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("Grain128", 128, new CipherKeyGenerator()); }
50515253545556
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("IDEA", 128, new CipherKeyGenerator()); }
31323334353637
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("Noekeon", 128, new CipherKeyGenerator()); }
163164165166167168169
public static class Skipjack extends JCEKeyGenerator { public Skipjack() { super("SKIPJACK", 80, new CipherKeyGenerator()); }
175176177178179180181
public static class Blowfish extends JCEKeyGenerator { public Blowfish() { super("Blowfish", 128, new CipherKeyGenerator()); }
187188189190191192193
public static class Twofish extends JCEKeyGenerator { public Twofish() { super("Twofish", 256, new CipherKeyGenerator()); }
199200201202203204205
public static class RC2 extends JCEKeyGenerator { public RC2() { super("RC2", 128, new CipherKeyGenerator()); }