summary refs log tree commit diff
path: root/crypto/src/asn1/x9/X9ECPoint.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-01-24 19:18:01 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-01-24 19:18:01 +0700
commitc1d609b35a28a5d517ac47ead9b50876a378d94a (patch)
treed3692828356ae5c7bfff818287a6ea419504f758 /crypto/src/asn1/x9/X9ECPoint.cs
parentDefault to COORD_HOMOGENEOUS for Fp (diff)
downloadBouncyCastle.NET-ed25519-c1d609b35a28a5d517ac47ead9b50876a378d94a.tar.xz
Some more EC point normalization
Diffstat (limited to 'crypto/src/asn1/x9/X9ECPoint.cs')
-rw-r--r--crypto/src/asn1/x9/X9ECPoint.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/src/asn1/x9/X9ECPoint.cs b/crypto/src/asn1/x9/X9ECPoint.cs

index ba2b2bcbf..75d58cd38 100644 --- a/crypto/src/asn1/x9/X9ECPoint.cs +++ b/crypto/src/asn1/x9/X9ECPoint.cs
@@ -10,25 +10,25 @@ namespace Org.BouncyCastle.Asn1.X9 { private readonly ECPoint p; - public X9ECPoint( + public X9ECPoint( ECPoint p) { - this.p = p; + this.p = p.Normalize(); } - public X9ECPoint( + public X9ECPoint( ECCurve c, Asn1OctetString s) { this.p = c.DecodePoint(s.GetOctets()); } - public ECPoint Point + public ECPoint Point { - get { return p; } + get { return p; } } - /** + /** * Produce an object suitable for an Asn1OutputStream. * <pre> * ECPoint ::= OCTET STRING