Package org.bouncycastle.crypto

Examples of org.bouncycastle.crypto.CipherKeyGenerator


    public static class TEA
        extends JCEKeyGenerator
    {
        public TEA()
        {
            super("TEA", 128, new CipherKeyGenerator());
        }
View Full Code Here


    public static class XTEA
        extends JCEKeyGenerator
    {
        public XTEA()
        {
            super("XTEA", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class Salsa20
        extends JCEKeyGenerator
    {
        public Salsa20()
        {
            super("Salsa20", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class HC128
        extends JCEKeyGenerator
    {
        public HC128()
        {
            super("HC128", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class HC256
        extends JCEKeyGenerator
    {
        public HC256()
        {
            super("HC256", 256, new CipherKeyGenerator());
        }
View Full Code Here

    public static class VMPC
        extends JCEKeyGenerator
    {
        public VMPC()
        {
            super("VMPC", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class VMPCKSA3
        extends JCEKeyGenerator
    {
        public VMPCKSA3()
        {
            super("VMPC-KSA3", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class MD2HMAC
        extends JCEKeyGenerator
    {
        public MD2HMAC()
        {
            super("HMACMD2", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class MD4HMAC
        extends JCEKeyGenerator
    {
        public MD4HMAC()
        {
            super("HMACMD4", 128, new CipherKeyGenerator());
        }
View Full Code Here

    public static class MD5HMAC
        extends JCEKeyGenerator
    {
        public MD5HMAC()
        {
            super("HMACMD5", 128, new CipherKeyGenerator());
        }
View Full Code Here

TOP

Related Classes of org.bouncycastle.crypto.CipherKeyGenerator

Copyright © 2018 www.massapicom. 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.