Examples of SHA224Digest


Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class withSha224
        extends SignatureSpi
    {
        public withSha224()
        {
            super(new SHA224Digest(), new RainbowSigner());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class McElieceFujisaki224
        extends McElieceFujisakiCipherSpi
    {
        public McElieceFujisaki224()
        {
            super(new SHA224Digest(), new McElieceFujisakiCipher());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class McEliecePKCS224
        extends McEliecePKCSCipherSpi
    {
        public McEliecePKCS224()
        {
            super(new SHA224Digest(), new McEliecePKCSCipher());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    public static class SHA224
        extends JCEMac
    {
        public SHA224()
        {
            super(new HMac(new SHA224Digest()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class SHA224WithRSAEncryption
        extends JDKDigestSignature
    {
        public SHA224WithRSAEncryption()
        {
            super(NISTObjectIdentifiers.id_sha224, new SHA224Digest(), new PKCS1Encoding(new RSABlindedEngine()));
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

        {
            return new MD5Digest();
        }
        if (sha224.contains(digestName))
        {
            return new SHA224Digest();
        }
        if (sha256.contains(digestName))
        {
            return new SHA256Digest();
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class dsa224
        extends JDKDSASigner
    {
        public dsa224()
        {
            super(new SHA224Digest(), new DSASigner());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class ecDSA224
        extends JDKDSASigner
    {
        public ecDSA224()
        {
            super(new SHA224Digest(), new ECDSASigner());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class ecNR224
        extends JDKDSASigner
    {
        public ecNR224()
        {
            super(new SHA224Digest(), new ECNRSigner());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.digests.SHA224Digest

    static public class McEliecePointcheval224
        extends McEliecePointchevalCipherSpi
    {
        public McEliecePointcheval224()
        {
            super(new SHA224Digest(), new McEliecePointchevalCipher());
        }
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.