Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ChainCount (0.17 sec)

  1. src/crypto/x509/root_windows.go

    	if opts != nil && len(opts.DNSName) > 0 {
    		err = checkChainSSLServerPolicy(c, chainCtx, opts)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	chain, err = extractSimpleChain(chainCtx.Chains, int(chainCtx.ChainCount))
    	if err != nil {
    		return nil, err
    	}
    	if len(chain) == 0 {
    		return nil, errors.New("x509: internal error: system verifier returned an empty chain")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	EncodedCert  *byte
    	Length       uint32
    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    	ChainCount                 uint32
    	Chains                     **CertSimpleChain
    	LowerQualityChainCount     uint32
    	LowerQualityChains         **CertChainContext
    	HasRevocationFreshnessTime uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    // Try to find a match starting at index whose length is greater than prevSize.
    // We only look at chainCount possibilities before giving up.
    func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
    	minMatchLook := maxMatchLength
    	if lookahead < minMatchLook {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Length       uint32
    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    	ChainCount                 uint32
    	Chains                     **CertSimpleChain
    	LowerQualityChainCount     uint32
    	LowerQualityChains         **CertChainContext
    	HasRevocationFreshnessTime uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CTRL_SHUTDOWN_EVENT", Const, 14},
    		{"CancelIo", Func, 0},
    		{"CancelIoEx", Func, 1},
    		{"CertAddCertificateContextToStore", Func, 0},
    		{"CertChainContext", Type, 0},
    		{"CertChainContext.ChainCount", Field, 0},
    		{"CertChainContext.Chains", Field, 0},
    		{"CertChainContext.HasRevocationFreshnessTime", Field, 0},
    		{"CertChainContext.LowerQualityChainCount", 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)
  6. api/go1.txt

    pkg syscall (windows-386), type ByHandleFileInformation struct, VolumeSerialNumber uint32
    pkg syscall (windows-386), type CertChainContext struct
    pkg syscall (windows-386), type CertChainContext struct, ChainCount uint32
    pkg syscall (windows-386), type CertChainContext struct, Chains **CertSimpleChain
    pkg syscall (windows-386), type CertChainContext struct, HasRevocationFreshnessTime uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top