936937938939940941942
static public class AESCBC extends JCEBlockCipher { public AESCBC() { super(new CBCBlockCipher(new AESFastEngine()), 128); }
1010101110121013101410151016
static public class CAST5CBC extends JCEBlockCipher { public CAST5CBC() { super(new CBCBlockCipher(new CAST5Engine()), 64); }
1070107110721073107410751076
static public class PBEWithMD5AndDES extends JCEBlockCipher { public PBEWithMD5AndDES() { super(new CBCBlockCipher(new DESEngine())); }
1082108310841085108610871088
static public class PBEWithMD5AndRC2 extends JCEBlockCipher { public PBEWithMD5AndRC2() { super(new CBCBlockCipher(new RC2Engine())); }
1094109510961097109810991100
static public class PBEWithSHA1AndDES extends JCEBlockCipher { public PBEWithSHA1AndDES() { super(new CBCBlockCipher(new DESEngine())); }
1106110711081109111011111112
static public class PBEWithSHA1AndRC2 extends JCEBlockCipher { public PBEWithSHA1AndRC2() { super(new CBCBlockCipher(new RC2Engine())); }
1118111911201121112211231124
static public class PBEWithSHAAndDES3Key extends JCEBlockCipher { public PBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine())); }
1130113111321133113411351136
static public class PBEWithSHAAndDES2Key extends JCEBlockCipher { public PBEWithSHAAndDES2Key() { super(new CBCBlockCipher(new DESedeEngine())); }
1142114311441145114611471148
static public class PBEWithSHAAnd128BitRC2 extends JCEBlockCipher { public PBEWithSHAAnd128BitRC2() { super(new CBCBlockCipher(new RC2Engine())); }
1154115511561157115811591160
static public class PBEWithSHAAnd40BitRC2 extends JCEBlockCipher { public PBEWithSHAAnd40BitRC2() { super(new CBCBlockCipher(new RC2Engine())); }