Home | History | Annotate | Download | only in provider

Lines Matching refs:subtree

48         ASN1Sequence subtree)
50 if (subtree.size() < 1)
55 if (subtree.size() > dns.size())
60 for (int j = subtree.size() - 1; j >= 0; j--)
62 if (!subtree.getObjectAt(j).equals(dns.getObjectAt(j)))
99 ASN1Sequence subtree = (ASN1Sequence)it.next();
101 if (withinDNSubtree(dns, subtree))
108 "Subject distinguished name is not from a permitted subtree");
123 ASN1Sequence subtree = (ASN1Sequence)it.next();
125 if (withinDNSubtree(dns, subtree))
128 "Subject distinguished name is from an excluded subtree");
152 ASN1Sequence subtree = (ASN1Sequence)_iter.next();
154 if (withinDNSubtree(dn, subtree))
158 else if (withinDNSubtree(subtree, dn))
160 intersect.add(subtree);
187 ASN1Sequence subtree = (ASN1Sequence)it.next();
189 if (withinDNSubtree(dn, subtree))
191 intersect.add(subtree);
193 else if (withinDNSubtree(subtree, dn))
199 intersect.add(subtree);
505 "Subject email address is not from a permitted subtree.");
525 "Email address is from an excluded subtree.");
564 "IP is not from a permitted subtree.");
594 "IP is from an excluded subtree.");
719 "DNS is not from a permitted subtree.");
740 "DNS is from an excluded subtree.");
1224 "URI is from an excluded subtree.");
1401 "URI is not from a permitted subtree.");
1528 * with the given subtree.
1540 GeneralSubtree subtree = permitted[i];
1541 Integer tagNo = Integers.valueOf(subtree.getBase().getTagNo());
1546 ((Set)subtreesMap.get(tagNo)).add(subtree);
1553 // go through all subtree groups
1606 * Adds a subtree to the excluded set of these name constraints.
1608 * @param subtree A subtree with an excluded GeneralName.
1610 public void addExcludedSubtree(GeneralSubtree subtree)
1612 GeneralName base = subtree.getBase();