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

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DInhibitAnyPolicyExtension.java94 private int skipCerts = Integer.MAX_VALUE; field in class:InhibitAnyPolicyExtension
99 out.putInteger(skipCerts);
106 * @param skipCerts specifies the depth of the certification path.
109 public InhibitAnyPolicyExtension(int skipCerts) throws IOException { argument
110 if (skipCerts < -1)
111 throw new IOException("Invalid value for skipCerts");
112 if (skipCerts == -1)
113 this.skipCerts = Integer.MAX_VALUE;
115 this.skipCerts = skipCerts;
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPolicyChecker.java379 int skipCerts = ((Integer)
383 + "skipCerts Index from cert = " + skipCerts);
385 if (skipCerts != -1) {
386 if (skipCerts < inhibitAnyPolicy) {
387 inhibitAnyPolicy = skipCerts;

Completed in 37 milliseconds