54555657585960
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("IDEA", 128, new CipherKeyGenerator()); }
51525354555657
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACRIPEMD160", 160, new CipherKeyGenerator()); }
63646566676869
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACSHA256", 256, new CipherKeyGenerator()); }
50515253545556
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACTIGER", 192, new CipherKeyGenerator()); }
65666768697071
this(256); } public KeyGen(int keySize) { super("GOST28147", keySize, new CipherKeyGenerator()); }
49505152535455
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACGOST3411", 256, new CipherKeyGenerator()); }
31323334353637
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACMD5", 128, new CipherKeyGenerator()); }
27282930313233
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("CAST6", 256, 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", 448, new CipherKeyGenerator()); }