本文整理汇总了Java中java.security.cert.CertificateFactorySpi类的典型用法代码示例。如果您正苦于以下问题:Java CertificateFactorySpi类的具体用法?Java CertificateFactorySpi怎么用?Java CertificateFactorySpi使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CertificateFactorySpi类属于java.security.cert包,在下文中一共展示了CertificateFactorySpi类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: testEngineGenerateCertPathLjava_io_InputStream01
import java.security.cert.CertificateFactorySpi; //导入依赖的package包/类
/**
* Test for <code>engineGenerateCertPath(InputStream)</code> method.
* Assertion: Generates a <code>CertPath</code> object and initializes it
* with the data read from the <code>InputStream</code>
*/
@TestTargetNew(
level = TestLevel.PARTIAL_COMPLETE,
notes = "Verifies that engineGenerateCertPath method returns null.",
method = "engineGenerateCertPath",
args = {java.io.InputStream.class}
)
public void testEngineGenerateCertPathLjava_io_InputStream01() {
CertificateFactorySpi certFactorySpi = new MyCertificateFactorySpi();
MyCertificateFactorySpi.putMode(true);
ByteArrayInputStream bais = new ByteArrayInputStream(new byte[0]);
DataInputStream dis = new DataInputStream(bais);
try {
assertNull(certFactorySpi.engineGenerateCertPath(dis));
} catch (CertificateException e) {
fail("Unexpected CertificateException " + e.getMessage());
}
}
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:25,代码来源:CertificateFactorySpiTest.java
示例2: testAbstractMethods
import java.security.cert.CertificateFactorySpi; //导入依赖的package包/类
@TestTargets({
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "engineGenerateCRL",
args = {java.io.InputStream.class}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "engineGenerateCRLs",
args = {java.io.InputStream.class}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "engineGenerateCertificate",
args = {java.io.InputStream.class}
),
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "engineGenerateCertificates",
args = {java.io.InputStream.class}
)
})
public void testAbstractMethods() {
CertificateFactorySpi certFactorySpi = new extCertificateFactorySpi();
ByteArrayInputStream bais = new ByteArrayInputStream(new byte[3]);
DataInputStream dis = new DataInputStream(bais);
try {
certFactorySpi.engineGenerateCRL(dis);
certFactorySpi.engineGenerateCRLs(dis);
certFactorySpi.engineGenerateCertificate(dis);
certFactorySpi.engineGenerateCertificates(dis);
} catch (Exception e) {
fail("Unexpected exception " + e.getMessage());
}
}
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:41,代码来源:CertificateFactorySpiTest.java
示例3: myCertificateFactory
import java.security.cert.CertificateFactorySpi; //导入依赖的package包/类
public myCertificateFactory(CertificateFactorySpi spi, Provider prov,
String type) {
super(spi, prov, type);
}
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:5,代码来源:CertificateFactory1Test.java
示例4: myCertificateFactory
import java.security.cert.CertificateFactorySpi; //导入依赖的package包/类
public myCertificateFactory(CertificateFactorySpi spi,
Provider prov,
String type) {
super(spi, prov, type);
}
开发者ID:freeVM,项目名称:freeVM,代码行数:6,代码来源:Btest4513_case1.java
注:本文中的java.security.cert.CertificateFactorySpi类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论