Java 类org.bouncycastle.crypto.signers.DSADigestSigner 实例源码

项目:gwt-crypto    文件:BcImplProvider.java   
static Signer createSigner(int keyAlgorithm, int hashAlgorithm)
    throws PGPException
{
    switch(keyAlgorithm)
    {
    case PublicKeyAlgorithmTags.RSA_GENERAL:
    case PublicKeyAlgorithmTags.RSA_SIGN:
        return new RSADigestSigner(createDigest(hashAlgorithm));
    case PublicKeyAlgorithmTags.DSA:
        return new DSADigestSigner(new DSASigner(), createDigest(hashAlgorithm));
    case PublicKeyAlgorithmTags.ECDSA:
        return new DSADigestSigner(new ECDSASigner(), createDigest(hashAlgorithm));
    default:
        throw new PGPException("cannot recognise keyAlgorithm: " + keyAlgorithm);
    }
}
项目:gwt-crypto    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null && algorithm.getSignature() != getSignatureAlgorithm())
    {
        throw new IllegalStateException();
    }

    short hashAlgorithm = algorithm == null ? HashAlgorithm.sha1 : algorithm.getHash();
    Digest d = raw ? new NullDigest() : TlsUtils.createHash(hashAlgorithm);

    Signer s = new DSADigestSigner(createDSAImpl(hashAlgorithm), d);
    s.init(forSigning, makeInitParameters(forSigning, cp));
    return s;
}
项目:Aki-SSL    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null && algorithm.getSignature() != getSignatureAlgorithm())
    {
        throw new IllegalStateException();
    }

    short hashAlgorithm = algorithm == null ? HashAlgorithm.sha1 : algorithm.getHash();
    Digest d = raw ? new NullDigest() : TlsUtils.createHash(hashAlgorithm);

    Signer s = new DSADigestSigner(createDSAImpl(hashAlgorithm), d);
    s.init(forSigning, makeInitParameters(forSigning, cp));
    return s;
}
项目:TinyTravelTracker    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null && algorithm.getSignature() != getSignatureAlgorithm())
    {
        throw new IllegalStateException();
    }

    short hashAlgorithm = algorithm == null ? HashAlgorithm.sha1 : algorithm.getHash();
    Digest d = raw ? new NullDigest() : TlsUtils.createHash(hashAlgorithm);

    Signer s = new DSADigestSigner(createDSAImpl(hashAlgorithm), d);
    s.init(forSigning, makeInitParameters(forSigning, cp));
    return s;
}
项目:CryptMeme    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null
        && (algorithm.getHash() != HashAlgorithm.sha1 || algorithm.getSignature() != getSignatureAlgorithm()))
    {
        throw new IllegalStateException();
    }

    Digest d = raw ? new NullDigest() : TlsUtils.createHash(HashAlgorithm.sha1);

    Signer s = new DSADigestSigner(createDSAImpl(), d);
    s.init(forSigning, cp);
    return s;
}
项目:irma_future_id    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null
        && (algorithm.getHash() != HashAlgorithm.sha1 || algorithm.getSignature() != getSignatureAlgorithm()))
    {
        throw new IllegalStateException();
    }

    Digest d = raw ? new NullDigest() : TlsUtils.createHash(HashAlgorithm.sha1);

    Signer s = new DSADigestSigner(createDSAImpl(), d);
    s.init(forSigning, cp);
    return s;
}
项目:bc-java    文件:TlsDSASigner.java   
protected Signer makeSigner(SignatureAndHashAlgorithm algorithm, boolean raw, boolean forSigning,
    CipherParameters cp)
{
    if ((algorithm != null) != TlsUtils.isTLSv12(context))
    {
        throw new IllegalStateException();
    }

    if (algorithm != null
        && (algorithm.getHash() != HashAlgorithm.sha1 || algorithm.getSignature() != getSignatureAlgorithm()))
    {
        throw new IllegalStateException();
    }

    Digest d = raw ? new NullDigest() : TlsUtils.createHash(HashAlgorithm.sha1);

    Signer s = new DSADigestSigner(createDSAImpl(), d);
    s.init(forSigning, cp);
    return s;
}
项目:ipack    文件:BcDSAContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:ipack    文件:BcDSAContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:xitk    文件:SoftTokenContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
        throws OperatorCreationException {
    if (!AlgorithmUtil.isDSASigAlg(sigAlgId)) {
        throw new OperatorCreationException(
                "the given algorithm is not a valid DSA signature algirthm '"
                + sigAlgId.getAlgorithm().getId() + "'");
    }

    Digest dig = digestProvider.get(digAlgId);
    DSASigner dsaSigner = new DSASigner();
    return plain ? new DSAPlainDigestSigner(dsaSigner, dig)
            : new DSADigestSigner(dsaSigner, dig);
}
项目:xitk    文件:SoftTokenContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
        throws OperatorCreationException {
    if (!AlgorithmUtil.isECSigAlg(sigAlgId)) {
        throw new OperatorCreationException(
                "the given algorithm is not a valid EC signature algorithm '"
                + sigAlgId.getAlgorithm().getId() + "'");
    }

    Digest dig = digestProvider.get(digAlgId);
    ECDSASigner dsaSigner = new ECDSASigner();

    return plain ? new DSAPlainDigestSigner(dsaSigner, dig)
            : new DSADigestSigner(dsaSigner, dig);
}
项目:gwt-crypto    文件:BcDSAContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:gwt-crypto    文件:BcDSAContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:gwt-crypto    文件:BcECContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new ECDSASigner(), dig);
}
项目:gwt-crypto    文件:BcECContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new ECDSASigner(), dig);
}
项目:Aki-SSL    文件:BcDSAContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:Aki-SSL    文件:BcDSAContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:Aki-SSL    文件:BcECContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new ECDSASigner(), dig);
}
项目:Aki-SSL    文件:BcECContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new ECDSASigner(), dig);
}
项目:CryptMeme    文件:BcImplProvider.java   
static Signer createSigner(int keyAlgorithm, int hashAlgorithm)
    throws PGPException
{
    switch(keyAlgorithm)
    {
    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");
    }
}
项目:Oberien    文件:CustomECDSASigner.java   
@Override
protected Signer makeSigner(SignatureAndHashAlgorithm signatureAndHashAlgorithm, boolean raw, boolean forSigning, CipherParameters cipherParameters) {
    if (!TlsUtils.isTLSv12(context)) {
        throw new IllegalStateException("Impossible");
    }
    Digest d = raw ? new NullDigest() : TlsUtils.createHash(HashAlgorithm.sha256);
    Signer s = new DSADigestSigner(createDSAImpl(HashAlgorithm.sha256), d);
    s.init(forSigning, makeInitParameters(forSigning, cipherParameters));
    return s;
}
项目:irma_future_id    文件:BcDSAContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:irma_future_id    文件:BcDSAContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:irma_future_id    文件:BcImplProvider.java   
static Signer createSigner(int keyAlgorithm, int hashAlgorithm)
    throws PGPException
{
    switch(keyAlgorithm)
    {
    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");
    }
}
项目:bc-java    文件:BcDSAContentVerifierProviderBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId)
    throws OperatorCreationException
{
    AlgorithmIdentifier digAlg = digestAlgorithmFinder.find(sigAlgId);
    Digest dig = digestProvider.get(digAlg);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:bc-java    文件:BcDSAContentSignerBuilder.java   
protected Signer createSigner(AlgorithmIdentifier sigAlgId, AlgorithmIdentifier digAlgId)
    throws OperatorCreationException
{
    Digest dig = digestProvider.get(digAlgId);

    return new DSADigestSigner(new DSASigner(), dig);
}
项目:bc-java    文件:BcImplProvider.java   
static Signer createSigner(int keyAlgorithm, int hashAlgorithm)
    throws PGPException
{
    switch(keyAlgorithm)
    {
    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");
    }
}
项目:jradius    文件:TlsDSSSigner.java   
public byte[] calculateRawSignature(AsymmetricKeyParameter privateKey, byte[] md5andsha1)
    throws CryptoException
{
    // Note: Only use the SHA1 part of the hash
    Signer sig = new DSADigestSigner(new DSASigner(), new NullDigest());
    sig.init(true, privateKey);
    sig.update(md5andsha1, 16, 20);
    return sig.generateSignature();
}
项目:ipack    文件:TlsDSASigner.java   
protected Signer makeSigner(Digest d, boolean forSigning, CipherParameters cp)
{
    Signer s = new DSADigestSigner(createDSAImpl(), d);
    s.init(forSigning, cp);
    return s;
}
项目:jradius    文件:TlsDSSSigner.java   
public Signer createVerifyer(AsymmetricKeyParameter publicKey)
{
    Signer s = new DSADigestSigner(new DSASigner(), new SHA1Digest());
    s.init(false, publicKey);
    return s;
}