HomeSort by relevance Sort by last modified time
    Searched defs:skipCerts (Results 1 - 4 of 4) sorted by null

  /libcore/ojluni/src/main/java/sun/security/x509/
InhibitAnyPolicyExtension.java 56 * InhibitAnyPolicy ::= SkipCerts
58 * SkipCerts ::= INTEGER (0..MAX)
94 private int skipCerts = Integer.MAX_VALUE;
99 out.putInteger(skipCerts);
106 * @param skipCerts specifies the depth of the certification path.
109 public InhibitAnyPolicyExtension(int skipCerts) throws IOException {
110 if (skipCerts < -1)
111 throw new IOException("Invalid value for skipCerts");
112 if (skipCerts == -1)
113 this.skipCerts = Integer.MAX_VALUE
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PolicyChecker.java 358 * SkipCerts value of the InhibitAnyPolicy
381 int skipCerts =
385 + "skipCerts Index from cert = " + skipCerts);
387 if (skipCerts != -1) {
388 if (skipCerts < inhibitAnyPolicy) {
389 inhibitAnyPolicy = skipCerts;
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 

Completed in 90 milliseconds