Examples of CamelliaEngine


Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class RFC3211Wrap
        extends BaseWrapCipher
    {
        public RFC3211Wrap()
        {
            super(new RFC3211WrapEngine(new CamelliaEngine()), 16);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class GMAC
        extends BaseMac
    {
        public GMAC()
        {
            super(new GMac(new GCMBlockCipher(new CamelliaEngine())));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

        return new GCMBlockCipher(new AESFastEngine());
    }

    protected BlockCipher createCamelliaBlockCipher()
    {
        return new CBCBlockCipher(new CamelliaEngine());
    }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

        {
            super(new BlockCipherProvider()
            {
                public BlockCipher get()
                {
                    return new CamelliaEngine();
                }
            });
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class CBC
       extends BaseBlockCipher
    {
        public CBC()
        {
            super(new CBCBlockCipher(new CamelliaEngine()), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

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

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class CBC
       extends JCEBlockCipher
    {
        public CBC()
        {
            super(new CBCBlockCipher(new CamelliaEngine()), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class RFC3211Wrap
        extends WrapCipherSpi
    {
        public RFC3211Wrap()
        {
            super(new RFC3211WrapEngine(new CamelliaEngine()), 16);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

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

Examples of org.bouncycastle.crypto.engines.CamelliaEngine

    public static class ECB
        extends JCEBlockCipher
    {
        public ECB()
        {
            super(new CamelliaEngine());
        }
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.