org.bouncycastle.jcajce.spec.DSTU4145ParameterSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-jdk15on 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.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.jcajce.spec;
import java.security.spec.ECParameterSpec;
import org.bouncycastle.asn1.ua.DSTU4145Params;
import org.bouncycastle.crypto.params.ECDomainParameters;
import org.bouncycastle.jcajce.provider.asymmetric.util.EC5Util;
import org.bouncycastle.util.Arrays;
/**
* ParameterSpec for a DSTU4145 key.
*/
public class DSTU4145ParameterSpec
extends ECParameterSpec
{
private final byte[] dke;
private final ECDomainParameters parameters;
public DSTU4145ParameterSpec(
ECDomainParameters parameters)
{
this(parameters, EC5Util.convertToSpec(parameters), DSTU4145Params.getDefaultDKE());
}
private DSTU4145ParameterSpec(ECDomainParameters parameters, ECParameterSpec ecParameterSpec, byte[] dke)
{
super(ecParameterSpec.getCurve(), ecParameterSpec.getGenerator(), ecParameterSpec.getOrder(), ecParameterSpec.getCofactor());
this.parameters = parameters;
this.dke = Arrays.clone(dke);
}
public byte[] getDKE()
{
return Arrays.clone(dke);
}
public boolean equals(Object o)
{
if (o instanceof DSTU4145ParameterSpec)
{
DSTU4145ParameterSpec other = (DSTU4145ParameterSpec)o;
return this.parameters.equals(other.parameters);
}
return false;
}
public int hashCode()
{
return this.parameters.hashCode();
}
}