Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pathLenConstraint (0.25 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

              parameters = it[1],
            )
          },
        )
    
      /**
       * ```
       * BasicConstraints ::= SEQUENCE {
       *   cA                      BOOLEAN DEFAULT FALSE,
       *   pathLenConstraint       INTEGER (0..MAX) OPTIONAL
       * }
       * ```
       */
      private val basicConstraints: BasicDerAdapter<BasicConstraints> =
        Adapters.sequence(
          "BasicConstraints",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	// and MaxPathLenZero are valid.
    	BasicConstraintsValid bool
    	IsCA                  bool
    
    	// MaxPathLen and MaxPathLenZero indicate the presence and
    	// value of the BasicConstraints' "pathLenConstraint".
    	//
    	// When parsing a certificate, a positive non-zero MaxPathLen
    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top