Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for numIntermediates (0.11 sec)

  1. src/crypto/x509/verify.go

    		return CertificateInvalidError{c, NotAuthorizedToSign, ""}
    	}
    
    	if c.BasicConstraintsValid && c.MaxPathLen >= 0 {
    		numIntermediates := len(currentChain) - 1
    		if numIntermediates > c.MaxPathLen {
    			return CertificateInvalidError{c, TooManyIntermediates, ""}
    		}
    	}
    
    	if !boringAllowCert(c) {
    		// IncompatibleUsage is not quite right here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top