Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java')
-rw-r--r--core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java b/core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java
index 2002da41..e2be2deb 100644
--- a/core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java
+++ b/core/src/test/java/org/bouncycastle/math/ec/test/ECPointTest.java
@@ -7,9 +7,9 @@ import java.util.Enumeration;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
-import org.bouncycastle.asn1.sec.SECCustomNamedCurves;
import org.bouncycastle.asn1.sec.SECNamedCurves;
import org.bouncycastle.asn1.x9.X9ECParameters;
+import org.bouncycastle.crypto.ec.CustomNamedCurves;
import org.bouncycastle.math.ec.ECCurve;
import org.bouncycastle.math.ec.ECPoint;
@@ -446,7 +446,7 @@ public class ECPointTest extends TestCase
X9ECParameters x9ECParameters = SECNamedCurves.getByName(name);
implAddSubtractMultiplyTwiceEncodingTest(x9ECParameters);
- x9ECParameters = SECCustomNamedCurves.getByName(name);
+ x9ECParameters = CustomNamedCurves.getByName(name);
if (x9ECParameters != null)
{
implAddSubtractMultiplyTwiceEncodingTest(x9ECParameters);