org.bouncycastle.asn1.x9.X9ECPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package org.bouncycastle.asn1.x9;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.DERObject;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.math.ec.ECCurve;
import org.bouncycastle.math.ec.ECPoint;
/**
* class for describing an ECPoint as a DER object.
*/
public class X9ECPoint
extends ASN1Encodable
{
ECPoint p;
public X9ECPoint(
ECPoint p)
{
this.p = p;
}
public X9ECPoint(
ECCurve c,
ASN1OctetString s)
{
this.p = c.decodePoint(s.getOctets());
}
public ECPoint getPoint()
{
return p;
}
/**
* Produce an object suitable for an ASN1OutputStream.
*
* ECPoint ::= OCTET STRING
*
*
* Octet string produced using ECPoint.getEncoded().
*/
public DERObject toASN1Object()
{
return new DEROctetString(p.getEncoded());
}
}