119120121122123124125
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACSHA512", 512, new CipherKeyGenerator()); }
128129130131132133134
public static class KeyGeneratorT224 extends BaseKeyGenerator { public KeyGeneratorT224() { super("HMACSHA512/224", 224, new CipherKeyGenerator()); }
137138139140141142143
public static class KeyGeneratorT256 extends BaseKeyGenerator { public KeyGeneratorT256() { super("HMACSHA512/256", 256, new CipherKeyGenerator()); }
26272829303132
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("TEA", 128, new CipherKeyGenerator()); }
25262728293031
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("HC256", 256, new CipherKeyGenerator()); }
49505152535455
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("CAST5", 128, new CipherKeyGenerator()); }
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("HMACMD2", 128, new CipherKeyGenerator()); }
263264265266267268269
public static class KeyGenerator extends BaseKeyGenerator { public KeyGenerator() { super("RC2", 128, new CipherKeyGenerator()); }
36373839404142
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("Blowfish", 128, new CipherKeyGenerator()); }
public static class KeyGen extends BaseKeyGenerator { public KeyGen() { super("Grainv1", 80, new CipherKeyGenerator()); }