crypto/x509.Certificate.MaxPathLen (field)

8 uses

	crypto/x509 (current package)
		parser.go#L656: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L661: 				out.MaxPathLenZero = out.MaxPathLen == 0
		verify.go#L699: 	if c.BasicConstraintsValid && c.MaxPathLen >= 0 {
		verify.go#L701: 		if numIntermediates > c.MaxPathLen {
		x509.go#L739: 	MaxPathLen int
		x509.go#L1118: 		ret[n], err = marshalBasicConstraints(template.IsCA, template.MaxPathLen, template.MaxPathLenZero)
		x509.go#L1557: 	if template.BasicConstraintsValid && !template.IsCA && template.MaxPathLen != -1 && (template.MaxPathLen != 0 || template.MaxPathLenZero) {