Examples of DESedeEngine


Examples of org.bouncycastle.crypto.engines.DESedeEngine

    public static class DESede64
        extends BaseMac
    {
        public DESede64()
        {
            super(new CBCBlockCipherMac(new DESedeEngine(), 64));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    public static class DESede64with7816d4
        extends BaseMac
    {
        public DESede64with7816d4()
        {
            super(new CBCBlockCipherMac(new DESedeEngine(), 64, new ISO7816d4Padding()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    public static class CBCMAC
        extends BaseMac
    {
        public CBCMAC()
        {
            super(new CBCBlockCipherMac(new DESedeEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    static public class CMAC
        extends BaseMac
    {
        public CMAC()
        {
            super(new CMac(new DESedeEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    public static class RFC3211
        extends BaseWrapCipher
    {
        public RFC3211()
        {
            super(new RFC3211WrapEngine(new DESedeEngine()), 8);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    static public class PBEWithSHAAndDES3Key
        extends BaseBlockCipher
    {
        public PBEWithSHAAndDES3Key()
        {
            super(new CBCBlockCipher(new DESedeEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    static public class PBEWithSHAAndDES2Key
        extends BaseBlockCipher
    {
        public PBEWithSHAAndDES2Key()
        {
            super(new CBCBlockCipher(new DESedeEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

        return new CBCBlockCipher(new CamelliaEngine());
    }

    protected BlockCipher createDESedeBlockCipher()
    {
        return new CBCBlockCipher(new DESedeEngine());
    }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    static public class DESede
        extends JCEBlockCipher
    {
        public DESede()
        {
            super(new DESedeEngine());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESedeEngine

    static public class DESede_CFB8
        extends JCEStreamCipher
    {
        public DESede_CFB8()
        {
            super(new CFBBlockCipher(new DESedeEngine(), 8), 64);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.