本文整理汇总了Java中sun.security.provider.certpath.SunCertPathBuilderParameters类的典型用法代码示例。如果您正苦于以下问题:Java SunCertPathBuilderParameters类的具体用法?Java SunCertPathBuilderParameters怎么用?Java SunCertPathBuilderParameters使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SunCertPathBuilderParameters类属于sun.security.provider.certpath包,在下文中一共展示了SunCertPathBuilderParameters类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: main
import sun.security.provider.certpath.SunCertPathBuilderParameters; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
TrustAnchor anchor =
new TrustAnchor(CertUtils.getCertFromFile("mgrM2mgrM"), null);
X509Certificate target = CertUtils.getCertFromFile("mgrM2leadMA");
X509CertSelector xcs = new X509CertSelector();
xcs.setSubject("CN=leadMA,CN=mgrM,OU=prjM,OU=divE,OU=Comp,O=sun,C=us");
xcs.setCertificate(target);
SunCertPathBuilderParameters params =
new SunCertPathBuilderParameters(Collections.singleton(anchor),xcs);
params.setBuildForward(false);
CertStore cs = CertUtils.createStore(new String[]
{"mgrM2prjM", "prjM2mgrM", "prjM2divE", "mgrM2leadMA" });
params.addCertStore(cs);
CertStore cs2 = CertUtils.createCRLStore
(new String[] {"mgrMcrl", "prjMcrl"});
params.addCertStore(cs2);
PKIXCertPathBuilderResult res = CertUtils.build(params);
}
开发者ID:infobip,项目名称:infobip-open-jdk-8,代码行数:20,代码来源:BuildPath.java
示例2: main
import sun.security.provider.certpath.SunCertPathBuilderParameters; //导入依赖的package包/类
public static void main(String args[]) throws Exception {
// generate certificate from cert string
CertificateFactory cf = CertificateFactory.getInstance("X.509");
// create a set of trust anchors
LinkedHashSet<TrustAnchor> trustAnchors = new LinkedHashSet<>();
ByteArrayInputStream is =
new ByteArrayInputStream(NoiceTrusedCertStr.getBytes());
Certificate trustedCert = cf.generateCertificate(is);
is.close();
TrustAnchor anchor =
new TrustAnchor((X509Certificate)trustedCert, null);
trustAnchors.add(anchor);
is = new ByteArrayInputStream(trustedCertStr.getBytes());
trustedCert = cf.generateCertificate(is);
is.close();
anchor = new TrustAnchor((X509Certificate)trustedCert, null);
trustAnchors.add(anchor);
is = new ByteArrayInputStream(NoiceTrusedCertStr_2nd.getBytes());
trustedCert = cf.generateCertificate(is);
is.close();
anchor = new TrustAnchor((X509Certificate)trustedCert, null);
trustAnchors.add(anchor);
// create a list of certificates
List<Certificate> chainList = new ArrayList<>();
is = new ByteArrayInputStream(targetCertStr.getBytes());
Certificate cert = cf.generateCertificate(is);
is.close();
chainList.add(cert);
is = new ByteArrayInputStream(certIssuerStr.getBytes());
cert = cf.generateCertificate(is);
is.close();
chainList.add(cert);
is = new ByteArrayInputStream(caSignerStr.getBytes());
cert = cf.generateCertificate(is);
is.close();
chainList.add(cert);
// create a certificate selector
X509CertSelector xcs = new X509CertSelector();
X509Certificate eeCert = (X509Certificate)chainList.get(0);
xcs.setSubject(eeCert.getSubjectX500Principal());
// reverse build
SunCertPathBuilderParameters params =
new SunCertPathBuilderParameters(trustAnchors, xcs);
params.setBuildForward(false);
params.setRevocationEnabled(false);
CollectionCertStoreParameters ccsp =
new CollectionCertStoreParameters(chainList);
params.addCertStore(CertStore.getInstance("Collection", ccsp));
CertPathBuilder cpb = CertPathBuilder.getInstance("PKIX");
CertPathBuilderResult res = cpb.build(params);
}
开发者ID:infobip,项目名称:infobip-open-jdk-8,代码行数:65,代码来源:ReverseBuild.java
注:本文中的sun.security.provider.certpath.SunCertPathBuilderParameters类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论