org.bouncycastle.crypto.ec.ECElGamalDecryptor 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.ec;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.crypto.params.ECPrivateKeyParameters;
import org.bouncycastle.math.ec.ECAlgorithms;
import org.bouncycastle.math.ec.ECCurve;
import org.bouncycastle.math.ec.ECPoint;
/**
* this does your basic decryption ElGamal style using EC
*/
public class ECElGamalDecryptor
implements ECDecryptor
{
private ECPrivateKeyParameters key;
/**
* initialise the decryptor.
*
* @param param the necessary EC key parameters.
*/
public void init(
CipherParameters param)
{
if (!(param instanceof ECPrivateKeyParameters))
{
throw new IllegalArgumentException("ECPrivateKeyParameters are required for decryption.");
}
this.key = (ECPrivateKeyParameters)param;
}
/**
* Decrypt an EC pair producing the original EC point.
*
* @param pair the EC point pair to process.
* @return the result of the Elgamal process.
*/
public ECPoint decrypt(ECPair pair)
{
if (key == null)
{
throw new IllegalStateException("ECElGamalDecryptor not initialised");
}
ECCurve curve = key.getParameters().getCurve();
ECPoint tmp = ECAlgorithms.cleanPoint(curve, pair.getX()).multiply(key.getD());
return ECAlgorithms.cleanPoint(curve, pair.getY()).subtract(tmp).normalize();
}
}