HomeSort by relevance Sort by last modified time
    Searched refs:maxPathLen (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
ReverseState.java 158 * Note that -1 maxPathLen implies unlimited.
161 int maxPathLen = buildParams.maxPathLength();
162 remainingCACerts = (maxPathLen == -1) ? Integer.MAX_VALUE
163 : maxPathLen;
169 // unconstrained if maxPathLen is -1,
171 // longest possible path + 1 (i.e. maxpathlen + finalcert + 1)
172 explicitPolicy = (maxPathLen == -1) ? maxPathLen : maxPathLen + 2;
179 policyMapping = (maxPathLen == -1) ? maxPathLen : maxPathLen + 2
    [all...]
  /libcore/ojluni/src/main/java/sun/security/validator/
SimpleValidator.java 215 private int checkExtensions(X509Certificate cert, int maxPathLen)
224 checkBasicConstraints(cert, critSet, maxPathLen);
301 Set<String> critSet, int maxPathLen) throws CertificateException {
314 if (maxPathLen <= 0) {
319 maxPathLen--;
322 if (maxPathLen > constraints) {
323 maxPathLen = constraints;
326 return maxPathLen;
  /libcore/ojluni/src/main/java/java/security/cert/
X509CertSelector.java     [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 508 MaxPathLen int
510 // MaxPathLen==0 should be interpreted as an actual maximum path length
511 // of zero. Otherwise, that combination is interpreted as MaxPathLen
712 MaxPathLen int `asn1:"optional,default:-1"`
968 out.MaxPathLen = constraints.MaxPathLen
969 out.MaxPathLenZero = out.MaxPathLen == 0
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 508 MaxPathLen int
510 // MaxPathLen==0 should be interpreted as an actual maximum path length
511 // of zero. Otherwise, that combination is interpreted as MaxPathLen
712 MaxPathLen int `asn1:"optional,default:-1"`
968 out.MaxPathLen = constraints.MaxPathLen
969 out.MaxPathLenZero = out.MaxPathLen == 0
    [all...]
  /external/svox/pico/lib/
picopr.c 285 picoos_int32 maxPathLen;
    [all...]

Completed in 839 milliseconds