diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP256K1Curve.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecP256K1Curve.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP256K1Curve.cs b/crypto/src/math/ec/custom/sec/SecP256K1Curve.cs index a938a67d7..89de61706 100644 --- a/crypto/src/math/ec/custom/sec/SecP256K1Curve.cs +++ b/crypto/src/math/ec/custom/sec/SecP256K1Curve.cs @@ -68,6 +68,11 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec return new SecP256K1Point(this, x, y, withCompression); } + protected internal override ECPoint CreateRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, bool withCompression) + { + return new SecP256K1Point(this, x, y, zs, withCompression); + } + protected override ECPoint DecompressPoint(int yTilde, BigInteger X1) { ECFieldElement x = FromBigInteger(X1); |