Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for verifyChain (0.12 sec)

  1. src/crypto/x509/root_windows.go

    	}
    	defer syscall.CertFreeCertificateChain(topCtx)
    
    	chain, topErr := verifyChain(c, topCtx, opts)
    	if topErr == nil {
    		chains = append(chains, chain)
    	}
    
    	if lqCtxCount := topCtx.LowerQualityChainCount; lqCtxCount > 0 {
    		lqCtxs := unsafe.Slice(topCtx.LowerQualityChains, lqCtxCount)
    		for _, ctx := range lqCtxs {
    			chain, err := verifyChain(c, ctx, opts)
    			if err == nil {
    				chains = append(chains, 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)
Back to top