crypto/x509.Certificate.BasicConstraintsValid (field)
10 uses
crypto/x509 (current package)
parser.go#L681: out.BasicConstraintsValid = true
verify.go#L703: if certType == intermediateCertificate && (!c.BasicConstraintsValid || !c.IsCA) {
verify.go#L707: if c.BasicConstraintsValid && c.MaxPathLen >= 0 {
x509.go#L733: BasicConstraintsValid bool
x509.go#L846: if parent.Version == 3 && !parent.BasicConstraintsValid ||
x509.go#L847: parent.BasicConstraintsValid && !parent.IsCA {
x509.go#L1138: if template.BasicConstraintsValid && !oidInExtensions(oidExtensionBasicConstraints, template.ExtraExtensions) {
x509.go#L1618: if template.BasicConstraintsValid && !template.IsCA && template.MaxPathLen != -1 && (template.MaxPathLen != 0 || template.MaxPathLenZero) {
x509.go#L2458: if parent.Version == 3 && !parent.BasicConstraintsValid ||
x509.go#L2459: parent.BasicConstraintsValid && !parent.IsCA {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |