org.bouncycastle.tls.TlsServer 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 org.bouncycastle.tls.crypto.TlsDHConfig;
import org.bouncycastle.tls.crypto.TlsECConfig;
import java.io.IOException;
import java.util.Map;
import java.util.Vector;
/**
* Interface describing a TLS server endpoint.
*/
public interface TlsServer
extends TlsPeer
{
void init(TlsServerContext context);
/**
* Return the specified session, if available. Note that the peer's certificate
* chain for the session (if any) may need to be periodically revalidated.
*
* @param sessionID the ID of the session to resume.
* @return A {@link TlsSession} with the specified session ID, or null.
* @see SessionParameters#getPeerCertificate()
*/
TlsSession getSessionToResume(byte[] sessionID);
byte[] getNewSessionID();
/**
* WARNING: EXPERIMENTAL FEATURE, UNSTABLE API
*
* Return the {@link TlsPSKExternal external PSK} to select from the ClientHello. Note that this will only
* be called when TLS 1.3 or higher is amongst the offered protocol versions, and one or more PSKs are
* actually offered.
*
* @param identities a {@link Vector} of {@link PskIdentity} instances.
* @return the {@link TlsPSKExternal} corresponding to the selected identity, or null to not select any.
*/
TlsPSKExternal getExternalPSK(Vector identities);
void notifySession(TlsSession session);
void notifyClientVersion(ProtocolVersion clientVersion) throws IOException;
void notifyFallback(boolean isFallback) throws IOException;
void notifyOfferedCipherSuites(int[] offeredCipherSuites)
throws IOException;
// Hashtable is (Integer -> byte[])
void processClientExtensions(Map clientExtensions)
throws IOException;
ProtocolVersion getServerVersion()
throws IOException;
int[] getSupportedGroups()
throws IOException;
int getSelectedCipherSuite()
throws IOException;
// Hashtable is (Integer -> byte[])
Map getServerExtensions()
throws IOException;
// Hashtable is (Integer -> byte[])
void getServerExtensionsForConnection(Map serverExtensions)
throws IOException;
// Vector is (SupplementalDataEntry)
Vector getServerSupplementalData()
throws IOException;
/**
* Return server credentials to use. The returned value may be null, or else it MUST implement
* exactly one of {@link TlsCredentialedAgreement}, {@link TlsCredentialedDecryptor}, or
* {@link TlsCredentialedSigner}, depending on the key exchange that was negotiated.
*
* @return a TlsCredentials object or null for anonymous key exchanges
* @throws IOException
*/
TlsCredentials getCredentials()
throws IOException;
/**
* This method will be called (only) if the server included an extension of type
* "status_request" with empty "extension_data" in the extended server hello. See RFC 3546
* 3.6. Certificate Status Request. If a non-null {@link CertificateStatus} is returned, it
* is sent to the client as a handshake message of type "certificate_status".
*
* @return A {@link CertificateStatus} to be sent to the client (or null for none).
* @throws IOException
*/
CertificateStatus getCertificateStatus()
throws IOException;
CertificateRequest getCertificateRequest()
throws IOException;
TlsPSKIdentityManager getPSKIdentityManager() throws IOException;
TlsSRPLoginParameters getSRPLoginParameters() throws IOException;
TlsDHConfig getDHConfig() throws IOException;
TlsECConfig getECDHConfig() throws IOException;
// Vector is (SupplementalDataEntry)
void processClientSupplementalData(Vector clientSupplementalData)
throws IOException;
/**
* Called by the protocol handler to report the client certificate, only if
* {@link #getCertificateRequest()} returned non-null.
*
* Note: this method is responsible for certificate verification and validation.
*
* @param clientCertificate
* the effective client certificate (may be an empty chain).
* @throws IOException
*/
void notifyClientCertificate(Certificate clientCertificate)
throws IOException;
/**
* RFC 5077 3.3. NewSessionTicket Handshake Message.
*
* This method will be called (only) if a NewSessionTicket extension was sent by the server. See
* RFC 5077 4. Recommended Ticket Construction for recommended format and protection.
*
* @return The ticket.
* @throws IOException
*/
NewSessionTicket getNewSessionTicket()
throws IOException;
}