diff options
| author | cvs2svn <admin@example.com> | 2002-09-05 12:51:53 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 2002-09-05 12:51:53 +0000 |
| commit | d6e0927a98d2b936d171fcdf2ac1c56b694a3705 (patch) | |
| tree | c76a93032161bb7aba600dc59798f7100c8ff8eb /src/lib/libcrypto/des | |
| parent | 5514995a9d5ed91db089875adb509c7781357c0e (diff) | |
| download | openbsd-OPENSSL_0_9_7_BETA1.tar.gz openbsd-OPENSSL_0_9_7_BETA1.tar.bz2 openbsd-OPENSSL_0_9_7_BETA1.zip | |
This commit was manufactured by cvs2git to create tag 'OPENSSL_0_9_7_BETA1'.OPENSSL_0_9_7_BETA1
Diffstat (limited to 'src/lib/libcrypto/des')
| -rw-r--r-- | src/lib/libcrypto/des/FILES | 96 | ||||
| -rw-r--r-- | src/lib/libcrypto/des/Makefile.ssl | 325 |
2 files changed, 421 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 */ | ||
| 2 | COPYRIGHT - Copyright info. | ||
| 3 | MODES.DES - A description of the features of the different modes of DES. | ||
| 4 | FILES - This file. | ||
| 5 | INSTALL - How to make things compile. | ||
| 6 | Imakefile - For use with kerberos. | ||
| 7 | README - What this package is. | ||
| 8 | VERSION - Which version this is and what was changed. | ||
| 9 | KERBEROS - Kerberos version 4 notes. | ||
| 10 | Makefile.PL - An old makefile to build with perl5, not current. | ||
| 11 | Makefile.ssl - The SSLeay makefile | ||
| 12 | Makefile.uni - The normal unix makefile. | ||
| 13 | GNUmakefile - The makefile for use with glibc. | ||
| 14 | makefile.bc - A Borland C makefile | ||
| 15 | times - Some outputs from 'speed' on some machines. | ||
| 16 | vms.com - For use when compiling under VMS | ||
| 17 | |||
| 18 | /* My SunOS des(1) replacement */ | ||
| 19 | des.c - des(1) source code. | ||
| 20 | des.man - des(1) manual. | ||
| 21 | |||
| 22 | /* Testing and timing programs. */ | ||
| 23 | destest.c - Source for libdes.a test program. | ||
| 24 | speed.c - Source for libdes.a timing program. | ||
| 25 | rpw.c - Source for libdes.a testing password reading routines. | ||
| 26 | |||
| 27 | /* libdes.a source code */ | ||
| 28 | des_crypt.man - libdes.a manual page. | ||
| 29 | des.h - Public libdes.a header file. | ||
| 30 | ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code. | ||
| 31 | ecb3_enc.c - des_ecb3_encrypt() source. | ||
| 32 | cbc_ckm.c - des_cbc_cksum() source. | ||
| 33 | cbc_enc.c - des_cbc_encrypt() source. | ||
| 34 | ncbc_enc.c - des_cbc_encrypt() that is 'normal' in that it copies | ||
| 35 | the new iv values back in the passed iv vector. | ||
| 36 | ede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES. | ||
| 37 | cbc3_enc.c - des_3cbc_encrypt() source, don't use this function. | ||
| 38 | cfb_enc.c - des_cfb_encrypt() source. | ||
| 39 | cfb64enc.c - des_cfb64_encrypt() cfb in 64 bit mode but setup to be | ||
| 40 | used as a stream cipher. | ||
| 41 | cfb64ede.c - des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be | ||
| 42 | used as a stream cipher and using triple DES. | ||
| 43 | ofb_enc.c - des_cfb_encrypt() source. | ||
| 44 | ofb64_enc.c - des_ofb_encrypt() ofb in 64 bit mode but setup to be | ||
| 45 | used as a stream cipher. | ||
| 46 | ofb64ede.c - des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be | ||
| 47 | used as a stream cipher and using triple DES. | ||
| 48 | enc_read.c - des_enc_read() source. | ||
| 49 | enc_writ.c - des_enc_write() source. | ||
| 50 | pcbc_enc.c - des_pcbc_encrypt() source. | ||
| 51 | qud_cksm.c - quad_cksum() source. | ||
| 52 | rand_key.c - des_random_key() source. | ||
| 53 | read_pwd.c - Source for des_read_password() plus related functions. | ||
| 54 | set_key.c - Source for des_set_key(). | ||
| 55 | str2key.c - Covert a string of any length into a key. | ||
| 56 | fcrypt.c - A small, fast version of crypt(3). | ||
| 57 | des_locl.h - Internal libdes.a header file. | ||
| 58 | podd.h - Odd parity tables - used in des_set_key(). | ||
| 59 | sk.h - Lookup tables used in des_set_key(). | ||
| 60 | spr.h - What is left of the S tables - used in ecb_encrypt(). | ||
| 61 | des_ver.h - header file for the external definition of the | ||
| 62 | version string. | ||
| 63 | des.doc - SSLeay documentation for the library. | ||
| 64 | |||
| 65 | /* The perl scripts - you can ignore these files they are only | ||
| 66 | * included for the curious */ | ||
| 67 | des.pl - des in perl anyone? des_set_key and des_ecb_encrypt | ||
| 68 | both done in a perl library. | ||
| 69 | testdes.pl - Testing program for des.pl | ||
| 70 | doIP - Perl script used to develop IP xor/shift code. | ||
| 71 | doPC1 - Perl script used to develop PC1 xor/shift code. | ||
| 72 | doPC2 - Generates sk.h. | ||
| 73 | PC1 - Output of doPC1 should be the same as output from PC1. | ||
| 74 | PC2 - used in development of doPC2. | ||
| 75 | shifts.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. */ | ||
| 79 | DES.pm | ||
| 80 | DES.pod | ||
| 81 | DES.xs | ||
| 82 | t | ||
| 83 | typemap | ||
| 84 | |||
| 85 | /* The following are for use with sun RPC implementaions. */ | ||
| 86 | rpc_des.h | ||
| 87 | rpc_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). */ | ||
| 93 | supp.c | ||
| 94 | new_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..c1080b000f --- /dev/null +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
| @@ -0,0 +1,325 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/des/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= des | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES=-I$(TOP) -I../../include | ||
| 10 | CFLAG=-g | ||
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 13 | INSTALLTOP=/usr/local/ssl | ||
| 14 | MAKE= make -f Makefile.ssl | ||
| 15 | MAKEDEPPROG= makedepend | ||
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 17 | MAKEFILE= Makefile.ssl | ||
| 18 | AR= ar r | ||
| 19 | RANLIB= ranlib | ||
| 20 | DES_ENC= des_enc.o fcrypt_b.o | ||
| 21 | # or use | ||
| 22 | #DES_ENC= dx86-elf.o yx86-elf.o | ||
| 23 | |||
| 24 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 25 | |||
| 26 | GENERAL=Makefile | ||
| 27 | TEST=destest.c | ||
| 28 | APPS= | ||
| 29 | |||
| 30 | LIB=$(TOP)/libcrypto.a | ||
| 31 | LIBSRC= 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 | |||
| 40 | LIBOBJ= 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 | |||
| 48 | SRC= $(LIBSRC) | ||
| 49 | |||
| 50 | EXHEADER= des.h des_old.h | ||
| 51 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) | ||
| 52 | |||
| 53 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 54 | |||
| 55 | top: | ||
| 56 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 57 | |||
| 58 | all: lib | ||
| 59 | |||
| 60 | lib: $(LIBOBJ) | ||
| 61 | $(AR) $(LIB) $(LIBOBJ) | ||
| 62 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 63 | @touch lib | ||
| 64 | |||
| 65 | des: des.o cbc3_enc.o lib | ||
| 66 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) | ||
| 67 | |||
| 68 | # elf | ||
| 69 | asm/dx86-elf.o: asm/dx86unix.cpp | ||
| 70 | $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o | ||
| 71 | |||
| 72 | asm/yx86-elf.o: asm/yx86unix.cpp | ||
| 73 | $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o | ||
| 74 | |||
| 75 | # solaris | ||
| 76 | asm/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 | |||
| 81 | asm/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 | ||
| 87 | asm/dx86-out.o: asm/dx86unix.cpp | ||
| 88 | $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o | ||
| 89 | |||
| 90 | asm/yx86-out.o: asm/yx86unix.cpp | ||
| 91 | $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o | ||
| 92 | |||
| 93 | # bsdi | ||
| 94 | asm/dx86bsdi.o: asm/dx86unix.cpp | ||
| 95 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o | ||
| 96 | |||
| 97 | asm/yx86bsdi.o: asm/yx86unix.cpp | ||
| 98 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o | ||
| 99 | |||
| 100 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 101 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) | ||
| 102 | |||
| 103 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl | ||
| 104 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) | ||
| 105 | |||
| 106 | files: | ||
| 107 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 108 | |||
| 109 | links: | ||
| 110 | @$(TOP)/util/point.sh Makefile.ssl Makefile | ||
| 111 | @$(TOP)/util/point.sh ../../perlasm asm/perlasm | ||
| 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 115 | |||
| 116 | install: installs | ||
| 117 | |||
| 118 | installs: | ||
| 119 | @for i in $(EXHEADER) ; \ | ||
| 120 | do \ | ||
| 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 123 | done; | ||
| 124 | |||
| 125 | tags: | ||
| 126 | ctags $(SRC) | ||
| 127 | |||
| 128 | tests: | ||
| 129 | |||
| 130 | lint: | ||
| 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 132 | |||
| 133 | depend: | ||
| 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | ||
| 135 | |||
| 136 | dclean: | ||
| 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 138 | mv -f Makefile.new $(MAKEFILE) | ||
| 139 | |||
| 140 | clean: | ||
| 141 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff | ||
| 142 | |||
| 143 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 144 | |||
| 145 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 146 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 147 | cbc_cksm.o: ../../include/openssl/opensslconf.h | ||
| 148 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 149 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 150 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 151 | cbc_cksm.o: cbc_cksm.c des_locl.h | ||
| 152 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 153 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 154 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 155 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 157 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | ||
| 158 | cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.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 | ||
| 208 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 209 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 210 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 211 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h | ||
| 212 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 213 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 214 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | ||
| 215 | ede_cbcm_enc.o: ../../include/openssl/opensslv.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 | ||
| 224 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 225 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 226 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | ||
| 228 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 229 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 230 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 231 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 232 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 233 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 234 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 235 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 236 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 237 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | ||
| 238 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 239 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 240 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 241 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 243 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | ||
| 244 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 245 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 246 | fcrypt_b.o: ../../include/openssl/opensslconf.h | ||
| 247 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 248 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 250 | fcrypt_b.o: des_locl.h fcrypt_b.c | ||
| 251 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 252 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 253 | ofb64ede.o: ../../include/openssl/opensslconf.h | ||
| 254 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 255 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 257 | ofb64ede.o: des_locl.h ofb64ede.c | ||
| 258 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 259 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 260 | ofb64enc.o: ../../include/openssl/opensslconf.h | ||
| 261 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 262 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 263 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 264 | ofb64enc.o: des_locl.h ofb64enc.c | ||
| 265 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 266 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 267 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.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 | ||
