Searched refs:inhibit (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DPolicyConstraintsExtension.java71 public static final String INHIBIT = "inhibit";
77 private int inhibit = -1; field in class:PolicyConstraintsExtension
81 if (require == -1 && inhibit == -1) {
94 if (inhibit != -1) {
96 tmp.putInteger(inhibit);
106 * require explicit policy and inhibit policy mapping. The
110 * @param inhibit inhibit policy mapping (-1 for optional).
112 public PolicyConstraintsExtension(int require, int inhibit) argument
114 this(Boolean.FALSE, require, inhibit);
126 PolicyConstraintsExtension(Boolean critical, int require, int inhibit) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPolicyChecker.java331 int inhibit = ((Integer)
335 + "inhibit Index from cert = " + inhibit);
337 if (inhibit != -1) {
338 if ((policyMapping == -1) || (inhibit < policyMapping)) {
339 policyMapping = inhibit;

Completed in 40 milliseconds