Examples of AESFastEngine


Examples of org.bouncycastle.crypto.engines.AESFastEngine

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

Examples of org.bouncycastle.crypto.engines.AESFastEngine

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

Examples of org.bouncycastle.crypto.engines.AESFastEngine

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

Examples of org.bouncycastle.crypto.engines.AESFastEngine

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

Examples of org.bouncycastle.crypto.engines.AESFastEngine

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

Examples of org.bouncycastle.crypto.engines.AESFastEngine

    static public class AESCFB
        extends JCEBlockCipher
    {
        public AESCFB()
        {
            super(new CFBBlockCipher(new AESFastEngine(), 128), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.AESFastEngine

    static public class AESOFB
        extends JCEBlockCipher
    {
        public AESOFB()
        {
            super(new OFBBlockCipher(new AESFastEngine(), 128), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.AESFastEngine

    static public class CFB
        extends JCEBlockCipher
    {
        public CFB()
        {
            super(new CFBBlockCipher(new AESFastEngine(), 128), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.AESFastEngine

    static public class OFB
        extends JCEBlockCipher
    {
        public OFB()
        {
            super(new OFBBlockCipher(new AESFastEngine(), 128), 128);
        }
View Full Code Here

Examples of org.bouncycastle.crypto.engines.AESFastEngine

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