From 6ec7041cd9c9f17c66027f17aea1a965477a6cb7 Mon Sep 17 00:00:00 2001 From: Roberto Tyley Date: Tue, 21 Jan 2014 18:27:17 +0000 Subject: [PATCH] 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'. --- pkix/src/test/java/org/bouncycastle/cert/test/BcCertTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 018dde3c38..a0eb89c78b 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.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;