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