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 bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
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;
}