org.bouncycastle.crypto.agreement.DHUnifiedAgreement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 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 JDK 1.4.
package org.bouncycastle.crypto.agreement;
import java.math.BigInteger;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.crypto.CryptoServicesRegistrar;
import org.bouncycastle.crypto.params.DHUPrivateParameters;
import org.bouncycastle.crypto.params.DHUPublicParameters;
import org.bouncycastle.util.BigIntegers;
/**
* FFC Unified static/ephemeral agreement as described in NIST SP 800-56A.
*/
public class DHUnifiedAgreement
{
private DHUPrivateParameters privParams;
public void init(
CipherParameters key)
{
this.privParams = (DHUPrivateParameters)key;
CryptoServicesRegistrar.checkConstraints(Utils.getDefaultProperties("DHU", this.privParams.getStaticPrivateKey()));
}
public int getFieldSize()
{
return (privParams.getStaticPrivateKey().getParameters().getP().bitLength() + 7) / 8;
}
public byte[] calculateAgreement(CipherParameters pubKey)
{
DHUPublicParameters pubParams = (DHUPublicParameters)pubKey;
DHBasicAgreement sAgree = new DHBasicAgreement();
DHBasicAgreement eAgree = new DHBasicAgreement();
sAgree.init(privParams.getStaticPrivateKey());
BigInteger sComp = sAgree.calculateAgreement(pubParams.getStaticPublicKey());
eAgree.init(privParams.getEphemeralPrivateKey());
BigInteger eComp = eAgree.calculateAgreement(pubParams.getEphemeralPublicKey());
int fieldSize = getFieldSize();
byte[] result = new byte[fieldSize * 2];
BigIntegers.asUnsignedByteArray(eComp, result, 0, fieldSize);
BigIntegers.asUnsignedByteArray(sComp, result, fieldSize, fieldSize);
return result;
}
}