Searched refs:permitted (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DNameConstraintsExtension.java45 * The name constraints extension provides permitted and excluded
50 * regardless of information appearing in the permitted subtrees.
84 private GeneralSubtrees permitted = null; field in class:NameConstraintsExtension
105 if (permitted != null) {
106 for (int i = 0; i < permitted.size(); i++) {
107 GeneralSubtree subtree = permitted.get(i);
120 if (permitted == null && excluded == null) {
127 if (permitted != null) {
129 permitted.encode(tmp);
148 * @param permitted th
151 NameConstraintsExtension(GeneralSubtrees permitted, GeneralSubtrees excluded) argument
[all...]
H A DGeneralSubtrees.java290 * is used in merging permitted NameConstraints. The operation
303 * type are permitted, and the only way to express this in
307 * means the name type is completely permitted.
311 * completely permitted.
490 * is used in merging excluded NameConstraints with permitted NameConstraints
491 * to obtain a minimal form of permitted NameConstraints. It is an
503 GeneralNameInterface permitted = getGeneralNameInterface(j);
504 switch (excludedName.constrains(permitted)) {
512 /* permitted narrows excluded */
517 /* permitted widen
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLAlgorithmConstraints.java117 boolean permitted = true;
120 permitted = peerAlgConstraints.permits(
124 if (permitted && userAlgConstraints != null) {
125 permitted = userAlgConstraints.permits(
129 if (permitted) {
130 permitted = tlsDisabledAlgConstraints.permits(
134 if (permitted && enabledX509DisabledAlgConstraints) {
135 permitted = x509DisabledAlgConstraints.permits(
139 return permitted;
144 boolean permitted
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java259 * <li> 1 means certificate is permitted to be CA for
261 * <li> 2 means certificate is permitted to be CA for
263 * <li>&gt;0 in general, means certificate is permitted
275 * includes a permitted component of "O=sun,C=us", which implies
278 * ((distance of permitted NC from target) + 1).
345 /* reduce permitted by excluded */
346 GeneralSubtrees permitted = (GeneralSubtrees)
350 if (permitted != null) {
351 permitted.reduce(excluded);
355 + permitted);
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java2479 GeneralSubtrees permitted = (GeneralSubtrees)
2488 if (permitted != null) {
2489 if (matchPermitted(permitted) == false) {
2534 private boolean matchPermitted(GeneralSubtrees permitted) { argument
2537 * is in at least one of the subtrees listed in permitted.
2539 * are listed, all names of that type are permitted.
2544 Iterator<GeneralSubtree> t = permitted.iterator();
2567 "permitted names of type " + pathToName.getType() +

Completed in 40 milliseconds