Separate DSA functionality from ASN.1 encoding.
[openssl.git] / test / testenc_commands.c
1 /* C preprocessor input for producing the list of openssl encryption commands
2    that should be available.  Note that we use "_" instead of "-" in the names
3    so that each command looks like one symbol to the C preprocessor --
4    -- otherwise spaces might be inserted. */
5
6 #ifndef NO_RC4
7 rc4
8 #endif
9
10 #ifndef NO_DES
11 des_cfb des_ede_cfb des_ede3_cfb
12 des_ofb des_ede_ofb des_ede3_ofb
13 des_ecb des_ede des_ede3 desx
14 des_cbc des_ede_cbc des_ede3_cbc
15 #endif
16
17 #ifndef NO_IDEA
18 idea_ecb idea_cfb idea_ofb idea_cbc
19 #endif
20
21 #ifndef NO_RC2
22 rc2_ecb rc2_cfb rc2_ofb rc2_cbc
23 #endif
24
25 #ifndef NO_BLOWFISH
26 bf_ecb bf_cfb bf_ofb bf_cbc
27 #endif
28
29 #ifndef NO_RC4
30 rc4
31 #endif
32
33 #ifndef NO_CAST
34 cast5_ecb cast5_cfb cast5_ofb cast5_cbc
35 #endif