Examples of IDEAEngine


Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

    public static class CFB8Mac
        extends BaseMac
    {
        public CFB8Mac()
        {
            super(new CFBBlockCipherMac(new IDEAEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

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

Examples of org.bouncycastle.crypto.engines.IDEAEngine

    static public class PBEWithSHAAndIDEA
        extends JCEBlockCipher
    {
        public PBEWithSHAAndIDEA()
        {
            super(new CBCBlockCipher(new IDEAEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.IDEAEngine

    public static class Mac
        extends JCEMac
    {
        public Mac()
        {
            super(new CBCBlockCipherMac(new IDEAEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.IDEAEngine

    public static class CFB8Mac
        extends JCEMac
    {
        public CFB8Mac()
        {
            super(new CFBBlockCipherMac(new IDEAEngine()));
        }
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.