本文整理汇总了Java中javax.microedition.pki.Certificate类的典型用法代码示例。如果您正苦于以下问题:Java Certificate类的具体用法?Java Certificate怎么用?Java Certificate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Certificate类属于javax.microedition.pki包,在下文中一共展示了Certificate类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: testSecurityInfo
import javax.microedition.pki.Certificate; //导入依赖的package包/类
public void testSecurityInfo() throws IOException {
HttpsConnection hc = (HttpsConnection)Connector.open(testInetHTTPUrl, Connector.READ, true);
try {
assertEquals("getResponseCode()", HttpConnection.HTTP_OK, hc.getResponseCode());
SecurityInfo si = hc.getSecurityInfo();
assertNotNull("HttpsConnection.getSecurityInfo()", si);
assertNotNull("SecurityInfo.getProtocolVersion()", si.getProtocolVersion());
assertNotNull("SecurityInfo.getProtocolName()", si.getProtocolName());
assertNotNull("SecurityInfo.getCipherSuite()", si.getCipherSuite());
Certificate cert = si.getServerCertificate();
assertNotNull("SecurityInfo.getServerCertificate()", cert);
assertNotNull("Certificate.getSubject()", cert.getSubject());
assertNotNull("Certificate.getIssuer()", cert.getIssuer());
assertNotNull("Certificate.getType()", cert.getType());
assertNotNull("Certificate.getVersion()", cert.getVersion());
assertNotNull("Certificate.getSigAlgName()", cert.getSigAlgName());
assertTrue("Certificate.getNotBefore()", cert.getNotBefore() >= 0);
assertTrue("Certificate.getNotAfter()", cert.getNotAfter() >= 0);
String serialNumber = cert.getSerialNumber();
assertNotNull("Certificate.getSerialNumber()", serialNumber);
} finally {
hc.close();
}
}
开发者ID:freeVM,项目名称:freeVM,代码行数:25,代码来源:HttpsConnectionTest.java
示例2: testSecurityInfo
import javax.microedition.pki.Certificate; //导入依赖的package包/类
public void testSecurityInfo() throws IOException {
SecureConnection sc = (SecureConnection) Connector.open("ssl://" + TEST_HOST + ":" + TEST_PORT);
try {
SecurityInfo si = sc.getSecurityInfo();
assertNotNull("SecureConnection.getSecurityInfo()", si);
assertNotNull("SecurityInfo.getProtocolVersion()", si.getProtocolVersion());
assertNotNull("SecurityInfo.getProtocolName()", si.getProtocolName());
assertNotNull("SecurityInfo.getCipherSuite()", si.getCipherSuite());
Certificate cert = si.getServerCertificate();
assertNotNull("SecurityInfo.getServerCertificate()", cert);
//TODO assertNotNull("Certificate.getSubject()", cert.getSubject());
assertNotNull("Certificate.getIssuer()", cert.getIssuer());
assertNotNull("Certificate.getType()", cert.getType());
assertNotNull("Certificate.getVersion()", cert.getVersion());
//TODO assertNotNull("Certificate.getSigAlgName()", cert.getSigAlgName());
//TODO assertTrue("Certificate.getNotBefore()", cert.getNotBefore() >= 0);
//TODO assertTrue("Certificate.getNotAfter()", cert.getNotAfter() >= 0);
//TODO String serialNumber = cert.getSerialNumber();
//TODO assertNotNull("Certificate.getSerialNumber()", serialNumber);
} finally {
sc.close();
}
}
开发者ID:freeVM,项目名称:freeVM,代码行数:24,代码来源:SSLConnectionTest.java
示例3: SecurityInfoImpl
import javax.microedition.pki.Certificate; //导入依赖的package包/类
public SecurityInfoImpl(String cipherSuite, String protocolName, Certificate certificate) {
this.cipherSuite = cipherSuite;
this.protocolName = protocolName;
this.certificate = certificate;
}
开发者ID:freeVM,项目名称:freeVM,代码行数:6,代码来源:SecurityInfoImpl.java
示例4: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
public Certificate getServerCertificate() {
return certificate;
}
开发者ID:freeVM,项目名称:freeVM,代码行数:4,代码来源:SecurityInfoImpl.java
示例5: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
@Override
public Certificate getServerCertificate() {
return cert;
}
开发者ID:SBasalaev,项目名称:alchemy-os,代码行数:5,代码来源:SecurityInfoImpl.java
示例6: CertificateException
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Create a new exception with a message, <CODE>Certificate</CODE>,
* and specific error reason.
* @param message a descriptive message
* @param certificate the certificate that caused the exception
* @param status the reason for the exception;
* the status MUST be between BAD_EXTENSIONS and VERIFICATION_FAILED
* inclusive.
*/
public CertificateException(String message, Certificate certificate,
byte status) {
super(message);
cert = certificate;
reason = status;
}
开发者ID:mozilla,项目名称:pluotsorbet,代码行数:16,代码来源:CertificateException.java
示例7: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Gets the <CODE>Certificate</CODE> used to establish the
* secure connection with the server.
*
* @return the <CODE>Certificate</CODE> used to establish the
* secure connection with the server
*/
public Certificate getServerCertificate() {
return parent.getServerCertificate();
}
开发者ID:tomatsu,项目名称:squawk,代码行数:11,代码来源:SSLStreamConnection.java
示例8: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Returns the <CODE>Certificate</CODE> used to establish the
* secure connection with the server.
*
* @return the <CODE>Certificate</CODE> used to establish the
* secure connection with the server.
*/
public Certificate getServerCertificate();
开发者ID:tomatsu,项目名称:squawk,代码行数:9,代码来源:SecurityInfo.java
示例9: checkCertStatus
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Retrieves the status of the given certificate.
*
* @param cert X.509 certificate status of which must be checked
* @param issuerCert certificate of the trusted authority issued
* the certificate given by cert
* @return status of the certificate
* @throws OCSPException if the OCSP Responder returned an error message
*/
public int checkCertStatus(Certificate cert, Certificate issuerCert)
throws OCSPException {
return CertStatus.GOOD;
}
开发者ID:mozilla,项目名称:pluotsorbet,代码行数:14,代码来源:OCSPValidatorImpl.java
示例10: checkCertStatus
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Retrieves the status of the given certificate.
*
* @param cert X.509 certificate status of which must be checked
* @param issuerCert certificate of the trusted authority issued
* the certificate given by cert
* @return status of the certificate
* @throws OCSPException if the OCSP Responder returned an error message
*/
public int checkCertStatus(Certificate cert, Certificate issuerCert)
throws OCSPException;
开发者ID:mozilla,项目名称:pluotsorbet,代码行数:12,代码来源:OCSPValidator.java
示例11: getCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
/**
* Get the <CODE>Certificate</CODE> that caused the exception.
* @return the <CODE>Certificate</CODE> that included the failure.
*/
public Certificate getCertificate() {
return cert;
}
开发者ID:mozilla,项目名称:pluotsorbet,代码行数:8,代码来源:CertificateException.java
示例12: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
public Certificate getServerCertificate();
开发者ID:RobDangerous,项目名称:Jademula,代码行数:2,代码来源:SecurityInfo.java
示例13: getServerCertificate
import javax.microedition.pki.Certificate; //导入依赖的package包/类
Certificate getServerCertificate();
开发者ID:SBasalaev,项目名称:alchemy-os,代码行数:2,代码来源:SecurityInfo.java
注:本文中的javax.microedition.pki.Certificate类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论