本文整理匯總了Java中java.security.cert.PKIXParameters.setCertStores方法的典型用法代碼示例。如果您正苦於以下問題:Java PKIXParameters.setCertStores方法的具體用法?Java PKIXParameters.setCertStores怎麽用?Java PKIXParameters.setCertStores使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.security.cert.PKIXParameters
的用法示例。
在下文中一共展示了PKIXParameters.setCertStores方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testSetCertStores02
import java.security.cert.PKIXParameters; //導入方法依賴的package包/類
/**
* Test #2 for <code>setCertStores(List)</code> method<br>
* Assertion: list ... may be <code>null</code>
* @throws InvalidAlgorithmParameterException
*/
public final void testSetCertStores02() throws Exception {
Set taSet = TestUtils.getTrustAnchorSet();
if (taSet == null) {
fail(getName() + ": not performed (could not create test TrustAnchor set)");
}
PKIXParameters p = new PKIXParameters(taSet);
// add null
p.setCertStores(null);
// check that we have non null empty list now
assertNotNull("notNull1", p.getCertStores());
assertTrue("isEmpty1", p.getCertStores().isEmpty());
// add empty
p.setCertStores(new ArrayList());
assertNotNull("notNull2", p.getCertStores());
assertTrue("isEmpty2", p.getCertStores().isEmpty());
}
示例2: testSetCertStores03
import java.security.cert.PKIXParameters; //導入方法依賴的package包/類
/**
* Test #3 for <code>setCertStores(List)</code> method<br>
* Assertion: list is copied to protect against subsequent modifications
* @throws NoSuchAlgorithmException
* @throws InvalidAlgorithmParameterException
*/
public final void testSetCertStores03() throws Exception {
Set taSet = TestUtils.getTrustAnchorSet();
if (taSet == null) {
fail(getName() + ": not performed (could not create test TrustAnchor set)");
}
PKIXParameters p = new PKIXParameters(taSet);
List l = TestUtils.getCollectionCertStoresList();
p.setCertStores(l);
// modify list just set
l.clear();
// check that list maintained internally has
// not been changed by the above modification
assertFalse(p.getCertStores().isEmpty());
}
示例3: testSetCertStores04
import java.security.cert.PKIXParameters; //導入方法依賴的package包/類
/**
* Test #4 for <code>setCertStores(List)</code> method<br>
* Assertion: <code>ClassCastException</code> -
* if any of the elements in the list are not of type
* <code>java.security.cert.CertStore</code>
* @throws InvalidAlgorithmParameterException
* @throws NoSuchAlgorithmException
*/
public final void testSetCertStores04() throws Exception {
Set taSet = TestUtils.getTrustAnchorSet();
if (taSet == null) {
fail(getName() + ": not performed (could not create test TrustAnchor set)");
}
PKIXParameters p = new PKIXParameters(taSet);
List l = TestUtils.getCollectionCertStoresList();
// add wrong object to valid set
assertTrue(l.add(new Object()));
try {
p.setCertStores(l);
fail("ClassCastException expected");
} catch (ClassCastException e) {
}
}
示例4: testSetCertStores01
import java.security.cert.PKIXParameters; //導入方法依賴的package包/類
/**
* Test #1 for <code>setCertStores(List)</code> method<br>
* Assertion: Sets the list of CertStores ...
* @throws NoSuchAlgorithmException
* @throws InvalidAlgorithmParameterException
*/
public final void testSetCertStores01() throws Exception {
Set taSet = TestUtils.getTrustAnchorSet();
if (taSet == null) {
fail(getName() + ": not performed (could not create test TrustAnchor set)");
}
PKIXParameters p = new PKIXParameters(taSet);
p.setCertStores(TestUtils.getCollectionCertStoresList());
// check that list has been set
assertFalse(p.getCertStores().isEmpty());
}
示例5: testClone01
import java.security.cert.PKIXParameters; //導入方法依賴的package包/類
/**
* Test #1 for <code>clone()</code> method<br>
* Assertion: Makes a copy of this <code>PKIXParameters</code> object
* @throws KeyStoreException
* @throws InvalidAlgorithmParameterException
* @throws NoSuchAlgorithmException
*/
public final void testClone01() throws Exception {
KeyStore ks = TestUtils.getKeyStore(true, TestUtils.TRUSTED);
if (ks == null) {
fail(getName() + ": not performed (could not create test KeyStore)");
}
PKIXParameters p1 = new PKIXParameters(ks);
// set to some non-default values
p1.setPolicyQualifiersRejected(false);
p1.setAnyPolicyInhibited(true);
p1.setExplicitPolicyRequired(true);
p1.setPolicyMappingInhibited(true);
p1.setRevocationEnabled(false);
String sigProviderName = "Some Provider";
p1.setSigProvider(sigProviderName);
X509CertSelector x509cs = new X509CertSelector();
p1.setTargetCertConstraints(x509cs);
p1.setCertStores(TestUtils.getCollectionCertStoresList());
PKIXCertPathChecker cpc = TestUtils.getTestCertPathChecker();
List l = new ArrayList();
assertTrue("addedOk", l.add(cpc));
p1.setCertPathCheckers(l);
p1.setDate(new Date(555L));
Set s = new HashSet();
s.add("1.2.3.4.5.6.7");
s.add("1.2.3.4.5.6.8");
p1.setInitialPolicies(s);
// TrustAnchors already set
PKIXParameters p2 = (PKIXParameters)p1.clone();
// check that objects match
assertEquals("check1", p1.getPolicyQualifiersRejected(),
p2.getPolicyQualifiersRejected());
assertEquals("check2", p1.isAnyPolicyInhibited(),
p2.isAnyPolicyInhibited());
assertEquals("check3", p1.isExplicitPolicyRequired(),
p2.isExplicitPolicyRequired());
assertEquals("check4", p1.isPolicyMappingInhibited(),
p2.isPolicyMappingInhibited());
assertEquals("check5", p1.isRevocationEnabled(),
p2.isRevocationEnabled());
assertEquals("check6", p1.getSigProvider(), p2.getSigProvider());
// just check that not null
assertNotNull("check7", p2.getTargetCertConstraints());
assertEquals("check8", p1.getCertStores(), p2.getCertStores());
// just check that not empty
assertFalse("check9", p2.getCertPathCheckers().isEmpty());
assertEquals("check10", p1.getDate(), p2.getDate());
assertEquals("check11", p1.getInitialPolicies(),
p2.getInitialPolicies());
assertEquals("check12", p1.getTrustAnchors(), p2.getTrustAnchors());
}