summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
index f2e921a53..d574f0f94 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
@@ -379,7 +379,6 @@ public abstract class EnrollProfile extends BasicProfile
org.mozilla.jss.pkix.cms.SignedData cmcFullReq =
(org.mozilla.jss.pkix.cms.SignedData) cmcReq.getInterpretedContent();
org.mozilla.jss.pkix.cms.EncapsulatedContentInfo ci = cmcFullReq.getContentInfo();
- OBJECT_IDENTIFIER id = ci.getContentType();
OCTET_STRING content = ci.getContent();
ByteArrayInputStream s = new ByteArrayInputStream(content.toByteArray());
@@ -1158,7 +1157,9 @@ public abstract class EnrollProfile extends BasicProfile
/* get SPKAC Algorithm & Signature */
DerValue derSPKACContent[] = derIn.getSequence(3);
+ @SuppressWarnings("unused")
AlgorithmId mAlgId = AlgorithmId.parse(derSPKACContent[1]);
+ @SuppressWarnings("unused")
byte mSignature[] = derSPKACContent[2].getBitString();
/* get PKAC SPKI & Challenge */
@@ -1167,9 +1168,11 @@ public abstract class EnrollProfile extends BasicProfile
derIn = new DerInputStream(mPKAC);
DerValue derPKACContent[] = derIn.getSequence(2);
+ @SuppressWarnings("unused")
DerValue mDerSPKI = derPKACContent[0];
X509Key mSPKI = X509Key.parse(derPKACContent[0]);
+ @SuppressWarnings("unused")
String mChallenge;
DerValue mDerChallenge = derPKACContent[1];