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()); }
211212213214215216217
public static class RC4 extends JCEKeyGenerator { public RC4() { super("RC4", 128, new CipherKeyGenerator()); }
223224225226227228229
public static class RC5 extends JCEKeyGenerator { public RC5() { super("RC5", 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()); }