Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CANotAuthorizedForThisName (0.44 sec)

  1. src/crypto/x509/verify.go

    	// Expired results when a certificate has expired, based on the time
    	// given in the VerifyOptions.
    	Expired
    	// CANotAuthorizedForThisName results when an intermediate or root
    	// certificate has a name constraint which doesn't permit a DNS or
    	// other name (including IP address) in the leaf certificate.
    	CANotAuthorizedForThisName
    	// TooManyIntermediates results when a path length constraint is
    	// violated.
    	TooManyIntermediates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	}
    }
    
    func expectNameConstraintsError(t *testing.T, err error) {
    	if inval, ok := err.(CertificateInvalidError); !ok || inval.Reason != CANotAuthorizedForThisName {
    		t.Fatalf("error was not a CANotAuthorizedForThisName: %v", err)
    	}
    }
    
    func expectNotAuthorizedError(t *testing.T, err error) {
    	if inval, ok := err.(CertificateInvalidError); !ok || inval.Reason != NotAuthorizedToSign {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(SystemRootsError).Unwrap", Method, 16},
    		{"(UnhandledCriticalExtension).Error", Method, 0},
    		{"(UnknownAuthorityError).Error", Method, 0},
    		{"CANotAuthorizedForExtKeyUsage", Const, 10},
    		{"CANotAuthorizedForThisName", Const, 0},
    		{"CertPool", Type, 0},
    		{"Certificate", Type, 0},
    		{"Certificate.AuthorityKeyId", Field, 0},
    		{"Certificate.BasicConstraintsValid", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg crypto/tls, type ConnectionState struct, ServerName string
    pkg crypto/tls, type ConnectionState struct, VerifiedChains [][]*x509.Certificate
    pkg crypto/x509, const CANotAuthorizedForThisName InvalidReason
    pkg crypto/x509, const DSA PublicKeyAlgorithm
    pkg crypto/x509, const DSAWithSHA1 SignatureAlgorithm
    pkg crypto/x509, const DSAWithSHA256 SignatureAlgorithm
    pkg crypto/x509, const Expired InvalidReason
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg crypto/tls, type Config struct, SessionTicketKey [32]uint8
    pkg crypto/tls, type Config struct, SessionTicketsDisabled bool
    pkg crypto/tls, type ConnectionState struct, DidResume bool
    pkg crypto/x509, const CANotAuthorizedForThisName = 2
    pkg crypto/x509, const DSA = 2
    pkg crypto/x509, const DSAWithSHA1 = 7
    pkg crypto/x509, const DSAWithSHA256 = 8
    pkg crypto/x509, const ECDSA = 3
    pkg crypto/x509, const ECDSA PublicKeyAlgorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top