Lines Matching refs:issuer

75  *     issuer                  Name,
103 private X500Name issuer = null;
187 * @param issuer the name of the CA issuing this CRL.
191 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate) {
192 this.issuer = issuer;
200 * @param issuer the name of the CA issuing this CRL.
207 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate,
211 this.issuer = issuer;
239 * @param issuer the name of the CA issuing this CRL.
247 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate,
251 this(issuer, thisDate, nextDate, badCerts);
294 if ((version == 0) && (issuer.toString() == null))
296 issuer.encode(tmp);
489 if (issuer != null)
490 sb.append("Issuer: " + issuer.toString() + "\n");
571 * Gets the issuer distinguished name from this CRL.
572 * The issuer name identifies the entity who has signed (and
573 * issued the CRL). The issuer name field contains an
577 * issuer Name
596 * @return the issuer name.
599 return (Principal)issuer;
603 * Return the issuer as X500Principal. Overrides method in X509CRL
608 issuerPrincipal = issuer.asX500Principal();
646 // assume this is a direct CRL entry (cert and CRL issuer are the same)
1061 // issuer
1062 issuer = new X500Name(derStrm);
1063 if (issuer.isEmpty()) {
1064 throw new CRLException("Empty issuer DN not allowed in X509CRLs");
1125 * Extract the issuer X500Principal from an X509CRL. Parses the encoded
1145 tmp = tbsIn.getDerValue(); // issuer
1149 throw new RuntimeException("Could not parse issuer", e);
1182 * Returns the X500 certificate issuer DN of a CRL entry.
1185 * @param prevCertIssuer the previous entry's certificate issuer
1216 final X500Principal issuer;
1223 * @param issuer the issuer DN
1226 X509IssuerSerial(X500Principal issuer, BigInteger serial) {
1227 this.issuer = issuer;
1239 * Returns the issuer.
1241 * @return the issuer
1244 return issuer;
1274 issuer.equals(other.getIssuer())) {
1288 result = 37*result + issuer.hashCode();
1297 int cissuer = issuer.toString()
1298 .compareTo(another.issuer.toString());