Examples of McElieceKobaraImaiCipher


Examples of org.bouncycastle.pqc.crypto.mceliece.McElieceKobaraImaiCipher

    static public class McElieceKobaraImai
        extends McElieceKobaraImaiCipherSpi
    {
        public McElieceKobaraImai()
        {
            super(new SHA1Digest(), new McElieceKobaraImaiCipher());
        }
View Full Code Here

Examples of org.bouncycastle.pqc.crypto.mceliece.McElieceKobaraImaiCipher

    static public class McElieceKobaraImai224
        extends McElieceKobaraImaiCipherSpi
    {
        public McElieceKobaraImai224()
        {
            super(new SHA224Digest(), new McElieceKobaraImaiCipher());
        }
View Full Code Here

Examples of org.bouncycastle.pqc.crypto.mceliece.McElieceKobaraImaiCipher

    static public class McElieceKobaraImai256
        extends McElieceKobaraImaiCipherSpi
    {
        public McElieceKobaraImai256()
        {
            super(new SHA256Digest(), new McElieceKobaraImaiCipher());
        }
View Full Code Here

Examples of org.bouncycastle.pqc.crypto.mceliece.McElieceKobaraImaiCipher

    static public class McElieceKobaraImai384
        extends McElieceKobaraImaiCipherSpi
    {
        public McElieceKobaraImai384()
        {
            super(new SHA384Digest(), new McElieceKobaraImaiCipher());
        }
View Full Code Here

Examples of org.bouncycastle.pqc.crypto.mceliece.McElieceKobaraImaiCipher

    static public class McElieceKobaraImai512
        extends McElieceKobaraImaiCipherSpi
    {
        public McElieceKobaraImai512()
        {
            super(new SHA512Digest(), new McElieceKobaraImaiCipher());
        }
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.