aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/crypto/subtle/ya.make
blob: e2c71e7a2a2fa24c3e3883cc0649215fedd06424 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
GO_LIBRARY()

SRCS(
    constant_time.go
    xor.go
)

GO_TEST_SRCS(constant_time_test.go)

GO_XTEST_SRCS(xor_test.go)

IF (ARCH_X86_64)
    SRCS(
        xor_amd64.go
        xor_amd64.s
    )
ENDIF()

IF (ARCH_ARM64)
    SRCS(
        xor_arm64.go
        xor_arm64.s
    )
ENDIF()

END()

RECURSE(
)