Home
last modified time | relevance | path

Searched refs:relativeName (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
DDistributionPointName.java90 private RDN relativeName = null; field in DistributionPointName
116 public DistributionPointName(RDN relativeName) { in DistributionPointName() argument
118 if (relativeName == null) { in DistributionPointName()
121 this.relativeName = relativeName; in DistributionPointName()
142 relativeName = new RDN(encoding); in DistributionPointName()
161 return relativeName; in getRelativeName()
181 relativeName.encode(theChoice); in encode()
205 Objects.equals(this.relativeName, other.relativeName); in equals()
221 hash += relativeName.hashCode(); in hashCode()
237 sb.append("DistributionPointName:\n " + relativeName + "\n"); in toString()
DDistributionPoint.java131 private RDN relativeName; field in DistributionPoint
173 public DistributionPoint(RDN relativeName, boolean[] reasonFlags, in DistributionPoint() argument
175 if ((relativeName == null) && (crlIssuer == null)) { in DistributionPoint()
179 this.relativeName = relativeName; in DistributionPoint()
202 if ((fullName != null) || (relativeName != null)) { in DistributionPoint()
214 relativeName = new RDN(distPnt); in DistributionPoint()
240 if ((crlIssuer == null) && (fullName == null) && (relativeName == null)) { in DistributionPoint()
257 return relativeName; in getRelativeName()
284 if ((fullName != null) || (relativeName != null)) { in encode()
292 } else if (relativeName != null) { in encode()
[all …]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DDistributionPointFetcher.java155 RDN relativeName = point.getRelativeName(); in getCRLs() local
156 if (relativeName == null) { in getCRLs()
163 ((X500Name) certImpl.getIssuerDN(), relativeName); in getCRLs()
170 ((X500Name) crlIssuers.get(0).getName(), relativeName); in getCRLs()
415 RDN relativeName = idpPoint.getRelativeName(); in verifyCRL() local
416 if (relativeName == null) { in verifyCRL()
423 debug.println("IDP relativeName:" + relativeName); in verifyCRL()
425 idpNames = getFullNames(crlIssuer, relativeName); in verifyCRL()
434 RDN relativeName = point.getRelativeName(); in verifyCRL() local
435 if (relativeName == null) { in verifyCRL()
[all …]