Update copyright year
[openssl.git] / providers / implementations / ciphers / build.info
1 # We make separate GOAL variables for each algorithm, to make it easy to
2 # switch each to the Legacy provider when needed.
3 #
4 # $TDES_1_GOAL and $TDES_2_GOAL separate FIPSable and non-FIPSable TDES.
5 # The latter may become legacy sooner, so it's comfortable to have two
6 # variables already now, to switch the non-FIPSable TDES to legacy if needed.
7
8 $COMMON_GOAL=../../libcommon.a
9
10 $NULL_GOAL=../../libimplementations.a
11 $AES_GOAL=../../libimplementations.a
12 $TDES_1_GOAL=../../libimplementations.a
13 $TDES_2_GOAL=../../libimplementations.a
14 $ARIA_GOAL=../../libimplementations.a
15 $CAMELLIA_GOAL=../../libimplementations.a
16 $DES_GOAL=../../liblegacy.a
17 $BLOWFISH_GOAL=../../liblegacy.a
18 $IDEA_GOAL=../../liblegacy.a
19 $CAST5_GOAL=../../liblegacy.a
20 $RC2_GOAL=../../liblegacy.a
21 $RC4_GOAL=../../liblegacy.a
22 $RC5_GOAL=../../liblegacy.a
23 $SEED_GOAL=../../liblegacy.a
24 $SM4_GOAL=../../libimplementations.a
25 $CHACHA_GOAL=../../libimplementations.a
26 $CHACHAPOLY_GOAL=../../libimplementations.a
27 $SIV_GOAL=../../libimplementations.a
28
29 # This source is common building blocks for all ciphers in all our providers.
30 SOURCE[$COMMON_GOAL]=\
31         ciphercommon.c ciphercommon_hw.c ciphercommon_block.c \
32         ciphercommon_gcm.c ciphercommon_gcm_hw.c \
33         ciphercommon_ccm.c ciphercommon_ccm_hw.c
34
35 IF[{- !$disabled{des} -}]
36   SOURCE[$TDES_1_GOAL]=cipher_tdes.c cipher_tdes_common.c cipher_tdes_hw.c
37 ENDIF
38
39 SOURCE[$NULL_GOAL]=\
40         cipher_null.c
41
42 SOURCE[$AES_GOAL]=\
43         cipher_aes.c cipher_aes_hw.c \
44         cipher_aes_xts.c cipher_aes_xts_hw.c \
45         cipher_aes_gcm.c cipher_aes_gcm_hw.c \
46         cipher_aes_ccm.c cipher_aes_ccm_hw.c \
47         cipher_aes_wrp.c \
48         cipher_aes_cbc_hmac_sha.c \
49         cipher_aes_cbc_hmac_sha256_hw.c cipher_aes_cbc_hmac_sha1_hw.c \
50         cipher_aes_cts.c
51
52 # Extra code to satisfy the FIPS and non-FIPS separation.
53 # When the AES-xxx-XTS moves to legacy, cipher_aes_xts_fips.c can be removed.
54 SOURCE[../../libfips.a]=cipher_aes_xts_fips.c
55 SOURCE[../../libnonfips.a]=cipher_aes_xts_fips.c
56
57 IF[{- !$disabled{siv} -}]
58   SOURCE[$SIV_GOAL]=\
59       cipher_aes_siv.c cipher_aes_siv_hw.c
60 ENDIF
61
62 IF[{- !$disabled{des} -}]
63   SOURCE[$TDES_2_GOAL]=\
64       cipher_tdes_default.c cipher_tdes_default_hw.c \
65       cipher_tdes_wrap.c cipher_tdes_wrap_hw.c
66   SOURCE[$DES_GOAL]=\
67       cipher_desx.c cipher_desx_hw.c \
68       cipher_des.c cipher_des_hw.c
69  IF[{- !$disabled{module} -}]
70    SOURCE[$DES_GOAL]=\
71        cipher_tdes_common.c
72  ENDIF
73 ENDIF
74
75 IF[{- !$disabled{aria} -}]
76   SOURCE[$ARIA_GOAL]=\
77       cipher_aria.c cipher_aria_hw.c \
78       cipher_aria_gcm.c cipher_aria_gcm_hw.c \
79       cipher_aria_ccm.c cipher_aria_ccm_hw.c
80 ENDIF
81
82 IF[{- !$disabled{camellia} -}]
83   SOURCE[$CAMELLIA_GOAL]=\
84       cipher_camellia.c cipher_camellia_hw.c
85 ENDIF
86
87 IF[{- !$disabled{bf} -}]
88   SOURCE[$BLOWFISH_GOAL]=\
89       cipher_blowfish.c cipher_blowfish_hw.c
90 ENDIF
91
92 IF[{- !$disabled{idea} -}]
93   SOURCE[$IDEA_GOAL]=\
94       cipher_idea.c cipher_idea_hw.c
95 ENDIF
96
97 IF[{- !$disabled{cast} -}]
98   SOURCE[$CAST5_GOAL]=\
99       cipher_cast5.c cipher_cast5_hw.c
100 ENDIF
101
102 IF[{- !$disabled{seed} -}]
103   SOURCE[$SEED_GOAL]=\
104       cipher_seed.c cipher_seed_hw.c
105 ENDIF
106
107 IF[{- !$disabled{sm4} -}]
108   SOURCE[$SM4_GOAL]=\
109       cipher_sm4.c cipher_sm4_hw.c
110 ENDIF
111
112 IF[{- !$disabled{ocb} -}]
113   SOURCE[$AES_GOAL]=\
114        cipher_aes_ocb.c cipher_aes_ocb_hw.c
115 ENDIF
116
117 IF[{- !$disabled{rc4} -}]
118   SOURCE[$RC4_GOAL]=\
119       cipher_rc4.c cipher_rc4_hw.c
120  IF[{- !$disabled{md5} -}]
121    SOURCE[$RC4_GOAL]=\
122        cipher_rc4_hmac_md5.c cipher_rc4_hmac_md5_hw.c
123  ENDIF
124 ENDIF
125
126 IF[{- !$disabled{rc5} -}]
127   SOURCE[$RC5_GOAL]=\
128       cipher_rc5.c cipher_rc5_hw.c
129 ENDIF
130
131 IF[{- !$disabled{rc2} -}]
132   SOURCE[$RC2_GOAL]=\
133       cipher_rc2.c cipher_rc2_hw.c
134 ENDIF
135
136 IF[{- !$disabled{chacha} -}]
137   SOURCE[$CHACHA_GOAL]=\
138       cipher_chacha20.c cipher_chacha20_hw.c
139  IF[{- !$disabled{poly1305} -}]
140   SOURCE[$CHACHAPOLY_GOAL]=\
141       cipher_chacha20_poly1305.c cipher_chacha20_poly1305_hw.c
142  ENDIF
143 ENDIF