diff options
Diffstat (limited to 'src/lib/libcrypto/des/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/des/Makefile.ssl | 267 |
1 files changed, 190 insertions, 77 deletions
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl index cc5379feb2..04a73a9326 100644 --- a/src/lib/libcrypto/des/Makefile.ssl +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
@@ -6,13 +6,14 @@ DIR= des | |||
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES=-I../../include | 9 | INCLUDES=-I$(TOP) -I../../include |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | 11 | INSTALL_PREFIX= |
12 | OPENSSLDIR= /usr/local/ssl | 12 | OPENSSLDIR= /usr/local/ssl |
13 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
14 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
17 | AR= ar r | 18 | AR= ar r |
18 | RANLIB= ranlib | 19 | RANLIB= ranlib |
@@ -30,22 +31,23 @@ LIB=$(TOP)/libcrypto.a | |||
30 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 31 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
31 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 32 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
32 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 33 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ |
33 | qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \ | 34 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
34 | des_enc.c fcrypt_b.c read2pwd.c \ | 35 | des_enc.c fcrypt_b.c \ |
35 | xcbc_enc.c \ | 36 | xcbc_enc.c \ |
36 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c | 37 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ |
38 | read2pwd.c | ||
37 | 39 | ||
38 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ | 40 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ |
39 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ | 41 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ |
40 | enc_read.o enc_writ.o ofb64enc.o \ | 42 | enc_read.o enc_writ.o ofb64enc.o \ |
41 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ | 43 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ |
42 | ${DES_ENC} read2pwd.o \ | 44 | ${DES_ENC} \ |
43 | fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o \ | 45 | fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \ |
44 | ede_cbcm_enc.o | 46 | ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o |
45 | 47 | ||
46 | SRC= $(LIBSRC) | 48 | SRC= $(LIBSRC) |
47 | 49 | ||
48 | EXHEADER= des.h | 50 | EXHEADER= des.h des_old.h |
49 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) | 51 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) |
50 | 52 | ||
51 | ALL= $(GENERAL) $(SRC) $(HEADER) | 53 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -57,8 +59,7 @@ all: lib | |||
57 | 59 | ||
58 | lib: $(LIBOBJ) | 60 | lib: $(LIBOBJ) |
59 | $(AR) $(LIB) $(LIBOBJ) | 61 | $(AR) $(LIB) $(LIBOBJ) |
60 | @echo You may get an error following this line. Please ignore. | 62 | $(RANLIB) $(LIB) || echo Never mind. |
61 | - $(RANLIB) $(LIB) | ||
62 | @touch lib | 63 | @touch lib |
63 | 64 | ||
64 | des: des.o cbc3_enc.o lib | 65 | des: des.o cbc3_enc.o lib |
@@ -141,72 +142,184 @@ clean: | |||
141 | 142 | ||
142 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 143 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
143 | 144 | ||
144 | cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 145 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
145 | cbc_cksm.o: ../../include/openssl/opensslconf.h des_locl.h | 146 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
146 | cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 147 | cbc_cksm.o: ../../include/openssl/opensslconf.h |
147 | cbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h ncbc_enc.c | 148 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
148 | cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 149 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
149 | cfb64ede.o: ../../include/openssl/opensslconf.h des_locl.h | 150 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
150 | cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 151 | cbc_cksm.o: cbc_cksm.c des_locl.h |
151 | cfb64enc.o: ../../include/openssl/opensslconf.h des_locl.h | 152 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
152 | cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 153 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
153 | cfb_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 154 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
154 | des_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 155 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
155 | des_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_locl.h ncbc_enc.c | 156 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
156 | ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 157 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c |
157 | ecb3_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 158 | cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
158 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 159 | cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
160 | cfb64ede.o: ../../include/openssl/opensslconf.h | ||
161 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
162 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
163 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
164 | cfb64ede.o: cfb64ede.c des_locl.h | ||
165 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
166 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
167 | cfb64enc.o: ../../include/openssl/opensslconf.h | ||
168 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
169 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
170 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
171 | cfb64enc.o: cfb64enc.c des_locl.h | ||
172 | cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
173 | cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
174 | cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
175 | cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
176 | cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
177 | cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h | ||
178 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
179 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
180 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
181 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
182 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
183 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | ||
184 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
185 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
186 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
187 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
188 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
189 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
190 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | ||
191 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
192 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
193 | des_old2.o: ../../include/openssl/opensslconf.h | ||
194 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
195 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
196 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
197 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
198 | des_old2.o: des_old2.c | ||
199 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
200 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
201 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
202 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
203 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
204 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
205 | ecb3_enc.o: des_locl.h ecb3_enc.c | ||
206 | ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
207 | ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
159 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 208 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
160 | ecb_enc.o: des_locl.h spr.h | 209 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
161 | ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 210 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
162 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 211 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h |
163 | enc_read.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 212 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
164 | enc_read.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 213 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
165 | enc_read.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 214 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h |
166 | enc_read.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 215 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h |
167 | enc_read.o: ../../include/openssl/opensslconf.h | 216 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
217 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
218 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | ||
219 | enc_read.o: ../../e_os.h ../../include/openssl/bio.h | ||
220 | enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
221 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
222 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
223 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
168 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 224 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
169 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 225 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
170 | enc_read.o: ../cryptlib.h des_locl.h | 226 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
171 | enc_writ.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 227 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c |
172 | enc_writ.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 228 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h |
173 | enc_writ.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 229 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
174 | enc_writ.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 230 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
175 | enc_writ.o: ../../include/openssl/opensslconf.h | 231 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
176 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 232 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
177 | enc_writ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 233 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
178 | enc_writ.o: ../../include/openssl/symhacks.h ../cryptlib.h des_locl.h | 234 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
179 | fcrypt.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 235 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
180 | fcrypt.o: ../../include/openssl/opensslconf.h des_locl.h | 236 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
181 | fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 237 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c |
182 | fcrypt_b.o: ../../include/openssl/opensslconf.h des_locl.h | 238 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
183 | ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 239 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
184 | ofb64ede.o: ../../include/openssl/opensslconf.h des_locl.h | 240 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
185 | ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 241 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
186 | ofb64enc.o: ../../include/openssl/opensslconf.h des_locl.h | 242 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
187 | ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 243 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c |
188 | ofb_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 244 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
189 | pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 245 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
190 | pcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 246 | fcrypt_b.o: ../../include/openssl/opensslconf.h |
191 | qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 247 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
192 | qud_cksm.o: ../../include/openssl/opensslconf.h des_locl.h | 248 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
193 | rand_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 249 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
194 | rand_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/rand.h | 250 | fcrypt_b.o: des_locl.h fcrypt_b.c |
195 | read2pwd.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 251 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
196 | read2pwd.o: ../../include/openssl/opensslconf.h des_locl.h | 252 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
197 | read_pwd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 253 | ofb64ede.o: ../../include/openssl/opensslconf.h |
198 | read_pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 254 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
199 | read_pwd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 255 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
200 | read_pwd.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 256 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
201 | read_pwd.o: ../../include/openssl/opensslconf.h | 257 | ofb64ede.o: des_locl.h ofb64ede.c |
202 | read_pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 258 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
203 | read_pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 259 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
204 | read_pwd.o: ../cryptlib.h des_locl.h | 260 | ofb64enc.o: ../../include/openssl/opensslconf.h |
205 | rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 261 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
206 | rpc_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_ver.h rpc_des.h | 262 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
207 | set_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 263 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
208 | set_key.o: ../../include/openssl/opensslconf.h des_locl.h | 264 | ofb64enc.o: des_locl.h ofb64enc.c |
209 | str2key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 265 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
210 | str2key.o: ../../include/openssl/opensslconf.h des_locl.h | 266 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
211 | xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h | 267 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
212 | xcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h | 268 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
269 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
270 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | ||
271 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
272 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
273 | pcbc_enc.o: ../../include/openssl/opensslconf.h | ||
274 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
275 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
276 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
277 | pcbc_enc.o: des_locl.h pcbc_enc.c | ||
278 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
279 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
280 | qud_cksm.o: ../../include/openssl/opensslconf.h | ||
281 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
282 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
283 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
284 | qud_cksm.o: des_locl.h qud_cksm.c | ||
285 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
286 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
287 | rand_key.o: ../../include/openssl/opensslconf.h | ||
288 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
289 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
290 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
291 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
292 | rand_key.o: rand_key.c | ||
293 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
294 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
295 | read2pwd.o: ../../include/openssl/opensslconf.h | ||
296 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
297 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
298 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
299 | read2pwd.o: read2pwd.c | ||
300 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
301 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
302 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
303 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
304 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
305 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | ||
306 | rpc_enc.o: rpc_enc.c | ||
307 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
308 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
309 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
310 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
311 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
312 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
313 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
314 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
315 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
316 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
317 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
318 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | ||
319 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
320 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
321 | xcbc_enc.o: ../../include/openssl/opensslconf.h | ||
322 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
323 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
324 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
325 | xcbc_enc.o: des_locl.h xcbc_enc.c | ||