blob: 50eae030a6cf5f7ff2f7c0c29f56fefdc5935b82 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
IF(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-variable -Wno-unused-function -Wno-shadow")
ENDIF(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
IF(CMAKE_COMPILER_IS_GNUCC)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-sign-compare -Wno-sign-conversion")
ENDIF(CMAKE_COMPILER_IS_GNUCC)
IF(CMAKE_C_COMPILER_ID MATCHES "Clang")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-shorten-64-to-32")
ENDIF(CMAKE_C_COMPILER_ID MATCHES "Clang")
set(curve25519_SRCS
curve25519-donna.c
)
set(ed25519_SRCS
ed25519/fe_0.c
ed25519/fe_1.c
ed25519/fe_add.c
ed25519/fe_cmov.c
ed25519/fe_copy.c
ed25519/fe_frombytes.c
ed25519/fe_invert.c
ed25519/fe_isnegative.c
ed25519/fe_isnonzero.c
ed25519/fe_mul.c
ed25519/fe_neg.c
ed25519/fe_pow22523.c
ed25519/fe_sq.c
ed25519/fe_sq2.c
ed25519/fe_sub.c
ed25519/fe_tobytes.c
ed25519/ge_add.c
ed25519/ge_double_scalarmult.c
ed25519/ge_frombytes.c
ed25519/ge_madd.c
ed25519/ge_msub.c
ed25519/ge_p1p1_to_p2.c
ed25519/ge_p1p1_to_p3.c
ed25519/ge_p2_0.c
ed25519/ge_p2_dbl.c
ed25519/ge_p3_0.c
ed25519/ge_p3_dbl.c
ed25519/ge_p3_to_cached.c
ed25519/ge_p3_to_p2.c
ed25519/ge_p3_tobytes.c
ed25519/ge_precomp_0.c
ed25519/ge_scalarmult_base.c
ed25519/ge_sub.c
ed25519/ge_tobytes.c
ed25519/open.c
ed25519/sc_muladd.c
ed25519/sc_reduce.c
ed25519/sign.c
ed25519/additions/compare.c
ed25519/additions/curve_sigs.c
ed25519/additions/sign_modified.c
ed25519/additions/zeroize.c
ed25519/additions/crypto_hash_sha512.h
ed25519/nacl_sha512/blocks.c
ed25519/nacl_sha512/hash.c
)
add_library(curve25519 OBJECT ${curve25519_SRCS} ${ed25519_SRCS})
|