Examples of DESEngine


Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

    public static class DES9797Alg3with7816d4
        extends BaseMac
    {
        public DES9797Alg3with7816d4()
        {
            super(new ISO9797Alg3Mac(new DESEngine(), new ISO7816d4Padding()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESEngine

    public static class DES9797Alg3
        extends BaseMac
    {
        public DES9797Alg3()
        {
            super(new ISO9797Alg3Mac(new DESEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.DESEngine

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

Examples of org.bouncycastle.crypto.engines.DESEngine

    static public class PBEWithMD2
        extends BaseBlockCipher
    {
        public PBEWithMD2()
        {
            super(new CBCBlockCipher(new DESEngine()));
        }
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.