summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2002-09-05 22:45:22 +0000
committercvs2svn <admin@example.com>2002-09-05 22:45:22 +0000
commit717db1136d61cbf2cad7d58f0bd17af2826db256 (patch)
tree7af799ed859a407b6af4caab83f60659ef7096bb /src/lib/libcrypto/des
parent2a6851ef8adb0e84ff2515493d3704a13c6256b0 (diff)
downloadopenbsd-OPENSSL_0_9_7_BETA3.tar.gz
openbsd-OPENSSL_0_9_7_BETA3.tar.bz2
openbsd-OPENSSL_0_9_7_BETA3.zip
This commit was manufactured by cvs2git to create tag 'OPENSSL_0_9_7_BETA3'.OPENSSL_0_9_7_BETA3
Diffstat (limited to 'src/lib/libcrypto/des')
-rw-r--r--src/lib/libcrypto/des/FILES96
-rw-r--r--src/lib/libcrypto/des/Makefile.ssl324
2 files changed, 420 insertions, 0 deletions
diff --git a/src/lib/libcrypto/des/FILES b/src/lib/libcrypto/des/FILES
new file mode 100644
index 0000000000..4c7ea2de7a
--- /dev/null
+++ b/src/lib/libcrypto/des/FILES
@@ -0,0 +1,96 @@
1/* General stuff */
2COPYRIGHT - Copyright info.
3MODES.DES - A description of the features of the different modes of DES.
4FILES - This file.
5INSTALL - How to make things compile.
6Imakefile - For use with kerberos.
7README - What this package is.
8VERSION - Which version this is and what was changed.
9KERBEROS - Kerberos version 4 notes.
10Makefile.PL - An old makefile to build with perl5, not current.
11Makefile.ssl - The SSLeay makefile
12Makefile.uni - The normal unix makefile.
13GNUmakefile - The makefile for use with glibc.
14makefile.bc - A Borland C makefile
15times - Some outputs from 'speed' on some machines.
16vms.com - For use when compiling under VMS
17
18/* My SunOS des(1) replacement */
19des.c - des(1) source code.
20des.man - des(1) manual.
21
22/* Testing and timing programs. */
23destest.c - Source for libdes.a test program.
24speed.c - Source for libdes.a timing program.
25rpw.c - Source for libdes.a testing password reading routines.
26
27/* libdes.a source code */
28des_crypt.man - libdes.a manual page.
29des.h - Public libdes.a header file.
30ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code.
31ecb3_enc.c - des_ecb3_encrypt() source.
32cbc_ckm.c - des_cbc_cksum() source.
33cbc_enc.c - des_cbc_encrypt() source.
34ncbc_enc.c - des_cbc_encrypt() that is 'normal' in that it copies
35 the new iv values back in the passed iv vector.
36ede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES.
37cbc3_enc.c - des_3cbc_encrypt() source, don't use this function.
38cfb_enc.c - des_cfb_encrypt() source.
39cfb64enc.c - des_cfb64_encrypt() cfb in 64 bit mode but setup to be
40 used as a stream cipher.
41cfb64ede.c - des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be
42 used as a stream cipher and using triple DES.
43ofb_enc.c - des_cfb_encrypt() source.
44ofb64_enc.c - des_ofb_encrypt() ofb in 64 bit mode but setup to be
45 used as a stream cipher.
46ofb64ede.c - des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be
47 used as a stream cipher and using triple DES.
48enc_read.c - des_enc_read() source.
49enc_writ.c - des_enc_write() source.
50pcbc_enc.c - des_pcbc_encrypt() source.
51qud_cksm.c - quad_cksum() source.
52rand_key.c - des_random_key() source.
53read_pwd.c - Source for des_read_password() plus related functions.
54set_key.c - Source for des_set_key().
55str2key.c - Covert a string of any length into a key.
56fcrypt.c - A small, fast version of crypt(3).
57des_locl.h - Internal libdes.a header file.
58podd.h - Odd parity tables - used in des_set_key().
59sk.h - Lookup tables used in des_set_key().
60spr.h - What is left of the S tables - used in ecb_encrypt().
61des_ver.h - header file for the external definition of the
62 version string.
63des.doc - SSLeay documentation for the library.
64
65/* The perl scripts - you can ignore these files they are only
66 * included for the curious */
67des.pl - des in perl anyone? des_set_key and des_ecb_encrypt
68 both done in a perl library.
69testdes.pl - Testing program for des.pl
70doIP - Perl script used to develop IP xor/shift code.
71doPC1 - Perl script used to develop PC1 xor/shift code.
72doPC2 - Generates sk.h.
73PC1 - Output of doPC1 should be the same as output from PC1.
74PC2 - used in development of doPC2.
75shifts.pl - Perl library used by my perl scripts.
76
77/* I started making a perl5 dynamic library for libdes
78 * but did not fully finish, these files are part of that effort. */
79DES.pm
80DES.pod
81DES.xs
82t
83typemap
84
85/* The following are for use with sun RPC implementaions. */
86rpc_des.h
87rpc_enc.c
88
89/* The following are contibuted by Mark Murray <mark@grondar.za>. They
90 * are not normally built into libdes due to machine specific routines
91 * contained in them. They are for use in the most recent incarnation of
92 * export kerberos v 4 (eBones). */
93supp.c
94new_rkey.c
95
96
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl
new file mode 100644
index 0000000000..00e479dbd1
--- /dev/null
+++ b/src/lib/libcrypto/des/Makefile.ssl
@@ -0,0 +1,324 @@
1#
2# SSLeay/crypto/des/Makefile
3#
4
5DIR= des
6TOP= ../..
7CC= cc
8CPP= $(CC) -E
9INCLUDES=-I$(TOP) -I../../include
10CFLAG=-g
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
13INSTALLTOP=/usr/local/ssl
14MAKE= make -f Makefile.ssl
15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17MAKEFILE= Makefile.ssl
18AR= ar r
19RANLIB= ranlib
20DES_ENC= des_enc.o fcrypt_b.o
21# or use
22#DES_ENC= dx86-elf.o yx86-elf.o
23
24CFLAGS= $(INCLUDES) $(CFLAG)
25
26GENERAL=Makefile
27TEST=destest.c
28APPS=
29
30LIB=$(TOP)/libcrypto.a
31LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
32 ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \
33 fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
34 qud_cksm.c rand_key.c rpc_enc.c set_key.c \
35 des_enc.c fcrypt_b.c \
36 xcbc_enc.c \
37 str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \
38 read2pwd.c
39
40LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
41 ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \
42 enc_read.o enc_writ.o ofb64enc.o \
43 ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \
44 ${DES_ENC} \
45 fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \
46 ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o
47
48SRC= $(LIBSRC)
49
50EXHEADER= des.h des_old.h
51HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
52
53ALL= $(GENERAL) $(SRC) $(HEADER)
54
55top:
56 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
57
58all: lib
59
60lib: $(LIBOBJ)
61 $(AR) $(LIB) $(LIBOBJ)
62 $(RANLIB) $(LIB) || echo Never mind.
63 @touch lib
64
65des: des.o cbc3_enc.o lib
66 $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
67
68# elf
69asm/dx86-elf.o: asm/dx86unix.cpp
70 $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o
71
72asm/yx86-elf.o: asm/yx86unix.cpp
73 $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o
74
75# solaris
76asm/dx86-sol.o: asm/dx86unix.cpp
77 $(CC) -E -DSOL asm/dx86unix.cpp | sed 's/^#.*//' > asm/dx86-sol.s
78 as -o asm/dx86-sol.o asm/dx86-sol.s
79 rm -f asm/dx86-sol.s
80
81asm/yx86-sol.o: asm/yx86unix.cpp
82 $(CC) -E -DSOL asm/yx86unix.cpp | sed 's/^#.*//' > asm/yx86-sol.s
83 as -o asm/yx86-sol.o asm/yx86-sol.s
84 rm -f asm/yx86-sol.s
85
86# a.out
87asm/dx86-out.o: asm/dx86unix.cpp
88 $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o
89
90asm/yx86-out.o: asm/yx86unix.cpp
91 $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o
92
93# bsdi
94asm/dx86bsdi.o: asm/dx86unix.cpp
95 $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o
96
97asm/yx86bsdi.o: asm/yx86unix.cpp
98 $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o
99
100asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
101 (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp)
102
103asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl
104 (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp)
105
106files:
107 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
108
109links:
110 @$(TOP)/util/point.sh Makefile.ssl Makefile
111 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
112 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
113 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
114
115install: installs
116
117installs:
118 @for i in $(EXHEADER) ; \
119 do \
120 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
121 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
122 done;
123
124tags:
125 ctags $(SRC)
126
127tests:
128
129lint:
130 lint -DLINT $(INCLUDES) $(SRC)>fluff
131
132depend:
133 $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
134
135dclean:
136 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
137 mv -f Makefile.new $(MAKEFILE)
138
139clean:
140 rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
141
142# DO NOT DELETE THIS LINE -- make depend depends on it.
143
144cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
145cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
146cbc_cksm.o: ../../include/openssl/opensslconf.h
147cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
148cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
149cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
150cbc_cksm.o: cbc_cksm.c des_locl.h
151cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
152cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
153cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
154cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
155cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
156cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c
157cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
158cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
159cfb64ede.o: ../../include/openssl/opensslconf.h
160cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
161cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
162cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
163cfb64ede.o: cfb64ede.c des_locl.h
164cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
165cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
166cfb64enc.o: ../../include/openssl/opensslconf.h
167cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
168cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
169cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
170cfb64enc.o: cfb64enc.c des_locl.h
171cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
172cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
173cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
174cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
175cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
176cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h
177des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
178des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
179des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
180des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
181des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
182des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c
183des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
184des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
185des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
186des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
187des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
188des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
189des_old.o: ../../include/openssl/ui_compat.h des_old.c
190des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
191des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
192des_old2.o: ../../include/openssl/opensslconf.h
193des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
194des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
195des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
196des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
197des_old2.o: des_old2.c
198ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
199ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
200ecb3_enc.o: ../../include/openssl/opensslconf.h
201ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
202ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
203ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
204ecb3_enc.o: des_locl.h ecb3_enc.c
205ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
206ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
207ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
208ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
209ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
210ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h
211ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
212ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
213ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
214ede_cbcm_enc.o: ../../include/openssl/opensslv.h
215ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
216ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
217ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c
218enc_read.o: ../../e_os.h ../../include/openssl/bio.h
219enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
220enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
221enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
222enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
223enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
224enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
225enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
226enc_read.o: ../cryptlib.h des_locl.h enc_read.c
227enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
228enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
229enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
230enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
231enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
232enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
233enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
234enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
235enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
236enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
237fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
238fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
239fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
240fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
241fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
242fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c
243fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
244fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
245fcrypt_b.o: ../../include/openssl/opensslconf.h
246fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
247fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
248fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
249fcrypt_b.o: des_locl.h fcrypt_b.c
250ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
251ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
252ofb64ede.o: ../../include/openssl/opensslconf.h
253ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
254ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
255ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
256ofb64ede.o: des_locl.h ofb64ede.c
257ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
258ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
259ofb64enc.o: ../../include/openssl/opensslconf.h
260ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
261ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
262ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
263ofb64enc.o: des_locl.h ofb64enc.c
264ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
265ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
266ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
267ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
268ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
269ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c
270pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
271pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
272pcbc_enc.o: ../../include/openssl/opensslconf.h
273pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
274pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
275pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
276pcbc_enc.o: des_locl.h pcbc_enc.c
277qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
278qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
279qud_cksm.o: ../../include/openssl/opensslconf.h
280qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
281qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
282qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
283qud_cksm.o: des_locl.h qud_cksm.c
284rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
285rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
286rand_key.o: ../../include/openssl/opensslconf.h
287rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
288rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
289rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
290rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
291rand_key.o: rand_key.c
292read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
293read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
294read2pwd.o: ../../include/openssl/opensslconf.h
295read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
296read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
297read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
298read2pwd.o: read2pwd.c
299rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
300rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
301rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
302rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
303rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
304rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h
305rpc_enc.o: rpc_enc.c
306set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
307set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
308set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
309set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
310set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
311set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c
312str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
313str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
314str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
315str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
316str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
317str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c
318xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
319xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
320xcbc_enc.o: ../../include/openssl/opensslconf.h
321xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
322xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
323xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
324xcbc_enc.o: des_locl.h xcbc_enc.c