1130113111321133113411351136
static public class PBEWithSHAAndDES2Key extends JCEBlockCipher { public PBEWithSHAAndDES2Key() { super(new CBCBlockCipher(new DESedeEngine())); }
154155156157158159160
public static class DESede extends JCEMac { public DESede() { super(new CBCBlockCipherMac(new DESedeEngine())); }
238239240241242243244
public static class DESedeCFB8 extends JCEMac { public DESedeCFB8() { super(new CFBBlockCipherMac(new DESedeEngine())); }
299300301302303304305
public static class DESede64 extends JCEMac { public DESede64() { super(new CBCBlockCipherMac(new DESedeEngine(), 64)); }
575576577578579580581
static public class BrokePBEWithSHAAndDES3Key extends BrokenJCEBlockCipher { public BrokePBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine()), PKCS12, SHA1, 192, 64); }
587588589590591592593
static public class OldPBEWithSHAAndDES3Key extends BrokenJCEBlockCipher { public OldPBEWithSHAAndDES3Key() { super(new CBCBlockCipher(new DESedeEngine()), OLD_PKCS12, SHA1, 192, 64); }
599600601602603604605
static public class BrokePBEWithSHAAndDES2Key extends BrokenJCEBlockCipher { public BrokePBEWithSHAAndDES2Key() { super(new CBCBlockCipher(new DESedeEngine()), PKCS12, SHA1, 128, 64); }
378379380381382383384
static public class DESede_CFB8 extends JCEStreamCipher { public DESede_CFB8() { super(new CFBBlockCipher(new DESedeEngine(), 8), 64); }
450451452453454455456
static public class DESede_OFB8 extends JCEStreamCipher { public DESede_OFB8() { super(new OFBBlockCipher(new DESedeEngine(), 8), 64); }
387388389390391392393