org.bouncycastle.tls.crypto.impl.bc.BcTlsECDSASigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of impersonator Show documentation
Show all versions of impersonator Show documentation
Spoof TLS/JA3/JA4 and HTTP/2 fingerprints in Java
The newest version!
package org.bouncycastle.tls.crypto.impl.bc;
import org.bouncycastle.crypto.DSA;
import org.bouncycastle.crypto.params.ECPrivateKeyParameters;
import org.bouncycastle.crypto.signers.ECDSASigner;
import org.bouncycastle.crypto.signers.HMacDSAKCalculator;
import org.bouncycastle.tls.SignatureAlgorithm;
/**
* Implementation class for generation of the raw ECDSA signature type using the BC light-weight API.
*/
public class BcTlsECDSASigner
extends BcTlsDSSSigner
{
public BcTlsECDSASigner(BcTlsCrypto crypto, ECPrivateKeyParameters privateKey)
{
super(crypto, privateKey);
}
protected DSA createDSAImpl(int cryptoHashAlgorithm)
{
return new ECDSASigner(new HMacDSAKCalculator(crypto.createDigest(cryptoHashAlgorithm)));
}
protected short getSignatureAlgorithm()
{
return SignatureAlgorithm.ecdsa;
}
}