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())); }
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())); }
771772773774775776777
static public class DESede extends JCEBlockCipher { public DESede() { super(new DESedeEngine()); }
783784785786787788789
static public class DESedeCBC extends JCEBlockCipher { public DESedeCBC() { super(new CBCBlockCipher(new DESedeEngine()), 64); }
445446447448449450451
public static class RFC3211DESedeWrap extends WrapCipherSpi { public RFC3211DESedeWrap() { super(new RFC3211WrapEngine(new DESedeEngine()), 8); }
392393394395396397398
static public class DESede_CFB8 extends JCEStreamCipher { public DESede_CFB8() { super(new CFBBlockCipher(new DESedeEngine(), 8), 64); }
452453454455456457458
static public class DESede_OFB8 extends JCEStreamCipher { public DESede_OFB8() { super(new OFBBlockCipher(new DESedeEngine(), 8), 64); }
14151617181920
public static class Base extends JCEStreamCipher { public Base() { super(new Grainv1Engine(), 8); }