diff options
| author | djm <> | 2005-04-29 05:37:32 +0000 |
|---|---|---|
| committer | djm <> | 2005-04-29 05:37:32 +0000 |
| commit | 411d389aff1d4ca3241d9d89edb4110c1cf05035 (patch) | |
| tree | 26769b736e0df1e96e60b36db36c918dd42746be /src/lib/libcrypto/bn | |
| parent | f958f59ed2b1b93fadf25a4c8bd7d1f3c655a229 (diff) | |
| parent | 588543a0946f1dbf0f1dd5135f8f6447486dc183 (diff) | |
| download | openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.tar.gz openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.tar.bz2 openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.zip | |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/bn')
| -rw-r--r-- | src/lib/libcrypto/bn/Makefile | 331 |
1 files changed, 331 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bn/Makefile b/src/lib/libcrypto/bn/Makefile new file mode 100644 index 0000000000..f693d35d87 --- /dev/null +++ b/src/lib/libcrypto/bn/Makefile | |||
| @@ -0,0 +1,331 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/bn/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= bn | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 10 | CFLAG=-g | ||
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 13 | INSTALLTOP=/usr/local/ssl | ||
| 14 | MAKEDEPPROG= makedepend | ||
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 16 | MAKEFILE= Makefile | ||
| 17 | AR= ar r | ||
| 18 | |||
| 19 | BN_ASM= bn_asm.o | ||
| 20 | # or use | ||
| 21 | #BN_ASM= bn86-elf.o | ||
| 22 | |||
| 23 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 25 | |||
| 26 | GENERAL=Makefile | ||
| 27 | TEST=bntest.c exptest.c | ||
| 28 | APPS= | ||
| 29 | |||
| 30 | LIB=$(TOP)/libcrypto.a | ||
| 31 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ | ||
| 32 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ | ||
| 33 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ | ||
| 34 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c | ||
| 35 | |||
| 36 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
| 37 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
| 38 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
| 39 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o | ||
| 40 | |||
| 41 | SRC= $(LIBSRC) | ||
| 42 | |||
| 43 | EXHEADER= bn.h | ||
| 44 | HEADER= bn_lcl.h bn_prime.h $(EXHEADER) | ||
| 45 | |||
| 46 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 47 | |||
| 48 | top: | ||
| 49 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 50 | |||
| 51 | all: lib | ||
| 52 | |||
| 53 | bn_prime.h: bn_prime.pl | ||
| 54 | $(PERL) bn_prime.pl >bn_prime.h | ||
| 55 | |||
| 56 | divtest: divtest.c ../../libcrypto.a | ||
| 57 | cc -I../../include divtest.c -o divtest ../../libcrypto.a | ||
| 58 | |||
| 59 | bnbug: bnbug.c ../../libcrypto.a top | ||
| 60 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
| 61 | |||
| 62 | lib: $(LIBOBJ) | ||
| 63 | $(AR) $(LIB) $(LIBOBJ) | ||
| 64 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 65 | @touch lib | ||
| 66 | |||
| 67 | # elf | ||
| 68 | asm/bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
| 69 | (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > bn86-elf.s) | ||
| 70 | |||
| 71 | asm/co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
| 72 | (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > co86-elf.s) | ||
| 73 | |||
| 74 | # a.out | ||
| 75 | asm/bn86-out.o: asm/bn86unix.cpp | ||
| 76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | ||
| 77 | |||
| 78 | asm/co86-out.o: asm/co86unix.cpp | ||
| 79 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | ||
| 80 | |||
| 81 | # bsdi | ||
| 82 | asm/bn86bsdi.o: asm/bn86unix.cpp | ||
| 83 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o | ||
| 84 | |||
| 85 | asm/co86bsdi.o: asm/co86unix.cpp | ||
| 86 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | ||
| 87 | |||
| 88 | asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl | ||
| 89 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | ||
| 90 | |||
| 91 | asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl | ||
| 92 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | ||
| 93 | |||
| 94 | asm/sparcv8.o: asm/sparcv8.S | ||
| 95 | |||
| 96 | asm/sparcv8plus.o: asm/sparcv8plus.S | ||
| 97 | |||
| 98 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
| 99 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
| 100 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 101 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 102 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 103 | # or upgrade it. | ||
| 104 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | ||
| 105 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | ||
| 106 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | ||
| 107 | |||
| 108 | |||
| 109 | asm/ia64.o: asm/ia64.S | ||
| 110 | |||
| 111 | # Some compiler drivers (most notably HP-UX and Intel C++) don't | ||
| 112 | # understand .S extension:-( I wish I could pipe output from cc -E, | ||
| 113 | # but it's too compiler driver/ABI dependent to cover with a single | ||
| 114 | # rule... <appro@fy.chalmers.se> | ||
| 115 | asm/ia64-cpp.o: asm/ia64.S | ||
| 116 | $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ | ||
| 117 | $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ | ||
| 118 | rm -f /tmp/ia64.$$$$.s | ||
| 119 | |||
| 120 | asm/x86_64-gcc.o: asm/x86_64-gcc.c | ||
| 121 | $(CC) $(ASFLAGS) -c -o $@ $< | ||
| 122 | |||
| 123 | asm/pa-risc2W.o: asm/pa-risc2W.s | ||
| 124 | /usr/ccs/bin/as -o asm/pa-risc2W.o asm/pa-risc2W.s | ||
| 125 | |||
| 126 | asm/linux_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
| 127 | asm/linux_ppc64.s: asm/ppc.pl; $(PERL) $< $@ | ||
| 128 | asm/aix_ppc32.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
| 129 | asm/aix_ppc64.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
| 130 | asm/osx_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
| 131 | |||
| 132 | files: | ||
| 133 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 134 | |||
| 135 | links: | ||
| 136 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 137 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 138 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 139 | |||
| 140 | install: | ||
| 141 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 142 | do \ | ||
| 143 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 144 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 145 | done; | ||
| 146 | |||
| 147 | exptest: | ||
| 148 | rm -f exptest | ||
| 149 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | ||
| 150 | |||
| 151 | div: | ||
| 152 | rm -f a.out | ||
| 153 | gcc -I.. -g div.c ../../libcrypto.a | ||
| 154 | |||
| 155 | tags: | ||
| 156 | ctags $(SRC) | ||
| 157 | |||
| 158 | tests: | ||
| 159 | |||
| 160 | lint: | ||
| 161 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 162 | |||
| 163 | depend: | ||
| 164 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 165 | |||
| 166 | dclean: | ||
| 167 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 168 | mv -f Makefile.new $(MAKEFILE) | ||
| 169 | |||
| 170 | clean: | ||
| 171 | rm -f asm/co86unix.cpp asm/bn86unix.cpp asm/*-elf.* *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s | ||
| 172 | |||
| 173 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 174 | |||
| 175 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 176 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 177 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 178 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 179 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 180 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 181 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h | ||
| 182 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 183 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 184 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 185 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 186 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 187 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h | ||
| 189 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 190 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 191 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 192 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 193 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 194 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 195 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h | ||
| 196 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 197 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 198 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 199 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 200 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 201 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 202 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h | ||
| 203 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 204 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 205 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 206 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 207 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 208 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 209 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h | ||
| 210 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 211 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 212 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 213 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 214 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 215 | bn_err.o: ../../include/openssl/symhacks.h bn_err.c | ||
| 216 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 217 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 218 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 219 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 220 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 221 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 222 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h | ||
| 223 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 224 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 225 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 226 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 227 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 228 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 229 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h | ||
| 230 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 231 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 232 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 233 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 234 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 235 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 236 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h | ||
| 237 | bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 238 | bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h | ||
| 239 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 240 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 241 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 242 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 243 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 244 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 245 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c | ||
| 246 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 247 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 248 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 249 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 250 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 251 | bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 252 | bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c | ||
| 253 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 254 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 255 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 256 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 257 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 258 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 259 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c | ||
| 260 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 261 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 262 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 263 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 264 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 265 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 266 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c | ||
| 267 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 268 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 269 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 270 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 271 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 272 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 273 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c | ||
| 274 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 275 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 276 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 277 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 278 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 279 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 280 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 281 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
| 282 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 283 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 284 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 285 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 286 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 287 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 288 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c | ||
| 289 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 290 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 291 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 292 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 293 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 294 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 295 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 296 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
| 297 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 298 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 299 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 300 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 301 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 302 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 303 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c | ||
| 304 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 305 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 306 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 307 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 308 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 309 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 310 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c | ||
| 311 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 312 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 313 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 314 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 315 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 316 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 317 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c | ||
| 318 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 319 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 320 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 321 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 322 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 323 | bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 324 | bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
| 325 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 326 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 327 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 328 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 329 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 330 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 331 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c | ||
