org.bouncycastle.tls.crypto.impl.bc.BcTlsDSASigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
The newest version!
package org.bouncycastle.tls.crypto.impl.bc;
import org.bouncycastle.crypto.DSA;
import org.bouncycastle.crypto.params.DSAPrivateKeyParameters;
import org.bouncycastle.crypto.signers.DSASigner;
import org.bouncycastle.crypto.signers.HMacDSAKCalculator;
import org.bouncycastle.tls.SignatureAlgorithm;
/**
* Implementation class for generation of the raw DSA signature type using the BC light-weight API.
*/
public class BcTlsDSASigner
extends BcTlsDSSSigner
{
public BcTlsDSASigner(BcTlsCrypto crypto, DSAPrivateKeyParameters privateKey)
{
super(crypto, privateKey);
}
protected DSA createDSAImpl(int cryptoHashAlgorithm)
{
return new DSASigner(new HMacDSAKCalculator(crypto.createDigest(cryptoHashAlgorithm)));
}
protected short getSignatureAlgorithm()
{
return SignatureAlgorithm.dsa;
}
}