452453454455456457458
static public class DESede_OFB8 extends JCEStreamCipher { public DESede_OFB8() { super(new OFBBlockCipher(new DESedeEngine(), 8), 64); }
771772773774775776777
static public class DESedeCBC extends JCEBlockCipher { public DESedeCBC() { super(new CBCBlockCipher(new DESedeEngine()), 64); }
1094109510961097109810991100
static public class PBEWithSHAAndDES3Key extends JCEBlockCipher { public PBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine())); }
1106110711081109111011111112
static public class PBEWithSHAAndDES2Key extends JCEBlockCipher { public PBEWithSHAAndDES2Key() { super(new CBCBlockCipher(new DESedeEngine())); }
164165166167168169170
public static class DESede extends JCEMac { public DESede() { super(new CBCBlockCipherMac(new DESedeEngine())); }
248249250251252253254
public static class DESedeCFB8 extends JCEMac { public DESedeCFB8() { super(new CFBBlockCipherMac(new DESedeEngine())); }
297298299300301302303
public static class DESede64 extends JCEMac { public DESede64() { super(new CBCBlockCipherMac(new DESedeEngine(), 64)); }
309310311312313314315
public static class DESede64with7816d4 extends JCEMac { public DESede64with7816d4() { super(new CBCBlockCipherMac(new DESedeEngine(), 64, new ISO7816d4Padding())); }
576577578579580581582
static public class BrokePBEWithSHAAndDES3Key extends BrokenJCEBlockCipher { public BrokePBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine()), PKCS12, SHA1, 192, 64); }
588589590591592593594
static public class OldPBEWithSHAAndDES3Key extends BrokenJCEBlockCipher { public OldPBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine()), OLD_PKCS12, SHA1, 192, 64); }