org.bouncycastle.tls.TlsCredentialedAgreement 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;
import java.io.IOException;
import org.bouncycastle.tls.crypto.TlsCertificate;
import org.bouncycastle.tls.crypto.TlsSecret;
/**
* Support interface for generating a secret based on the credentials sent by a TLS peer.
*/
public interface TlsCredentialedAgreement
extends TlsCredentials
{
/**
* Calculate an agreed secret based on our credentials and the public key credentials of our peer.
*
* @param peerCertificate public key certificate of our TLS peer.
* @return the agreed secret.
* @throws IOException in case of an exception on generation of the secret.
*/
TlsSecret generateAgreement(TlsCertificate peerCertificate) throws IOException;
}