xref: /onnv-gate/usr/src/common/openssl/apps/progs.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /* apps/progs.h */
2*0Sstevel@tonic-gate /* automatically generated by progs.pl for openssl.c */
3*0Sstevel@tonic-gate 
4*0Sstevel@tonic-gate extern int verify_main(int argc,char *argv[]);
5*0Sstevel@tonic-gate extern int asn1parse_main(int argc,char *argv[]);
6*0Sstevel@tonic-gate extern int req_main(int argc,char *argv[]);
7*0Sstevel@tonic-gate extern int dgst_main(int argc,char *argv[]);
8*0Sstevel@tonic-gate extern int dh_main(int argc,char *argv[]);
9*0Sstevel@tonic-gate extern int dhparam_main(int argc,char *argv[]);
10*0Sstevel@tonic-gate extern int enc_main(int argc,char *argv[]);
11*0Sstevel@tonic-gate extern int passwd_main(int argc,char *argv[]);
12*0Sstevel@tonic-gate extern int gendh_main(int argc,char *argv[]);
13*0Sstevel@tonic-gate extern int errstr_main(int argc,char *argv[]);
14*0Sstevel@tonic-gate extern int ca_main(int argc,char *argv[]);
15*0Sstevel@tonic-gate extern int crl_main(int argc,char *argv[]);
16*0Sstevel@tonic-gate extern int rsa_main(int argc,char *argv[]);
17*0Sstevel@tonic-gate extern int rsautl_main(int argc,char *argv[]);
18*0Sstevel@tonic-gate extern int dsa_main(int argc,char *argv[]);
19*0Sstevel@tonic-gate extern int dsaparam_main(int argc,char *argv[]);
20*0Sstevel@tonic-gate extern int x509_main(int argc,char *argv[]);
21*0Sstevel@tonic-gate extern int genrsa_main(int argc,char *argv[]);
22*0Sstevel@tonic-gate extern int gendsa_main(int argc,char *argv[]);
23*0Sstevel@tonic-gate extern int s_server_main(int argc,char *argv[]);
24*0Sstevel@tonic-gate extern int s_client_main(int argc,char *argv[]);
25*0Sstevel@tonic-gate extern int speed_main(int argc,char *argv[]);
26*0Sstevel@tonic-gate extern int s_time_main(int argc,char *argv[]);
27*0Sstevel@tonic-gate extern int version_main(int argc,char *argv[]);
28*0Sstevel@tonic-gate extern int pkcs7_main(int argc,char *argv[]);
29*0Sstevel@tonic-gate extern int crl2pkcs7_main(int argc,char *argv[]);
30*0Sstevel@tonic-gate extern int sess_id_main(int argc,char *argv[]);
31*0Sstevel@tonic-gate extern int ciphers_main(int argc,char *argv[]);
32*0Sstevel@tonic-gate extern int nseq_main(int argc,char *argv[]);
33*0Sstevel@tonic-gate extern int pkcs12_main(int argc,char *argv[]);
34*0Sstevel@tonic-gate extern int pkcs8_main(int argc,char *argv[]);
35*0Sstevel@tonic-gate extern int spkac_main(int argc,char *argv[]);
36*0Sstevel@tonic-gate extern int smime_main(int argc,char *argv[]);
37*0Sstevel@tonic-gate extern int rand_main(int argc,char *argv[]);
38*0Sstevel@tonic-gate #ifndef OPENSSL_NO_ENGINE
39*0Sstevel@tonic-gate extern int engine_main(int argc,char *argv[]);
40*0Sstevel@tonic-gate #endif
41*0Sstevel@tonic-gate extern int ocsp_main(int argc,char *argv[]);
42*0Sstevel@tonic-gate 
43*0Sstevel@tonic-gate #define FUNC_TYPE_GENERAL	1
44*0Sstevel@tonic-gate #define FUNC_TYPE_MD		2
45*0Sstevel@tonic-gate #define FUNC_TYPE_CIPHER	3
46*0Sstevel@tonic-gate 
47*0Sstevel@tonic-gate typedef struct {
48*0Sstevel@tonic-gate 	int type;
49*0Sstevel@tonic-gate 	char *name;
50*0Sstevel@tonic-gate 	int (*func)();
51*0Sstevel@tonic-gate 	} FUNCTION;
52*0Sstevel@tonic-gate 
53*0Sstevel@tonic-gate FUNCTION functions[] = {
54*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"verify",verify_main},
55*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"asn1parse",asn1parse_main},
56*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"req",req_main},
57*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"dgst",dgst_main},
58*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DH
59*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"dh",dh_main},
60*0Sstevel@tonic-gate #endif
61*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DH
62*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"dhparam",dhparam_main},
63*0Sstevel@tonic-gate #endif
64*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"enc",enc_main},
65*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"passwd",passwd_main},
66*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DH
67*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"gendh",gendh_main},
68*0Sstevel@tonic-gate #endif
69*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"errstr",errstr_main},
70*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"ca",ca_main},
71*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"crl",crl_main},
72*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RSA
73*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"rsa",rsa_main},
74*0Sstevel@tonic-gate #endif
75*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RSA
76*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"rsautl",rsautl_main},
77*0Sstevel@tonic-gate #endif
78*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DSA
79*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"dsa",dsa_main},
80*0Sstevel@tonic-gate #endif
81*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DSA
82*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"dsaparam",dsaparam_main},
83*0Sstevel@tonic-gate #endif
84*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"x509",x509_main},
85*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RSA
86*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"genrsa",genrsa_main},
87*0Sstevel@tonic-gate #endif
88*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DSA
89*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"gendsa",gendsa_main},
90*0Sstevel@tonic-gate #endif
91*0Sstevel@tonic-gate #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
92*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"s_server",s_server_main},
93*0Sstevel@tonic-gate #endif
94*0Sstevel@tonic-gate #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
95*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"s_client",s_client_main},
96*0Sstevel@tonic-gate #endif
97*0Sstevel@tonic-gate #ifndef OPENSSL_NO_SPEED
98*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"speed",speed_main},
99*0Sstevel@tonic-gate #endif
100*0Sstevel@tonic-gate #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
101*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"s_time",s_time_main},
102*0Sstevel@tonic-gate #endif
103*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"version",version_main},
104*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"pkcs7",pkcs7_main},
105*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"crl2pkcs7",crl2pkcs7_main},
106*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"sess_id",sess_id_main},
107*0Sstevel@tonic-gate #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
108*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"ciphers",ciphers_main},
109*0Sstevel@tonic-gate #endif
110*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"nseq",nseq_main},
111*0Sstevel@tonic-gate #if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)
112*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"pkcs12",pkcs12_main},
113*0Sstevel@tonic-gate #endif
114*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"pkcs8",pkcs8_main},
115*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"spkac",spkac_main},
116*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"smime",smime_main},
117*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"rand",rand_main},
118*0Sstevel@tonic-gate #ifndef OPENSSL_NO_ENGINE
119*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"engine",engine_main},
120*0Sstevel@tonic-gate #endif
121*0Sstevel@tonic-gate 	{FUNC_TYPE_GENERAL,"ocsp",ocsp_main},
122*0Sstevel@tonic-gate #ifndef OPENSSL_NO_MD2
123*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"md2",dgst_main},
124*0Sstevel@tonic-gate #endif
125*0Sstevel@tonic-gate #ifndef OPENSSL_NO_MD4
126*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"md4",dgst_main},
127*0Sstevel@tonic-gate #endif
128*0Sstevel@tonic-gate #ifndef OPENSSL_NO_MD5
129*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"md5",dgst_main},
130*0Sstevel@tonic-gate #endif
131*0Sstevel@tonic-gate #ifndef OPENSSL_NO_SHA
132*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"sha",dgst_main},
133*0Sstevel@tonic-gate #endif
134*0Sstevel@tonic-gate #ifndef OPENSSL_NO_SHA1
135*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"sha1",dgst_main},
136*0Sstevel@tonic-gate #endif
137*0Sstevel@tonic-gate #ifndef OPENSSL_NO_MDC2
138*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"mdc2",dgst_main},
139*0Sstevel@tonic-gate #endif
140*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RMD160
141*0Sstevel@tonic-gate 	{FUNC_TYPE_MD,"rmd160",dgst_main},
142*0Sstevel@tonic-gate #endif
143*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
144*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-128-cbc",enc_main},
145*0Sstevel@tonic-gate #endif
146*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
147*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-128-ecb",enc_main},
148*0Sstevel@tonic-gate #endif
149*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
150*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-192-cbc",enc_main},
151*0Sstevel@tonic-gate #endif
152*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
153*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-192-ecb",enc_main},
154*0Sstevel@tonic-gate #endif
155*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
156*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-256-cbc",enc_main},
157*0Sstevel@tonic-gate #endif
158*0Sstevel@tonic-gate #ifndef OPENSSL_NO_AES
159*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"aes-256-ecb",enc_main},
160*0Sstevel@tonic-gate #endif
161*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"base64",enc_main},
162*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
163*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des",enc_main},
164*0Sstevel@tonic-gate #endif
165*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
166*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des3",enc_main},
167*0Sstevel@tonic-gate #endif
168*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
169*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"desx",enc_main},
170*0Sstevel@tonic-gate #endif
171*0Sstevel@tonic-gate #ifndef OPENSSL_NO_IDEA
172*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"idea",enc_main},
173*0Sstevel@tonic-gate #endif
174*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC4
175*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc4",enc_main},
176*0Sstevel@tonic-gate #endif
177*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC4
178*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc4-40",enc_main},
179*0Sstevel@tonic-gate #endif
180*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
181*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2",enc_main},
182*0Sstevel@tonic-gate #endif
183*0Sstevel@tonic-gate #ifndef OPENSSL_NO_BF
184*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"bf",enc_main},
185*0Sstevel@tonic-gate #endif
186*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
187*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast",enc_main},
188*0Sstevel@tonic-gate #endif
189*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC5
190*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc5",enc_main},
191*0Sstevel@tonic-gate #endif
192*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
193*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ecb",enc_main},
194*0Sstevel@tonic-gate #endif
195*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
196*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede",enc_main},
197*0Sstevel@tonic-gate #endif
198*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
199*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede3",enc_main},
200*0Sstevel@tonic-gate #endif
201*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
202*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-cbc",enc_main},
203*0Sstevel@tonic-gate #endif
204*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
205*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede-cbc",enc_main},
206*0Sstevel@tonic-gate #endif
207*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
208*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede3-cbc",enc_main},
209*0Sstevel@tonic-gate #endif
210*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
211*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-cfb",enc_main},
212*0Sstevel@tonic-gate #endif
213*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
214*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede-cfb",enc_main},
215*0Sstevel@tonic-gate #endif
216*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
217*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede3-cfb",enc_main},
218*0Sstevel@tonic-gate #endif
219*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
220*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ofb",enc_main},
221*0Sstevel@tonic-gate #endif
222*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
223*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede-ofb",enc_main},
224*0Sstevel@tonic-gate #endif
225*0Sstevel@tonic-gate #ifndef OPENSSL_NO_DES
226*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"des-ede3-ofb",enc_main},
227*0Sstevel@tonic-gate #endif
228*0Sstevel@tonic-gate #ifndef OPENSSL_NO_IDEA
229*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"idea-cbc",enc_main},
230*0Sstevel@tonic-gate #endif
231*0Sstevel@tonic-gate #ifndef OPENSSL_NO_IDEA
232*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"idea-ecb",enc_main},
233*0Sstevel@tonic-gate #endif
234*0Sstevel@tonic-gate #ifndef OPENSSL_NO_IDEA
235*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"idea-cfb",enc_main},
236*0Sstevel@tonic-gate #endif
237*0Sstevel@tonic-gate #ifndef OPENSSL_NO_IDEA
238*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"idea-ofb",enc_main},
239*0Sstevel@tonic-gate #endif
240*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
241*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-cbc",enc_main},
242*0Sstevel@tonic-gate #endif
243*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
244*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-ecb",enc_main},
245*0Sstevel@tonic-gate #endif
246*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
247*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-cfb",enc_main},
248*0Sstevel@tonic-gate #endif
249*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
250*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-ofb",enc_main},
251*0Sstevel@tonic-gate #endif
252*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
253*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-64-cbc",enc_main},
254*0Sstevel@tonic-gate #endif
255*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC2
256*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc2-40-cbc",enc_main},
257*0Sstevel@tonic-gate #endif
258*0Sstevel@tonic-gate #ifndef OPENSSL_NO_BF
259*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"bf-cbc",enc_main},
260*0Sstevel@tonic-gate #endif
261*0Sstevel@tonic-gate #ifndef OPENSSL_NO_BF
262*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"bf-ecb",enc_main},
263*0Sstevel@tonic-gate #endif
264*0Sstevel@tonic-gate #ifndef OPENSSL_NO_BF
265*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"bf-cfb",enc_main},
266*0Sstevel@tonic-gate #endif
267*0Sstevel@tonic-gate #ifndef OPENSSL_NO_BF
268*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"bf-ofb",enc_main},
269*0Sstevel@tonic-gate #endif
270*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
271*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast5-cbc",enc_main},
272*0Sstevel@tonic-gate #endif
273*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
274*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast5-ecb",enc_main},
275*0Sstevel@tonic-gate #endif
276*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
277*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast5-cfb",enc_main},
278*0Sstevel@tonic-gate #endif
279*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
280*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast5-ofb",enc_main},
281*0Sstevel@tonic-gate #endif
282*0Sstevel@tonic-gate #ifndef OPENSSL_NO_CAST
283*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"cast-cbc",enc_main},
284*0Sstevel@tonic-gate #endif
285*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC5
286*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc5-cbc",enc_main},
287*0Sstevel@tonic-gate #endif
288*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC5
289*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc5-ecb",enc_main},
290*0Sstevel@tonic-gate #endif
291*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC5
292*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc5-cfb",enc_main},
293*0Sstevel@tonic-gate #endif
294*0Sstevel@tonic-gate #ifndef OPENSSL_NO_RC5
295*0Sstevel@tonic-gate 	{FUNC_TYPE_CIPHER,"rc5-ofb",enc_main},
296*0Sstevel@tonic-gate #endif
297*0Sstevel@tonic-gate 	{0,NULL,NULL}
298*0Sstevel@tonic-gate 	};
299