org.bouncycastle.tls.crypto.TlsCryptoParameters 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
package org.bouncycastle.tls.crypto;
import org.bouncycastle.tls.ProtocolVersion;
import org.bouncycastle.tls.SecurityParameters;
import org.bouncycastle.tls.TlsContext;
/**
* Carrier class for context-related parameters needed for creating secrets and ciphers.
*/
public class TlsCryptoParameters
{
private final TlsContext context;
/**
* Base constructor.
*
* @param context the context for this parameters object.
*/
public TlsCryptoParameters(TlsContext context)
{
this.context = context;
}
public SecurityParameters getSecurityParametersConnection()
{
return context.getSecurityParametersConnection();
}
public SecurityParameters getSecurityParametersHandshake()
{
return context.getSecurityParametersHandshake();
}
public ProtocolVersion getClientVersion()
{
return context.getClientVersion();
}
public ProtocolVersion getRSAPreMasterSecretVersion()
{
return context.getRSAPreMasterSecretVersion();
}
public ProtocolVersion getServerVersion()
{
return context.getServerVersion();
}
public boolean isServer()
{
return context.isServer();
}
public TlsNonceGenerator getNonceGenerator()
{
return context.getNonceGenerator();
}
}