Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CertOpenStore (0.18 sec)

  1. src/crypto/x509/root_windows.go

    	if err != nil {
    		return nil, err
    	}
    	defer syscall.CertFreeCertificateContext(leafCtx)
    
    	handle, err := syscall.CertOpenStore(syscall.CERT_STORE_PROV_MEMORY, 0, 0, syscall.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG, 0)
    	if err != nil {
    		return nil, err
    	}
    	defer syscall.CertCloseStore(handle, 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/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	/* Default usage match type is AND with value zero */
    	USAGE_MATCH_TYPE_AND = 0
    	USAGE_MATCH_TYPE_OR  = 1
    
    	/* msgAndCertEncodingType values for CertOpenStore function */
    	X509_ASN_ENCODING   = 0x00000001
    	PKCS_7_ASN_ENCODING = 0x00010000
    
    	/* storeProvider values for CertOpenStore function */
    	CERT_STORE_PROV_MSG               = 1
    	CERT_STORE_PROV_MEMORY            = 2
    	CERT_STORE_PROV_FILE              = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_windows.go

    	procCertGetCertificateChain            = modcrypt32.NewProc("CertGetCertificateChain")
    	procCertOpenStore                      = modcrypt32.NewProc("CertOpenStore")
    	procCertOpenSystemStoreW               = modcrypt32.NewProc("CertOpenSystemStoreW")
    	procCertVerifyCertificateChainPolicy   = modcrypt32.NewProc("CertVerifyCertificateChainPolicy")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    //sys	CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) = crypt32.CertOpenSystemStoreW
    //sys   CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) = crypt32.CertOpenStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) = crypt32.CertOpenSystemStoreW
    //sys	CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) = crypt32.CertOpenStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procCertGetNameStringW                                   = modcrypt32.NewProc("CertGetNameStringW")
    	procCertOpenStore                                        = modcrypt32.NewProc("CertOpenStore")
    	procCertOpenSystemStoreW                                 = modcrypt32.NewProc("CertOpenSystemStoreW")
    	procCertVerifyCertificateChainPolicy                     = modcrypt32.NewProc("CertVerifyCertificateChainPolicy")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CertEnumCertificatesInStore", Func, 0},
    		{"CertFreeCertificateChain", Func, 0},
    		{"CertFreeCertificateContext", Func, 0},
    		{"CertGetCertificateChain", Func, 0},
    		{"CertInfo", Type, 11},
    		{"CertOpenStore", Func, 0},
    		{"CertOpenSystemStore", Func, 0},
    		{"CertRevocationCrlInfo", Type, 11},
    		{"CertRevocationInfo", Type, 0},
    		{"CertRevocationInfo.CrlInfo", 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)
  8. api/go1.txt

    pkg syscall (windows-386), func CertGetCertificateChain(Handle, *CertContext, *Filetime, Handle, *CertChainPara, uint32, uintptr, **CertChainContext) error
    pkg syscall (windows-386), func CertOpenStore(uintptr, uint32, uintptr, uint32, uintptr) (Handle, error)
    pkg syscall (windows-386), func CertOpenSystemStore(Handle, *uint16) (Handle, 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