Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EncodedCert (0.2 sec)

  1. src/crypto/x509/root_windows.go

    	for i := 0; i < int(lastChain.NumElements); i++ {
    		// Copy the buf, since ParseCertificate does not create its own copy.
    		cert := elements[i].CertContext
    		encodedCert := unsafe.Slice(cert.EncodedCert, cert.Length)
    		buf := bytes.Clone(encodedCert)
    		parsedCert, err := ParseCertificate(buf)
    		if err != nil {
    			return nil, err
    		}
    		chain = append(chain, parsedCert)
    	}
    
    	return chain, nil
    }
    
    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

    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	// Not implemented
    }
    
    type CertContext struct {
    	EncodingType uint32
    	EncodedCert  *byte
    	Length       uint32
    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    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

    type CryptAttrBlob DataBlob
    
    type CryptBitBlob struct {
    	Size       uint32
    	Data       *byte
    	UnusedBits uint32
    }
    
    type CertContext struct {
    	EncodingType uint32
    	EncodedCert  *byte
    	Length       uint32
    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    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

    		{"CertChainPolicyStatus.Size", Field, 0},
    		{"CertCloseStore", Func, 0},
    		{"CertContext", Type, 0},
    		{"CertContext.CertInfo", Field, 0},
    		{"CertContext.EncodedCert", Field, 0},
    		{"CertContext.EncodingType", Field, 0},
    		{"CertContext.Length", Field, 0},
    		{"CertContext.Store", Field, 0},
    		{"CertCreateCertificateContext", Func, 0},
    		{"CertEnhKeyUsage", Type, 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), type CertContext struct
    pkg syscall (windows-386), type CertContext struct, CertInfo uintptr
    pkg syscall (windows-386), type CertContext struct, EncodedCert *uint8
    pkg syscall (windows-386), type CertContext struct, EncodingType uint32
    pkg syscall (windows-386), type CertContext struct, Length uint32
    pkg syscall (windows-386), type CertContext struct, Store Handle
    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