Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for USAGE_MATCH_TYPE_AND (0.33 sec)

  1. src/crypto/x509/root_windows.go

    		para.RequestedUsage.Type = syscall.USAGE_MATCH_TYPE_OR
    		para.RequestedUsage.Usage.Length = uint32(len(oids))
    		para.RequestedUsage.Usage.UsageIdentifiers = &oids[0]
    	} else {
    		para.RequestedUsage.Type = syscall.USAGE_MATCH_TYPE_AND
    		para.RequestedUsage.Usage.Length = 0
    		para.RequestedUsage.Usage.UsageIdentifiers = nil
    	}
    
    	var verifyTime *syscall.Filetime
    	if opts != nil && !opts.CurrentTime.IsZero() {
    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

    	CRYPT_DELETEKEYSET               = 0x00000010
    	CRYPT_MACHINE_KEYSET             = 0x00000020
    	CRYPT_SILENT                     = 0x00000040
    	CRYPT_DEFAULT_CONTAINER_OPTIONAL = 0x00000080
    
    	USAGE_MATCH_TYPE_AND = 0
    	USAGE_MATCH_TYPE_OR  = 1
    
    	X509_ASN_ENCODING   = 0x00000001
    	PKCS_7_ASN_ENCODING = 0x00010000
    
    	CERT_STORE_PROV_MEMORY = 2
    
    	CERT_STORE_ADD_ALWAYS = 4
    
    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/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	/* pdwKeySpec for CryptAcquireCertificatePrivateKey */
    	AT_KEYEXCHANGE       = 1
    	AT_SIGNATURE         = 2
    	CERT_NCRYPT_KEY_SPEC = 0xFFFFFFFF
    
    	/* 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TransmitFileBuffers.HeadLength", Field, 0},
    		{"TransmitFileBuffers.Tail", Field, 0},
    		{"TransmitFileBuffers.TailLength", Field, 0},
    		{"Truncate", Func, 0},
    		{"UNIX_PATH_MAX", Const, 12},
    		{"USAGE_MATCH_TYPE_AND", Const, 0},
    		{"USAGE_MATCH_TYPE_OR", Const, 0},
    		{"UTF16FromString", Func, 1},
    		{"UTF16PtrFromString", Func, 1},
    		{"UTF16ToString", Func, 0},
    		{"Ucred", Type, 0},
    		{"Ucred.Gid", 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)
  5. api/go1.txt

    pkg syscall (windows-386), const TokenVirtualizationAllowed ideal-int
    pkg syscall (windows-386), const TokenVirtualizationEnabled ideal-int
    pkg syscall (windows-386), const USAGE_MATCH_TYPE_AND ideal-int
    pkg syscall (windows-386), const USAGE_MATCH_TYPE_OR ideal-int
    pkg syscall (windows-386), const WAIT_ABANDONED ideal-int
    pkg syscall (windows-386), const WAIT_FAILED ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (windows-386), const TokenUser = 1
    pkg syscall (windows-386), const TokenVirtualizationAllowed = 23
    pkg syscall (windows-386), const TokenVirtualizationEnabled = 24
    pkg syscall (windows-386), const USAGE_MATCH_TYPE_AND = 0
    pkg syscall (windows-386), const USAGE_MATCH_TYPE_OR = 1
    pkg syscall (windows-386), const WAIT_ABANDONED = 128
    pkg syscall (windows-386), const WAIT_FAILED = 4294967295
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top