Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for x509_SecTrustGetCertificateAtIndex_trampoline (1.26 sec)

  1. src/crypto/x509/internal/macos/security.s

    	JMP x509_SecTrustEvaluateWithError(SB)
    TEXT ·x509_SecTrustGetCertificateCount_trampoline(SB),NOSPLIT,$0-0
    	JMP x509_SecTrustGetCertificateCount(SB)
    TEXT ·x509_SecTrustGetCertificateAtIndex_trampoline(SB),NOSPLIT,$0-0
    	JMP x509_SecTrustGetCertificateAtIndex(SB)
    TEXT ·x509_SecCertificateCopyData_trampoline(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:03:32 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/crypto/x509/internal/macos/security.go

    func SecTrustGetCertificateAtIndex(trustObj CFRef, i int) (CFRef, error) {
    	ret := syscall(abi.FuncPCABI0(x509_SecTrustGetCertificateAtIndex_trampoline), uintptr(trustObj), uintptr(i), 0, 0, 0, 0)
    	if ret == 0 {
    		return 0, OSStatus{"SecTrustGetCertificateAtIndex", int32(ret)}
    	}
    	return CFRef(ret), nil
    }
    func x509_SecTrustGetCertificateAtIndex_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top