...

Text file src/crypto/x509/internal/macos/security.s

Documentation: crypto/x509/internal/macos

     1// Copyright 2020 The Go Authors. All rights reserved.
     2// Use of this source code is governed by a BSD-style
     3// license that can be found in the LICENSE file.
     4
     5//go:build darwin
     6
     7#include "textflag.h"
     8
     9// The trampolines are ABIInternal as they are address-taken in
    10// Go code.
    11
    12TEXT ·x509_SecTrustCreateWithCertificates_trampoline(SB),NOSPLIT,$0-0
    13	JMP x509_SecTrustCreateWithCertificates(SB)
    14TEXT ·x509_SecCertificateCreateWithData_trampoline(SB),NOSPLIT,$0-0
    15	JMP x509_SecCertificateCreateWithData(SB)
    16TEXT ·x509_SecPolicyCreateSSL_trampoline(SB),NOSPLIT,$0-0
    17	JMP x509_SecPolicyCreateSSL(SB)
    18TEXT ·x509_SecTrustSetVerifyDate_trampoline(SB),NOSPLIT,$0-0
    19	JMP x509_SecTrustSetVerifyDate(SB)
    20TEXT ·x509_SecTrustEvaluate_trampoline(SB),NOSPLIT,$0-0
    21	JMP x509_SecTrustEvaluate(SB)
    22TEXT ·x509_SecTrustEvaluateWithError_trampoline(SB),NOSPLIT,$0-0
    23	JMP x509_SecTrustEvaluateWithError(SB)
    24TEXT ·x509_SecCertificateCopyData_trampoline(SB),NOSPLIT,$0-0
    25	JMP x509_SecCertificateCopyData(SB)
    26TEXT ·x509_SecTrustCopyCertificateChain_trampoline(SB),NOSPLIT,$0-0
    27	JMP x509_SecTrustCopyCertificateChain(SB)

View as plain text