aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/crypto/internal/nistec/ya.make
blob: 90fcdd7c9e67af7be53d672fbf0d2f570e7b6b3e (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
30
31
32
33
34
35
36
37
38
GO_LIBRARY()

SRCS(
    nistec.go
    p224.go
    p224_sqrt.go
    p256_asm.go
    p256_ordinv.go
    p384.go
    p521.go
)

GO_TEST_SRCS(p256_asm_table_test.go)

GO_XTEST_SRCS(
    nistec_test.go
    p256_ordinv_test.go
)

IF (ARCH_X86_64)
    SRCS(
        p256_asm_amd64.s
    )
ENDIF()

IF (ARCH_ARM64)
    SRCS(
        p256_asm_arm64.s
    )
ENDIF()

GO_EMBED_PATTERN(p256_asm_table.bin)

END()

RECURSE(
    fiat
)