Examples of DSASigner


Examples of org.bouncycastle.crypto.signers.DSASigner

        {
        case PublicKeyAlgorithmTags.RSA_GENERAL:
        case PublicKeyAlgorithmTags.RSA_SIGN:
            return new RSADigestSigner(createDigest(hashAlgorithm));
        case PublicKeyAlgorithmTags.DSA:
            return new DSADigestSigner(new DSASigner(), createDigest(hashAlgorithm));
        default:
            throw new PGPException("cannot recognise keyAlgorithm");
        }
    }
View Full Code Here

Examples of org.bouncycastle.crypto.signers.DSASigner

class TlsDSSSigner
    extends DSADigestSigner
{
    TlsDSSSigner()
    {
        super(new DSASigner(), new SHA1Digest());
    }
View Full Code Here

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

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

Examples of org.bouncycastle.crypto.signers.DSASigner

    static public class stdDSA
        extends JDKDSASigner
    {
        public stdDSA()
        {
            super("SHA1withDSA", new SHA1Digest(), new DSASigner());
        }
View Full Code Here

Examples of org.bouncycastle.crypto.signers.DSASigner

    static public class dsa224
        extends JDKDSASigner
    {
        public dsa224()
        {
            super("SHA224withDSA", new SHA224Digest(), new DSASigner());
        }
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.