Line | Source | Count |
1 | | - |
2 | | - |
3 | void openssl_add_all_ciphers_int(void) | - |
4 | { | - |
5 | | - |
6 | | - |
7 | EVP_add_cipher(EVP_des_cfb64()); | - |
8 | EVP_add_cipher(EVP_des_cfb1()); | - |
9 | EVP_add_cipher(EVP_des_cfb8()); | - |
10 | EVP_add_cipher(EVP_des_ede_cfb64()); | - |
11 | EVP_add_cipher(EVP_des_ede3_cfb64()); | - |
12 | EVP_add_cipher(EVP_des_ede3_cfb1()); | - |
13 | EVP_add_cipher(EVP_des_ede3_cfb8()); | - |
14 | | - |
15 | EVP_add_cipher(EVP_des_ofb()); | - |
16 | EVP_add_cipher(EVP_des_ede_ofb()); | - |
17 | EVP_add_cipher(EVP_des_ede3_ofb()); | - |
18 | | - |
19 | EVP_add_cipher(EVP_desx_cbc()); | - |
20 | OBJ_NAME_add(("DESX"),0x02|0x8000,("DESX-CBC")); | - |
21 | OBJ_NAME_add(("desx"),0x02|0x8000,("DESX-CBC")); | - |
22 | | - |
23 | EVP_add_cipher(EVP_des_cbc()); | - |
24 | OBJ_NAME_add(("DES"),0x02|0x8000,("DES-CBC")); | - |
25 | OBJ_NAME_add(("des"),0x02|0x8000,("DES-CBC")); | - |
26 | EVP_add_cipher(EVP_des_ede_cbc()); | - |
27 | EVP_add_cipher(EVP_des_ede3_cbc()); | - |
28 | OBJ_NAME_add(("DES3"),0x02|0x8000,("DES-EDE3-CBC")); | - |
29 | OBJ_NAME_add(("des3"),0x02|0x8000,("DES-EDE3-CBC")); | - |
30 | | - |
31 | EVP_add_cipher(EVP_des_ecb()); | - |
32 | EVP_add_cipher(EVP_des_ede()); | - |
33 | OBJ_NAME_add(("DES-EDE-ECB"),0x02|0x8000,("DES-EDE")); | - |
34 | OBJ_NAME_add(("des-ede-ecb"),0x02|0x8000,("DES-EDE")); | - |
35 | EVP_add_cipher(EVP_des_ede3()); | - |
36 | OBJ_NAME_add(("DES-EDE3-ECB"),0x02|0x8000,("DES-EDE3")); | - |
37 | OBJ_NAME_add(("des-ede3-ecb"),0x02|0x8000,("DES-EDE3")); | - |
38 | EVP_add_cipher(EVP_des_ede3_wrap()); | - |
39 | OBJ_NAME_add(("des3-wrap"),0x02|0x8000,("id-smime-alg-CMS3DESwrap")); | - |
40 | | - |
41 | | - |
42 | | - |
43 | EVP_add_cipher(EVP_rc4()); | - |
44 | EVP_add_cipher(EVP_rc4_40()); | - |
45 | | - |
46 | EVP_add_cipher(EVP_rc4_hmac_md5()); | - |
47 | | - |
48 | | - |
49 | | - |
50 | | - |
51 | EVP_add_cipher(EVP_idea_ecb()); | - |
52 | EVP_add_cipher(EVP_idea_cfb64()); | - |
53 | EVP_add_cipher(EVP_idea_ofb()); | - |
54 | EVP_add_cipher(EVP_idea_cbc()); | - |
55 | OBJ_NAME_add(("IDEA"),0x02|0x8000,("IDEA-CBC")); | - |
56 | OBJ_NAME_add(("idea"),0x02|0x8000,("IDEA-CBC")); | - |
57 | | - |
58 | | - |
59 | | - |
60 | EVP_add_cipher(EVP_seed_ecb()); | - |
61 | EVP_add_cipher(EVP_seed_cfb128()); | - |
62 | EVP_add_cipher(EVP_seed_ofb()); | - |
63 | EVP_add_cipher(EVP_seed_cbc()); | - |
64 | OBJ_NAME_add(("SEED"),0x02|0x8000,("SEED-CBC")); | - |
65 | OBJ_NAME_add(("seed"),0x02|0x8000,("SEED-CBC")); | - |
66 | | - |
67 | | - |
68 | | - |
69 | EVP_add_cipher(EVP_sm4_ecb()); | - |
70 | EVP_add_cipher(EVP_sm4_cbc()); | - |
71 | EVP_add_cipher(EVP_sm4_cfb128()); | - |
72 | EVP_add_cipher(EVP_sm4_ofb()); | - |
73 | EVP_add_cipher(EVP_sm4_ctr()); | - |
74 | OBJ_NAME_add(("SM4"),0x02|0x8000,("SM4-CBC")); | - |
75 | OBJ_NAME_add(("sm4"),0x02|0x8000,("SM4-CBC")); | - |
76 | | - |
77 | | - |
78 | | - |
79 | EVP_add_cipher(EVP_rc2_ecb()); | - |
80 | EVP_add_cipher(EVP_rc2_cfb64()); | - |
81 | EVP_add_cipher(EVP_rc2_ofb()); | - |
82 | EVP_add_cipher(EVP_rc2_cbc()); | - |
83 | EVP_add_cipher(EVP_rc2_40_cbc()); | - |
84 | EVP_add_cipher(EVP_rc2_64_cbc()); | - |
85 | OBJ_NAME_add(("RC2"),0x02|0x8000,("RC2-CBC")); | - |
86 | OBJ_NAME_add(("rc2"),0x02|0x8000,("RC2-CBC")); | - |
87 | OBJ_NAME_add(("rc2-128"),0x02|0x8000,("RC2-CBC")); | - |
88 | OBJ_NAME_add(("rc2-64"),0x02|0x8000,("RC2-64-CBC")); | - |
89 | OBJ_NAME_add(("rc2-40"),0x02|0x8000,("RC2-40-CBC")); | - |
90 | | - |
91 | | - |
92 | | - |
93 | EVP_add_cipher(EVP_bf_ecb()); | - |
94 | EVP_add_cipher(EVP_bf_cfb64()); | - |
95 | EVP_add_cipher(EVP_bf_ofb()); | - |
96 | EVP_add_cipher(EVP_bf_cbc()); | - |
97 | OBJ_NAME_add(("BF"),0x02|0x8000,("BF-CBC")); | - |
98 | OBJ_NAME_add(("bf"),0x02|0x8000,("BF-CBC")); | - |
99 | OBJ_NAME_add(("blowfish"),0x02|0x8000,("BF-CBC")); | - |
100 | | - |
101 | | - |
102 | | - |
103 | EVP_add_cipher(EVP_cast5_ecb()); | - |
104 | EVP_add_cipher(EVP_cast5_cfb64()); | - |
105 | EVP_add_cipher(EVP_cast5_ofb()); | - |
106 | EVP_add_cipher(EVP_cast5_cbc()); | - |
107 | OBJ_NAME_add(("CAST"),0x02|0x8000,("CAST5-CBC")); | - |
108 | OBJ_NAME_add(("cast"),0x02|0x8000,("CAST5-CBC")); | - |
109 | OBJ_NAME_add(("CAST-cbc"),0x02|0x8000,("CAST5-CBC")); | - |
110 | OBJ_NAME_add(("cast-cbc"),0x02|0x8000,("CAST5-CBC")); | - |
111 | EVP_add_cipher(EVP_aes_128_ecb()); | - |
112 | EVP_add_cipher(EVP_aes_128_cbc()); | - |
113 | EVP_add_cipher(EVP_aes_128_cfb128()); | - |
114 | EVP_add_cipher(EVP_aes_128_cfb1()); | - |
115 | EVP_add_cipher(EVP_aes_128_cfb8()); | - |
116 | EVP_add_cipher(EVP_aes_128_ofb()); | - |
117 | EVP_add_cipher(EVP_aes_128_ctr()); | - |
118 | EVP_add_cipher(EVP_aes_128_gcm()); | - |
119 | | - |
120 | EVP_add_cipher(EVP_aes_128_ocb()); | - |
121 | | - |
122 | EVP_add_cipher(EVP_aes_128_xts()); | - |
123 | EVP_add_cipher(EVP_aes_128_ccm()); | - |
124 | EVP_add_cipher(EVP_aes_128_wrap()); | - |
125 | OBJ_NAME_add(("aes128-wrap"),0x02|0x8000,("id-aes128-wrap")); | - |
126 | EVP_add_cipher(EVP_aes_128_wrap_pad()); | - |
127 | OBJ_NAME_add(("AES128"),0x02|0x8000,("AES-128-CBC")); | - |
128 | OBJ_NAME_add(("aes128"),0x02|0x8000,("AES-128-CBC")); | - |
129 | EVP_add_cipher(EVP_aes_192_ecb()); | - |
130 | EVP_add_cipher(EVP_aes_192_cbc()); | - |
131 | EVP_add_cipher(EVP_aes_192_cfb128()); | - |
132 | EVP_add_cipher(EVP_aes_192_cfb1()); | - |
133 | EVP_add_cipher(EVP_aes_192_cfb8()); | - |
134 | EVP_add_cipher(EVP_aes_192_ofb()); | - |
135 | EVP_add_cipher(EVP_aes_192_ctr()); | - |
136 | EVP_add_cipher(EVP_aes_192_gcm()); | - |
137 | | - |
138 | EVP_add_cipher(EVP_aes_192_ocb()); | - |
139 | | - |
140 | EVP_add_cipher(EVP_aes_192_ccm()); | - |
141 | EVP_add_cipher(EVP_aes_192_wrap()); | - |
142 | OBJ_NAME_add(("aes192-wrap"),0x02|0x8000,("id-aes192-wrap")); | - |
143 | EVP_add_cipher(EVP_aes_192_wrap_pad()); | - |
144 | OBJ_NAME_add(("AES192"),0x02|0x8000,("AES-192-CBC")); | - |
145 | OBJ_NAME_add(("aes192"),0x02|0x8000,("AES-192-CBC")); | - |
146 | EVP_add_cipher(EVP_aes_256_ecb()); | - |
147 | EVP_add_cipher(EVP_aes_256_cbc()); | - |
148 | EVP_add_cipher(EVP_aes_256_cfb128()); | - |
149 | EVP_add_cipher(EVP_aes_256_cfb1()); | - |
150 | EVP_add_cipher(EVP_aes_256_cfb8()); | - |
151 | EVP_add_cipher(EVP_aes_256_ofb()); | - |
152 | EVP_add_cipher(EVP_aes_256_ctr()); | - |
153 | EVP_add_cipher(EVP_aes_256_gcm()); | - |
154 | | - |
155 | EVP_add_cipher(EVP_aes_256_ocb()); | - |
156 | | - |
157 | EVP_add_cipher(EVP_aes_256_xts()); | - |
158 | EVP_add_cipher(EVP_aes_256_ccm()); | - |
159 | EVP_add_cipher(EVP_aes_256_wrap()); | - |
160 | OBJ_NAME_add(("aes256-wrap"),0x02|0x8000,("id-aes256-wrap")); | - |
161 | EVP_add_cipher(EVP_aes_256_wrap_pad()); | - |
162 | OBJ_NAME_add(("AES256"),0x02|0x8000,("AES-256-CBC")); | - |
163 | OBJ_NAME_add(("aes256"),0x02|0x8000,("AES-256-CBC")); | - |
164 | EVP_add_cipher(EVP_aes_128_cbc_hmac_sha1()); | - |
165 | EVP_add_cipher(EVP_aes_256_cbc_hmac_sha1()); | - |
166 | EVP_add_cipher(EVP_aes_128_cbc_hmac_sha256()); | - |
167 | EVP_add_cipher(EVP_aes_256_cbc_hmac_sha256()); | - |
168 | | - |
169 | | - |
170 | EVP_add_cipher(EVP_aria_128_ecb()); | - |
171 | EVP_add_cipher(EVP_aria_128_cbc()); | - |
172 | EVP_add_cipher(EVP_aria_128_cfb128()); | - |
173 | EVP_add_cipher(EVP_aria_128_cfb1()); | - |
174 | EVP_add_cipher(EVP_aria_128_cfb8()); | - |
175 | EVP_add_cipher(EVP_aria_128_ctr()); | - |
176 | EVP_add_cipher(EVP_aria_128_ofb()); | - |
177 | EVP_add_cipher(EVP_aria_128_gcm()); | - |
178 | EVP_add_cipher(EVP_aria_128_ccm()); | - |
179 | OBJ_NAME_add(("ARIA128"),0x02|0x8000,("ARIA-128-CBC")); | - |
180 | OBJ_NAME_add(("aria128"),0x02|0x8000,("ARIA-128-CBC")); | - |
181 | EVP_add_cipher(EVP_aria_192_ecb()); | - |
182 | EVP_add_cipher(EVP_aria_192_cbc()); | - |
183 | EVP_add_cipher(EVP_aria_192_cfb128()); | - |
184 | EVP_add_cipher(EVP_aria_192_cfb1()); | - |
185 | EVP_add_cipher(EVP_aria_192_cfb8()); | - |
186 | EVP_add_cipher(EVP_aria_192_ctr()); | - |
187 | EVP_add_cipher(EVP_aria_192_ofb()); | - |
188 | EVP_add_cipher(EVP_aria_192_gcm()); | - |
189 | EVP_add_cipher(EVP_aria_192_ccm()); | - |
190 | OBJ_NAME_add(("ARIA192"),0x02|0x8000,("ARIA-192-CBC")); | - |
191 | OBJ_NAME_add(("aria192"),0x02|0x8000,("ARIA-192-CBC")); | - |
192 | EVP_add_cipher(EVP_aria_256_ecb()); | - |
193 | EVP_add_cipher(EVP_aria_256_cbc()); | - |
194 | EVP_add_cipher(EVP_aria_256_cfb128()); | - |
195 | EVP_add_cipher(EVP_aria_256_cfb1()); | - |
196 | EVP_add_cipher(EVP_aria_256_cfb8()); | - |
197 | EVP_add_cipher(EVP_aria_256_ctr()); | - |
198 | EVP_add_cipher(EVP_aria_256_ofb()); | - |
199 | EVP_add_cipher(EVP_aria_256_gcm()); | - |
200 | EVP_add_cipher(EVP_aria_256_ccm()); | - |
201 | OBJ_NAME_add(("ARIA256"),0x02|0x8000,("ARIA-256-CBC")); | - |
202 | OBJ_NAME_add(("aria256"),0x02|0x8000,("ARIA-256-CBC")); | - |
203 | | - |
204 | | - |
205 | | - |
206 | EVP_add_cipher(EVP_camellia_128_ecb()); | - |
207 | EVP_add_cipher(EVP_camellia_128_cbc()); | - |
208 | EVP_add_cipher(EVP_camellia_128_cfb128()); | - |
209 | EVP_add_cipher(EVP_camellia_128_cfb1()); | - |
210 | EVP_add_cipher(EVP_camellia_128_cfb8()); | - |
211 | EVP_add_cipher(EVP_camellia_128_ofb()); | - |
212 | OBJ_NAME_add(("CAMELLIA128"),0x02|0x8000,("CAMELLIA-128-CBC")); | - |
213 | OBJ_NAME_add(("camellia128"),0x02|0x8000,("CAMELLIA-128-CBC")); | - |
214 | EVP_add_cipher(EVP_camellia_192_ecb()); | - |
215 | EVP_add_cipher(EVP_camellia_192_cbc()); | - |
216 | EVP_add_cipher(EVP_camellia_192_cfb128()); | - |
217 | EVP_add_cipher(EVP_camellia_192_cfb1()); | - |
218 | EVP_add_cipher(EVP_camellia_192_cfb8()); | - |
219 | EVP_add_cipher(EVP_camellia_192_ofb()); | - |
220 | OBJ_NAME_add(("CAMELLIA192"),0x02|0x8000,("CAMELLIA-192-CBC")); | - |
221 | OBJ_NAME_add(("camellia192"),0x02|0x8000,("CAMELLIA-192-CBC")); | - |
222 | EVP_add_cipher(EVP_camellia_256_ecb()); | - |
223 | EVP_add_cipher(EVP_camellia_256_cbc()); | - |
224 | EVP_add_cipher(EVP_camellia_256_cfb128()); | - |
225 | EVP_add_cipher(EVP_camellia_256_cfb1()); | - |
226 | EVP_add_cipher(EVP_camellia_256_cfb8()); | - |
227 | EVP_add_cipher(EVP_camellia_256_ofb()); | - |
228 | OBJ_NAME_add(("CAMELLIA256"),0x02|0x8000,("CAMELLIA-256-CBC")); | - |
229 | OBJ_NAME_add(("camellia256"),0x02|0x8000,("CAMELLIA-256-CBC")); | - |
230 | EVP_add_cipher(EVP_camellia_128_ctr()); | - |
231 | EVP_add_cipher(EVP_camellia_192_ctr()); | - |
232 | EVP_add_cipher(EVP_camellia_256_ctr()); | - |
233 | | - |
234 | | - |
235 | | - |
236 | EVP_add_cipher(EVP_chacha20()); | - |
237 | | - |
238 | EVP_add_cipher(EVP_chacha20_poly1305()); | - |
239 | | - |
240 | | - |
241 | }executed 1962 times by 1 test: end of block | 1962 |
| | |