org.bouncycastle.tls.crypto.impl.jcajce.JceTlsECDH 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.
The newest version!
package org.bouncycastle.tls.crypto.impl.jcajce;
import java.io.IOException;
import java.security.KeyPair;
import org.bouncycastle.jce.interfaces.ECPrivateKey;
import org.bouncycastle.jce.interfaces.ECPublicKey;
import org.bouncycastle.jce.spec.ECPrivateKeySpec;
import org.bouncycastle.tls.crypto.TlsAgreement;
import org.bouncycastle.tls.crypto.TlsSecret;
/**
* Support class for ephemeral Elliptic Curve Diffie-Hellman using the JCE.
*/
public class JceTlsECDH
implements TlsAgreement
{
protected final JceTlsECDomain domain;
protected KeyPair localKeyPair;
protected ECPublicKey peerPublicKey;
public JceTlsECDH(JceTlsECDomain domain)
{
this.domain = domain;
}
public byte[] generateEphemeral() throws IOException
{
this.localKeyPair = domain.generateKeyPair();
return domain.encodePublicKey((ECPublicKey)localKeyPair.getPublic());
}
public void receivePeerValue(byte[] peerValue) throws IOException
{
this.peerPublicKey = domain.decodePublicKey(peerValue);
}
public TlsSecret calculateSecret() throws IOException
{
return domain.calculateECDHAgreement( (ECPrivateKey)localKeyPair.getPrivate(), peerPublicKey);
}
}