org.bouncycastle.crypto.params.DHMQVPrivateParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.crypto.params;
import org.bouncycastle.crypto.CipherParameters;
public class DHMQVPrivateParameters
implements CipherParameters
{
private DHPrivateKeyParameters staticPrivateKey;
private DHPrivateKeyParameters ephemeralPrivateKey;
private DHPublicKeyParameters ephemeralPublicKey;
public DHMQVPrivateParameters(
DHPrivateKeyParameters staticPrivateKey,
DHPrivateKeyParameters ephemeralPrivateKey)
{
this(staticPrivateKey, ephemeralPrivateKey, null);
}
public DHMQVPrivateParameters(
DHPrivateKeyParameters staticPrivateKey,
DHPrivateKeyParameters ephemeralPrivateKey,
DHPublicKeyParameters ephemeralPublicKey)
{
if (staticPrivateKey == null)
{
throw new NullPointerException("staticPrivateKey cannot be null");
}
if (ephemeralPrivateKey == null)
{
throw new NullPointerException("ephemeralPrivateKey cannot be null");
}
DHParameters parameters = staticPrivateKey.getParameters();
if (!parameters.equals(ephemeralPrivateKey.getParameters()))
{
throw new IllegalArgumentException("Static and ephemeral private keys have different domain parameters");
}
if (ephemeralPublicKey == null)
{
ephemeralPublicKey = new DHPublicKeyParameters(
parameters.getG().modPow(ephemeralPrivateKey.getX(), parameters.getP()), // dhParams.getG().modPow(x, dhParams.getP());
parameters);
}
else if (!parameters.equals(ephemeralPublicKey.getParameters()))
{
throw new IllegalArgumentException("Ephemeral public key has different domain parameters");
}
this.staticPrivateKey = staticPrivateKey;
this.ephemeralPrivateKey = ephemeralPrivateKey;
this.ephemeralPublicKey = ephemeralPublicKey;
}
public DHPrivateKeyParameters getStaticPrivateKey()
{
return staticPrivateKey;
}
public DHPrivateKeyParameters getEphemeralPrivateKey()
{
return ephemeralPrivateKey;
}
public DHPublicKeyParameters getEphemeralPublicKey()
{
return ephemeralPublicKey;
}
}