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()); }
309310311312313314315
public static class TEA extends JCEKeyGenerator { public TEA() { super("TEA", 128, new CipherKeyGenerator()); }
321322323324325326327
public static class XTEA extends JCEKeyGenerator { public XTEA() { super("XTEA", 128, new CipherKeyGenerator()); }