summary refs log tree commit diff
path: root/crypto/test/src/asn1
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@gmail.com>2022-06-21 21:14:47 +0700
committerPeter Dettman <peter.dettman@gmail.com>2022-06-21 21:14:47 +0700
commit7ca8774497c8e5c46fb67369909d4d9a87cbeb3f (patch)
treee7ab545ca1b51d48f3506ccbf310c34275d2f8ac /crypto/test/src/asn1
parentRemove legacy TLS (diff)
downloadBouncyCastle.NET-ed25519-7ca8774497c8e5c46fb67369909d4d9a87cbeb3f.tar.xz
Remove per-ECPoint compression
Diffstat (limited to 'crypto/test/src/asn1')
-rw-r--r--crypto/test/src/asn1/test/X9Test.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/asn1/test/X9Test.cs b/crypto/test/src/asn1/test/X9Test.cs
index db2541f7c..0d2c58f0f 100644
--- a/crypto/test/src/asn1/test/X9Test.cs
+++ b/crypto/test/src/asn1/test/X9Test.cs
@@ -65,7 +65,7 @@ namespace Org.BouncyCastle.Asn1.Tests
 
             X9ECPoint x9P = new X9ECPoint(ecP.Curve, p);
 
-            if (!Arrays.AreEqual(p.GetOctets(), x9P.Point.GetEncoded()))
+            if (!Arrays.AreEqual(p.GetOctets(), x9P.GetPointEncoding()))
             {
                 Fail("point encoding not preserved");
             }