Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CertFreeCertificateChain (0.33 sec)

  1. src/crypto/x509/root_windows.go

    	err = syscall.CertGetCertificateChain(syscall.Handle(0), storeCtx, verifyTime, storeCtx.Store, para, CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS, 0, &topCtx)
    	if err != nil {
    		return nil, err
    	}
    	defer syscall.CertFreeCertificateChain(topCtx)
    
    	chain, topErr := verifyChain(c, topCtx, opts)
    	if topErr == nil {
    		chains = append(chains, chain)
    	}
    
    	if lqCtxCount := topCtx.LowerQualityChainCount; lqCtxCount > 0 {
    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/zsyscall_windows.go

    	procCertEnumCertificatesInStore        = modcrypt32.NewProc("CertEnumCertificatesInStore")
    	procCertFreeCertificateChain           = modcrypt32.NewProc("CertFreeCertificateChain")
    	procCertFreeCertificateContext         = modcrypt32.NewProc("CertFreeCertificateContext")
    	procCertGetCertificateChain            = modcrypt32.NewProc("CertGetCertificateChain")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys   CertFreeCertificateChain(ctx *CertChainContext) = crypt32.CertFreeCertificateChain
    //sys   CertCreateCertificateContext(certEncodingType uint32, certEncoded *byte, encodedLen uint32) (context *CertContext, err error) [failretval==nil] = crypt32.CertCreateCertificateContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CertFreeCertificateChain(ctx *CertChainContext) = crypt32.CertFreeCertificateChain
    //sys	CertCreateCertificateContext(certEncodingType uint32, certEncoded *byte, encodedLen uint32) (context *CertContext, err error) [failretval==nil] = crypt32.CertCreateCertificateContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procCertFindExtension                                    = modcrypt32.NewProc("CertFindExtension")
    	procCertFreeCertificateChain                             = modcrypt32.NewProc("CertFreeCertificateChain")
    	procCertFreeCertificateContext                           = modcrypt32.NewProc("CertFreeCertificateContext")
    	procCertGetCertificateChain                              = modcrypt32.NewProc("CertGetCertificateChain")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CertEnhKeyUsage", Type, 0},
    		{"CertEnhKeyUsage.Length", Field, 0},
    		{"CertEnhKeyUsage.UsageIdentifiers", Field, 0},
    		{"CertEnumCertificatesInStore", Func, 0},
    		{"CertFreeCertificateChain", Func, 0},
    		{"CertFreeCertificateContext", Func, 0},
    		{"CertGetCertificateChain", Func, 0},
    		{"CertInfo", Type, 11},
    		{"CertOpenStore", Func, 0},
    		{"CertOpenSystemStore", Func, 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)
  7. api/go1.txt

    pkg syscall (windows-386), func CertEnumCertificatesInStore(Handle, *CertContext) (*CertContext, error)
    pkg syscall (windows-386), func CertFreeCertificateChain(*CertChainContext)
    pkg syscall (windows-386), func CertFreeCertificateContext(*CertContext) error
    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