Searched defs:issuer (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DSigningCertificateInfo.java59 * issuer GeneralNames,
136 private GeneralNames issuer; field in class:ESSCertId
146 // Parse issuer
147 issuer = new GeneralNames(issuerSerial.data.getDerValue());
160 if (issuer != null && serialNumber != null) {
161 buffer.append("\n\tIssuer: " + issuer + "\n");
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificatePolicyMap.java45 * @param issuer the CertificatePolicyId for the issuer CA.
48 public CertificatePolicyMap(CertificatePolicyId issuer, argument
50 this.issuerDomain = issuer;
68 * Return the issuer CA part of the policy map.
H A DCertificateIssuerExtension.java37 * The CRL certificate issuer extension identifies the certificate issuer
41 * certificate issuer defaults to the CRL issuer. On subsequent entries
43 * issuer for the entry is the same as that for the preceding entry.
70 public static final String ISSUER = "issuer";
88 * Create a CertificateIssuerExtension containing the specified issuer name.
91 * @param issuer the certificate issuer
94 public CertificateIssuerExtension(GeneralNames issuer) throw argument
[all...]
H A DX509CertInfo.java86 protected CertificateIssuerName issuer = null; field in class:X509CertInfo
300 || issuer == null || algId == null || serialNum == null) {
311 sb.append(" Issuer: " + issuer.toString() + "\n");
411 issuer.set(suffix, val);
511 issuer = null;
513 issuer.delete(suffix);
600 return(issuer);
602 return(issuer.get(suffix));
685 issuer = new CertificateIssuerName(in);
686 X500Name issuerDN = (X500Name)issuer
[all...]
H A DX509CRLImpl.java75 * issuer Name,
103 private X500Name issuer = null; field in class:X509CRLImpl
187 * @param issuer the name of the CA issuing this CRL.
191 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate) { argument
192 this.issuer = issuer;
200 * @param issuer the name of the CA issuing this CRL.
207 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate, argument
211 this.issuer = issuer;
247 X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate, X509CRLEntry[] badCerts, CRLExtensions crlExts) argument
1216 final X500Principal issuer; field in class:X509CRLImpl.X509IssuerSerial
1226 X509IssuerSerial(X500Principal issuer, BigInteger serial) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLSelector.java95 * Sets the issuerNames criterion. The issuer distinguished name in the
97 * distinguished names. If <code>null</code>, any issuer distinguished name
101 * the complete set of issuer names which <code>X509CRLs</code> may contain.
140 * Sets the issuerNames criterion. The issuer distinguished name in the
142 * distinguished names. If <code>null</code>, any issuer distinguished name
146 * the complete set of issuer names which <code>X509CRLs</code> may contain.
210 * Adds a name to the issuerNames criterion. The issuer distinguished
214 * This method allows the caller to add a name to the set of issuer names
219 * @param issuer the issuer a
222 addIssuer(X500Principal issuer) argument
[all...]
H A DX509CertSelector.java65 * number. Other unique combinations include the issuer, subject,
98 private X500Principal issuer; field in class:X509CertSelector
193 * Sets the issuer criterion. The specified distinguished name
194 * must match the issuer distinguished name in the
195 * <code>X509Certificate</code>. If <code>null</code>, any issuer
198 * @param issuer a distinguished name as X500Principal
202 public void setIssuer(X500Principal issuer) { argument
203 this.issuer = issuer;
214 * Sets the issuer criterio
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DDistributionPointFetcher.java189 // make sure issuer is not set
190 // we check the issuer in verifyCRLs method
278 * @param validity the time for which the validity of the CRL issuer's
295 // if crlIssuer is set, verify that it matches the issuer of the
297 // boolean asserted. Otherwise, verify that the CRL issuer matches the
298 // certificate issuer.
321 // we accept the case that a CRL issuer provide status
331 debug.println("crl issuer does not equal cert issuer");
335 // in case of self-issued indirect CRL issuer
667 getFullNames(X500Name issuer, RDN rdn) argument
[all...]

Completed in 74 milliseconds