org.bouncycastle.tls.crypto.impl.bc.BcTlsSigner 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.params.AsymmetricKeyParameter;
import org.bouncycastle.tls.SignatureAndHashAlgorithm;
import org.bouncycastle.tls.crypto.TlsSigner;
import org.bouncycastle.tls.crypto.TlsStreamSigner;
public abstract class BcTlsSigner
implements TlsSigner
{
protected final BcTlsCrypto crypto;
protected final AsymmetricKeyParameter privateKey;
protected BcTlsSigner(BcTlsCrypto crypto, AsymmetricKeyParameter privateKey)
{
if (crypto == null)
{
throw new NullPointerException("'crypto' cannot be null");
}
if (privateKey == null)
{
throw new NullPointerException("'privateKey' cannot be null");
}
if (!privateKey.isPrivate())
{
throw new IllegalArgumentException("'privateKey' must be private");
}
this.crypto = crypto;
this.privateKey = privateKey;
}
public TlsStreamSigner getStreamSigner(SignatureAndHashAlgorithm algorithm)
{
return null;
}
}