Add ChaCha related ciphers to default provider
[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 $AES_GOAL=../../libimplementations.a
9 $TDES_1_GOAL=../../libimplementations.a
10 $TDES_2_GOAL=../../libimplementations.a
11 $DES_GOAL=../../libimplementations.a
12 $ARIA_GOAL=../../libimplementations.a
13 $CAMELLIA_GOAL=../../libimplementations.a
14 $BLOWFISH_GOAL=../../libimplementations.a
15 $IDEA_GOAL=../../libimplementations.a
16 $CAST5_GOAL=../../libimplementations.a
17 $SEED_GOAL=../../libimplementations.a
18 $SM4_GOAL=../../libimplementations.a
19 $RC4_GOAL=../../libimplementations.a
20 $RC5_GOAL=../../libimplementations.a
21 $RC2_GOAL=../../libimplementations.a
22 $CHACHA_GOAL=../../libimplementations.a
23 $CHACHAPOLY_GOAL=../../libimplementations.a
24
25 IF[{- !$disabled{des} -}]
26   SOURCE[$TDES_1_GOAL]=cipher_tdes.c cipher_tdes_hw.c
27 ENDIF
28
29 SOURCE[$AES_GOAL]=\
30         cipher_aes.c cipher_aes_hw.c \
31         cipher_aes_xts.c cipher_aes_xts_hw.c \
32         cipher_aes_gcm.c cipher_aes_gcm_hw.c \
33         cipher_aes_ccm.c cipher_aes_ccm_hw.c \
34         cipher_aes_wrp.c
35 # Extra code to satisfy the FIPS and non-FIPS separation.
36 # When the AES-xxx-XTS moves to legacy, this can be removed.
37 SOURCE[../../libfips.a]=cipher_aes_xts_fips.c
38 SOURCE[../../libnonfips.a]=cipher_aes_xts_fips.c
39
40 IF[{- !$disabled{des} -}]
41   SOURCE[$TDES_2_GOAL]=\
42       cipher_tdes_default.c cipher_tdes_default_hw.c \
43       cipher_tdes_wrap.c cipher_tdes_wrap_hw.c
44   SOURCE[$DES_GOAL]=\
45       cipher_desx.c cipher_desx_hw.c \
46       cipher_des.c cipher_des_hw.c
47 ENDIF
48
49 IF[{- !$disabled{aria} -}]
50   SOURCE[$ARIA_GOAL]=\
51       cipher_aria.c cipher_aria_hw.c \
52       cipher_aria_gcm.c cipher_aria_gcm_hw.c \
53       cipher_aria_ccm.c cipher_aria_ccm_hw.c
54 ENDIF
55
56 IF[{- !$disabled{camellia} -}]
57   SOURCE[$CAMELLIA_GOAL]=\
58       cipher_camellia.c cipher_camellia_hw.c
59 ENDIF
60
61 IF[{- !$disabled{bf} -}]
62   SOURCE[$BLOWFISH_GOAL]=\
63       cipher_blowfish.c cipher_blowfish_hw.c
64 ENDIF
65
66 IF[{- !$disabled{idea} -}]
67   SOURCE[$IDEA_GOAL]=\
68       cipher_idea.c cipher_idea_hw.c
69 ENDIF
70
71 IF[{- !$disabled{cast} -}]
72   SOURCE[$CAST5_GOAL]=\
73       cipher_cast5.c cipher_cast5_hw.c
74 ENDIF
75
76 IF[{- !$disabled{seed} -}]
77   SOURCE[$SEED_GOAL]=\
78       cipher_seed.c cipher_seed_hw.c
79 ENDIF
80
81 IF[{- !$disabled{sm4} -}]
82   SOURCE[$SM4_GOAL]=\
83       cipher_sm4.c cipher_sm4_hw.c
84 ENDIF
85
86 IF[{- !$disabled{ocb} -}]
87   SOURCE[$AES_GOAL]=\
88        cipher_aes_ocb.c cipher_aes_ocb_hw.c
89 ENDIF
90
91 IF[{- !$disabled{rc4} -}]
92   SOURCE[$RC4_GOAL]=\
93       cipher_rc4.c cipher_rc4_hw.c
94 ENDIF
95
96 IF[{- !$disabled{rc5} -}]
97   SOURCE[$RC5_GOAL]=\
98       cipher_rc5.c cipher_rc5_hw.c
99 ENDIF
100
101 IF[{- !$disabled{rc2} -}]
102   SOURCE[$RC2_GOAL]=\
103       cipher_rc2.c cipher_rc2_hw.c
104 ENDIF
105
106 IF[{- !$disabled{chacha} -}]
107   SOURCE[$CHACHA_GOAL]=\
108       cipher_chacha20.c cipher_chacha20_hw.c
109  IF[{- !$disabled{poly1305} -}]
110   SOURCE[$CHACHAPOLY_GOAL]=\
111       cipher_chacha20_poly1305.c cipher_chacha20_poly1305_hw.c
112  ENDIF
113 ENDIF
114