org.spongycastle.crypto.ec.ECPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
package org.spongycastle.crypto.ec;
import org.spongycastle.math.ec.ECPoint;
public class ECPair
{
private final ECPoint x;
private final ECPoint y;
public ECPair(ECPoint x, ECPoint y)
{
this.x = x;
this.y = y;
}
public ECPoint getX()
{
return x;
}
public ECPoint getY()
{
return y;
}
public boolean equals(ECPair other)
{
return other.getX().equals(getX()) && other.getY().equals(getY());
}
public boolean equals(Object other)
{
return other instanceof ECPair ? equals((ECPair)other) : false;
}
public int hashCode()
{
return x.hashCode() + 37 * y.hashCode();
}
}