31323334353637
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("Noekeon", 128, new CipherKeyGenerator()); }
50515253545556
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("IDEA", 128, new CipherKeyGenerator()); }
67686970717273
this(256); } public KeyGen(int keySize) { super("Camellia", keySize, new CipherKeyGenerator()); }
45464748495051
public static class KeyGen extends JCEKeyGenerator { public KeyGen() { super("CAST5", 128, new CipherKeyGenerator()); }
235236237238239240241
public static class RC564 extends JCEKeyGenerator { public RC564() { super("RC5-64", 256, new CipherKeyGenerator()); }
247248249250251252253
public static class RC6 extends JCEKeyGenerator { public RC6() { super("RC6", 256, new CipherKeyGenerator()); }
259260261262263264265
public static class GOST28147 extends JCEKeyGenerator { public GOST28147() { super("GOST28147", 256, new CipherKeyGenerator()); }
271272273274275276277
public static class Rijndael extends JCEKeyGenerator { public Rijndael() { super("Rijndael", 192, new CipherKeyGenerator()); }
283284285286287288289
public static class Serpent extends JCEKeyGenerator { public Serpent() { super("Serpent", 192, new CipherKeyGenerator()); }
297298299300301302303
public static class CAST6 extends JCEKeyGenerator { public CAST6() { super("CAST6", 256, new CipherKeyGenerator()); }