Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for systemVerify (0.19 sec)

  1. src/crypto/x509/verify.go

    		systemPool := systemRootsPool()
    		if opts.Roots == nil && (systemPool == nil || systemPool.systemPool) {
    			return c.systemVerify(&opts)
    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    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

    	},
    	{
    		name:        "MissingIntermediate",
    		leaf:        googleLeaf,
    		roots:       []string{gtsRoot},
    		currentTime: 1677615892,
    		dnsName:     "www.google.com",
    
    		// Skip when using systemVerify, since Windows
    		// *will* find the missing intermediate cert.
    		systemSkip:    true,
    		errorCallback: expectAuthorityUnknown,
    	},
    	{
    		name:          "RootInIntermediates",
    		leaf:          googleLeaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top