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
path: root/pkix
diff options
context:
space:
mode:
authorRoberto Tyley <roberto.tyley@gmail.com>2014-01-21 22:27:17 +0400
committerRoberto Tyley <roberto.tyley@gmail.com>2014-01-21 22:39:27 +0400
commit6ec7041cd9c9f17c66027f17aea1a965477a6cb7 (patch)
tree20f5e176319fa7f0544506769c965f894252f60d /pkix
parent30f32b13c202b8872338618dac63ffb108e28811 (diff)
Fix BcCertTest to use PEMData class that is within the pkix project
There are at least two identical PEMData classes, this test failed to compile because it was using the one defined by the 'prov' tests, rather than 'pkix'.
Diffstat (limited to 'pkix')
-rw-r--r--pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java b/pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java
index 018dde3c..a0eb89c7 100644
--- a/pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java
+++ b/pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java
@@ -62,7 +62,7 @@ import org.bouncycastle.crypto.params.RSAKeyGenerationParameters;
import org.bouncycastle.crypto.params.RSAKeyParameters;
import org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters;
import org.bouncycastle.crypto.util.SubjectPublicKeyInfoFactory;
-import org.bouncycastle.jce.provider.test.PEMData;
+import org.bouncycastle.cert.test.PEMData;
import org.bouncycastle.operator.ContentSigner;
import org.bouncycastle.operator.ContentVerifierProvider;
import org.bouncycastle.operator.DefaultDigestAlgorithmIdentifierFinder;