Searched refs:CertId (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DOCSPRequest.java81 private final List<CertId> certIds;
87 OCSPRequest(CertId certId) {
91 OCSPRequest(List<CertId> certIds) {
100 for (CertId certId : certIds) {
126 List<CertId> getCertIds() {
H A DCertId.java39 * This class corresponds to the CertId field in OCSP Request
56 public class CertId { class
65 private int myhash = -1; // hashcode for this CertId
68 * Creates a CertId. The hash algorithm used is SHA-1.
70 public CertId(X509Certificate issuerCert, SerialNumber serialNumber) method in class:CertId
78 throw new IOException("Unable to create CertId", nsae);
107 * Creates a CertId from its ASN.1 DER encoding.
109 public CertId(DerInputStream derIn) throws IOException { method in class:CertId
145 * Encode the CertId using ASN.1 DER.
165 * Returns a hashcode value for this CertId
[all...]
H A DOCSP.java112 CertId certId = null;
121 certId = new CertId(issuerCert, certImpl.getSerialNumberObject());
178 CertId certId = null;
181 certId = new CertId(issuerCert, certImpl.getSerialNumberObject());
208 static OCSPResponse check(List<CertId> certIds, URI responderURI,
297 for (CertId certId : certIds) {
301 debug.println("No response found for CertId: " + certId);
H A DOCSPResponse.java150 private final Map<CertId, SingleResponse> singleResponseMap;
313 = new HashMap<CertId, SingleResponse>(singleResponseDer.length);
582 * Returns the SingleResponse of the specified CertId, or null if
583 * there is no response for that CertId.
585 SingleResponse getSingleResponse(CertId certId) {
593 private final CertId certId;
612 certId = new CertId(tmp.getDerValue().data);
736 private CertId getCertId() {
H A DOCSPChecker.java377 CertId certId = null;
380 certId = new CertId
/openjdk7/jdk/test/sun/security/provider/certpath/CertId/
H A DCheckCertId.java33 import sun.security.provider.certpath.CertId;
50 /* Compute the hash in the same way as CertId constructor */
55 CertId certId = new CertId(cert, null);
60 Exception("Bad hash value for issuer name in CertId object");

Completed in 95 milliseconds