diff options
| author | djm <> | 2005-04-29 05:37:32 +0000 |
|---|---|---|
| committer | djm <> | 2005-04-29 05:37:32 +0000 |
| commit | 588543a0946f1dbf0f1dd5135f8f6447486dc183 (patch) | |
| tree | f74e14f98abfec33221f0f2e15cc88a34a3df7e5 /src/lib/libcrypto/engine | |
| parent | 00b426069b0dfa8f0d9b87308646e9684f45c515 (diff) | |
| download | openbsd-588543a0946f1dbf0f1dd5135f8f6447486dc183.tar.gz openbsd-588543a0946f1dbf0f1dd5135f8f6447486dc183.tar.bz2 openbsd-588543a0946f1dbf0f1dd5135f8f6447486dc183.zip | |
import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@
Diffstat (limited to 'src/lib/libcrypto/engine')
| -rw-r--r-- | src/lib/libcrypto/engine/Makefile | 536 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/hw_cryptodev.c | 12 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/vendor_defns/sureware.h | 2 |
3 files changed, 545 insertions, 5 deletions
diff --git a/src/lib/libcrypto/engine/Makefile b/src/lib/libcrypto/engine/Makefile new file mode 100644 index 0000000000..38f83f1654 --- /dev/null +++ b/src/lib/libcrypto/engine/Makefile | |||
| @@ -0,0 +1,536 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/crypto/engine/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= engine | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 9 | CFLAG=-g | ||
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 12 | INSTALLTOP=/usr/local/ssl | ||
| 13 | MAKEDEPPROG= makedepend | ||
| 14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 15 | MAKEFILE= Makefile | ||
| 16 | AR= ar r | ||
| 17 | |||
| 18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 19 | |||
| 20 | GENERAL=Makefile | ||
| 21 | TEST= enginetest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ | ||
| 26 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ | ||
| 27 | tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \ | ||
| 28 | eng_openssl.c eng_dyn.c eng_cnf.c \ | ||
| 29 | hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \ | ||
| 30 | hw_cryptodev.c hw_aep.c hw_sureware.c hw_4758_cca.c | ||
| 31 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | ||
| 32 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | ||
| 33 | tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \ | ||
| 34 | eng_openssl.o eng_dyn.o eng_cnf.o \ | ||
| 35 | hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \ | ||
| 36 | hw_cryptodev.o hw_aep.o hw_sureware.o hw_4758_cca.o | ||
| 37 | |||
| 38 | SRC= $(LIBSRC) | ||
| 39 | |||
| 40 | EXHEADER= engine.h | ||
| 41 | HEADER= $(EXHEADER) | ||
| 42 | |||
| 43 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 44 | |||
| 45 | top: | ||
| 46 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 47 | |||
| 48 | all: lib | ||
| 49 | |||
| 50 | lib: $(LIBOBJ) | ||
| 51 | $(AR) $(LIB) $(LIBOBJ) | ||
| 52 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 53 | @touch lib | ||
| 54 | |||
| 55 | files: | ||
| 56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 57 | |||
| 58 | links: | ||
| 59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 62 | |||
| 63 | install: | ||
| 64 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 65 | do \ | ||
| 66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 68 | done; | ||
| 69 | |||
| 70 | tags: | ||
| 71 | ctags $(SRC) | ||
| 72 | |||
| 73 | errors: | ||
| 74 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | ||
| 75 | -nostatic -staticloader -write hw_*.c | ||
| 76 | |||
| 77 | tests: | ||
| 78 | |||
| 79 | lint: | ||
| 80 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 81 | |||
| 82 | depend: | ||
| 83 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 84 | |||
| 85 | dclean: | ||
| 86 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 87 | mv -f Makefile.new $(MAKEFILE) | ||
| 88 | |||
| 89 | clean: | ||
| 90 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 91 | |||
| 92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 93 | |||
| 94 | eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 95 | eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 96 | eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 97 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 98 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 99 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 100 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 101 | eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 102 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h | ||
| 104 | eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 107 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 108 | eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 109 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 110 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 111 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 113 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 115 | eng_cnf.o: ../cryptlib.h eng_cnf.c | ||
| 116 | eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 118 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 119 | eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 120 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 121 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 122 | eng_ctrl.o: ../../include/openssl/opensslconf.h | ||
| 123 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 124 | eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 125 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 126 | eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 127 | eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h | ||
| 128 | eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 132 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 133 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 134 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 135 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 137 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 138 | eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 139 | eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h | ||
| 140 | eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 141 | eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 142 | eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 143 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 144 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 145 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 146 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 147 | eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 148 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 149 | eng_err.o: ../../include/openssl/ui.h eng_err.c | ||
| 150 | eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 151 | eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 152 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 153 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 154 | eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 155 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 156 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 158 | eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 159 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 160 | eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 161 | eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h | ||
| 162 | eng_init.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 163 | eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 164 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 165 | eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 166 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 167 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 168 | eng_init.o: ../../include/openssl/opensslconf.h | ||
| 169 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 170 | eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 171 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 172 | eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 173 | eng_init.o: ../cryptlib.h eng_init.c eng_int.h | ||
| 174 | eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 175 | eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 176 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 177 | eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 178 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 179 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 180 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 181 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 182 | eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 183 | eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 184 | eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c | ||
| 185 | eng_list.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 186 | eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 187 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 188 | eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 189 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 190 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 191 | eng_list.o: ../../include/openssl/opensslconf.h | ||
| 192 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 193 | eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 194 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 195 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 196 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | ||
| 197 | eng_openssl.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 198 | eng_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 199 | eng_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 200 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 201 | eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 202 | eng_openssl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 203 | eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 204 | eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 205 | eng_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | eng_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | eng_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | eng_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 209 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 210 | eng_openssl.o: ../../include/openssl/opensslconf.h | ||
| 211 | eng_openssl.o: ../../include/openssl/opensslv.h | ||
| 212 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 213 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 214 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 215 | eng_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 216 | eng_openssl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 217 | eng_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 218 | eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 219 | eng_openssl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 220 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 221 | eng_openssl.o: ../cryptlib.h eng_openssl.c | ||
| 222 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 223 | eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 224 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 225 | eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 226 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 227 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 228 | eng_pkey.o: ../../include/openssl/opensslconf.h | ||
| 229 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 230 | eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 231 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 232 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 233 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | ||
| 234 | eng_table.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 235 | eng_table.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 236 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 237 | eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 238 | eng_table.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 239 | eng_table.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 240 | eng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 241 | eng_table.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 242 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 243 | eng_table.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 244 | eng_table.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 245 | eng_table.o: ../../include/openssl/objects.h | ||
| 246 | eng_table.o: ../../include/openssl/opensslconf.h | ||
| 247 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 248 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 249 | eng_table.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 250 | eng_table.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 251 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 252 | eng_table.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 253 | eng_table.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 254 | eng_table.o: eng_int.h eng_table.c | ||
| 255 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 256 | hw_4758_cca.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 257 | hw_4758_cca.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 258 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 259 | hw_4758_cca.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 260 | hw_4758_cca.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 261 | hw_4758_cca.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 262 | hw_4758_cca.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 263 | hw_4758_cca.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 264 | hw_4758_cca.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 265 | hw_4758_cca.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 266 | hw_4758_cca.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 267 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 268 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | ||
| 269 | hw_4758_cca.o: ../../include/openssl/opensslv.h | ||
| 270 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 271 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 272 | hw_4758_cca.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 273 | hw_4758_cca.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 274 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 275 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 276 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 277 | hw_4758_cca.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 278 | hw_4758_cca.o: ../cryptlib.h hw_4758_cca.c hw_4758_cca_err.c hw_4758_cca_err.h | ||
| 279 | hw_4758_cca.o: vendor_defns/hw_4758_cca.h | ||
| 280 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 281 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 282 | hw_aep.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 283 | hw_aep.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 284 | hw_aep.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 285 | hw_aep.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 286 | hw_aep.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 287 | hw_aep.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 288 | hw_aep.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 289 | hw_aep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 290 | hw_aep.o: ../../include/openssl/ui.h hw_aep.c hw_aep_err.c hw_aep_err.h | ||
| 291 | hw_aep.o: vendor_defns/aep.h | ||
| 292 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 293 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 294 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 295 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 296 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 297 | hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 298 | hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 299 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 300 | hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 301 | hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 302 | hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 303 | hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h | ||
| 304 | hw_atalla.o: vendor_defns/atalla.h | ||
| 305 | hw_cryptodev.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 306 | hw_cryptodev.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 307 | hw_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 308 | hw_cryptodev.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 309 | hw_cryptodev.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 310 | hw_cryptodev.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 311 | hw_cryptodev.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 312 | hw_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 313 | hw_cryptodev.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 314 | hw_cryptodev.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 315 | hw_cryptodev.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 316 | hw_cryptodev.o: ../../include/openssl/objects.h | ||
| 317 | hw_cryptodev.o: ../../include/openssl/opensslconf.h | ||
| 318 | hw_cryptodev.o: ../../include/openssl/opensslv.h | ||
| 319 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 320 | hw_cryptodev.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 321 | hw_cryptodev.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 322 | hw_cryptodev.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 323 | hw_cryptodev.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 324 | hw_cryptodev.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 325 | hw_cryptodev.o: ../../include/openssl/ui_compat.h hw_cryptodev.c | ||
| 326 | hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 327 | hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 328 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 329 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 330 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 331 | hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 332 | hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 333 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 334 | hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 335 | hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 336 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 337 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h | ||
| 338 | hw_cswift.o: vendor_defns/cswift.h | ||
| 339 | hw_ncipher.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 340 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 341 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 342 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 343 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 344 | hw_ncipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 345 | hw_ncipher.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 346 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 347 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 348 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 349 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 350 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 351 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 352 | hw_ncipher.o: ../../include/openssl/opensslconf.h | ||
| 353 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 354 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 355 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 356 | hw_ncipher.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 357 | hw_ncipher.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 358 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 359 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 360 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 361 | hw_ncipher.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 362 | hw_ncipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ncipher.c | ||
| 363 | hw_ncipher.o: hw_ncipher_err.c hw_ncipher_err.h vendor_defns/hwcryptohook.h | ||
| 364 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 365 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 366 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 367 | hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 368 | hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 369 | hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 370 | hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 371 | hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 372 | hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 373 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 374 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 375 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | ||
| 376 | hw_sureware.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 377 | hw_sureware.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 378 | hw_sureware.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 379 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 380 | hw_sureware.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 381 | hw_sureware.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 382 | hw_sureware.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 383 | hw_sureware.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 384 | hw_sureware.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 385 | hw_sureware.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 386 | hw_sureware.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 387 | hw_sureware.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 388 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 389 | hw_sureware.o: ../../include/openssl/opensslconf.h | ||
| 390 | hw_sureware.o: ../../include/openssl/opensslv.h | ||
| 391 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 392 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 393 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 394 | hw_sureware.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 395 | hw_sureware.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 396 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 397 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 398 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 399 | hw_sureware.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 400 | hw_sureware.o: ../cryptlib.h eng_int.h engine.h hw_sureware.c hw_sureware_err.c | ||
| 401 | hw_sureware.o: hw_sureware_err.h vendor_defns/sureware.h | ||
| 402 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 403 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 404 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 405 | hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 406 | hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 407 | hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 408 | hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 409 | hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 410 | hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 411 | hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 412 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 413 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | ||
| 414 | hw_ubsec.o: vendor_defns/hw_ubsec.h | ||
| 415 | tb_cipher.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 416 | tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 417 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 418 | tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 419 | tb_cipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 420 | tb_cipher.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 421 | tb_cipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 422 | tb_cipher.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 423 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 424 | tb_cipher.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 425 | tb_cipher.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 426 | tb_cipher.o: ../../include/openssl/objects.h | ||
| 427 | tb_cipher.o: ../../include/openssl/opensslconf.h | ||
| 428 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 429 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 430 | tb_cipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 431 | tb_cipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 432 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 433 | tb_cipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 434 | tb_cipher.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 435 | tb_cipher.o: eng_int.h tb_cipher.c | ||
| 436 | tb_dh.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 437 | tb_dh.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 438 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 439 | tb_dh.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 440 | tb_dh.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 441 | tb_dh.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 442 | tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 443 | tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 444 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 445 | tb_dh.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 446 | tb_dh.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 447 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 448 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 449 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 450 | tb_dh.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 451 | tb_dh.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 452 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 453 | tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 454 | tb_dh.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h eng_int.h | ||
| 455 | tb_dh.o: tb_dh.c | ||
| 456 | tb_digest.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 457 | tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 458 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 459 | tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 460 | tb_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 461 | tb_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 462 | tb_digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 463 | tb_digest.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 464 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 465 | tb_digest.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 466 | tb_digest.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 467 | tb_digest.o: ../../include/openssl/objects.h | ||
| 468 | tb_digest.o: ../../include/openssl/opensslconf.h | ||
| 469 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 470 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 471 | tb_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 472 | tb_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 473 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 474 | tb_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 475 | tb_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 476 | tb_digest.o: eng_int.h tb_digest.c | ||
| 477 | tb_dsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 478 | tb_dsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 479 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 480 | tb_dsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 481 | tb_dsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 482 | tb_dsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 483 | tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 484 | tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 485 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 486 | tb_dsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 487 | tb_dsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 488 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 489 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 490 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 491 | tb_dsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 492 | tb_dsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 493 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 494 | tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 495 | tb_dsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 496 | tb_dsa.o: eng_int.h tb_dsa.c | ||
| 497 | tb_rand.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 498 | tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 499 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 500 | tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 501 | tb_rand.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 502 | tb_rand.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 503 | tb_rand.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 504 | tb_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 505 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 506 | tb_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 507 | tb_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 508 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 509 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 510 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 511 | tb_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 512 | tb_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 513 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 514 | tb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 515 | tb_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 516 | tb_rand.o: eng_int.h tb_rand.c | ||
| 517 | tb_rsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 518 | tb_rsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 519 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 520 | tb_rsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 521 | tb_rsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 522 | tb_rsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 523 | tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 524 | tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 525 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 526 | tb_rsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 527 | tb_rsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 528 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 529 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 530 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 531 | tb_rsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 532 | tb_rsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 533 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 534 | tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 535 | tb_rsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 536 | tb_rsa.o: eng_int.h tb_rsa.c | ||
diff --git a/src/lib/libcrypto/engine/hw_cryptodev.c b/src/lib/libcrypto/engine/hw_cryptodev.c index 467c0daa1b..3e7fff1c1e 100644 --- a/src/lib/libcrypto/engine/hw_cryptodev.c +++ b/src/lib/libcrypto/engine/hw_cryptodev.c | |||
| @@ -77,7 +77,7 @@ static int cryptodev_max_iv(int cipher); | |||
| 77 | static int cryptodev_key_length_valid(int cipher, int len); | 77 | static int cryptodev_key_length_valid(int cipher, int len); |
| 78 | static int cipher_nid_to_cryptodev(int nid); | 78 | static int cipher_nid_to_cryptodev(int nid); |
| 79 | static int get_cryptodev_ciphers(const int **cnids); | 79 | static int get_cryptodev_ciphers(const int **cnids); |
| 80 | static int get_cryptodev_digests(const int **cnids); | 80 | /*static int get_cryptodev_digests(const int **cnids);*/ |
| 81 | static int cryptodev_usable_ciphers(const int **nids); | 81 | static int cryptodev_usable_ciphers(const int **nids); |
| 82 | static int cryptodev_usable_digests(const int **nids); | 82 | static int cryptodev_usable_digests(const int **nids); |
| 83 | static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | 83 | static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
| @@ -137,6 +137,7 @@ static struct { | |||
| 137 | { 0, NID_undef, 0, 0, }, | 137 | { 0, NID_undef, 0, 0, }, |
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | #if 0 /* UNUSED */ | ||
| 140 | static struct { | 141 | static struct { |
| 141 | int id; | 142 | int id; |
| 142 | int nid; | 143 | int nid; |
| @@ -149,6 +150,7 @@ static struct { | |||
| 149 | { CRYPTO_SHA1, NID_undef, }, | 150 | { CRYPTO_SHA1, NID_undef, }, |
| 150 | { 0, NID_undef, }, | 151 | { 0, NID_undef, }, |
| 151 | }; | 152 | }; |
| 153 | #endif | ||
| 152 | 154 | ||
| 153 | /* | 155 | /* |
| 154 | * Return a fd if /dev/crypto seems usable, 0 otherwise. | 156 | * Return a fd if /dev/crypto seems usable, 0 otherwise. |
| @@ -258,7 +260,7 @@ get_cryptodev_ciphers(const int **cnids) | |||
| 258 | int fd, i, count = 0; | 260 | int fd, i, count = 0; |
| 259 | 261 | ||
| 260 | if ((fd = get_dev_crypto()) < 0) { | 262 | if ((fd = get_dev_crypto()) < 0) { |
| 261 | *nids = NULL; | 263 | *cnids = NULL; |
| 262 | return (0); | 264 | return (0); |
| 263 | } | 265 | } |
| 264 | memset(&sess, 0, sizeof(sess)); | 266 | memset(&sess, 0, sizeof(sess)); |
| @@ -289,6 +291,7 @@ get_cryptodev_ciphers(const int **cnids) | |||
| 289 | * returning them here is harmless, as long as we return NULL | 291 | * returning them here is harmless, as long as we return NULL |
| 290 | * when asked for a handler in the cryptodev_engine_digests routine | 292 | * when asked for a handler in the cryptodev_engine_digests routine |
| 291 | */ | 293 | */ |
| 294 | #if 0 /* UNUSED */ | ||
| 292 | static int | 295 | static int |
| 293 | get_cryptodev_digests(const int **cnids) | 296 | get_cryptodev_digests(const int **cnids) |
| 294 | { | 297 | { |
| @@ -297,7 +300,7 @@ get_cryptodev_digests(const int **cnids) | |||
| 297 | int fd, i, count = 0; | 300 | int fd, i, count = 0; |
| 298 | 301 | ||
| 299 | if ((fd = get_dev_crypto()) < 0) { | 302 | if ((fd = get_dev_crypto()) < 0) { |
| 300 | *nids = NULL; | 303 | *cnids = NULL; |
| 301 | return (0); | 304 | return (0); |
| 302 | } | 305 | } |
| 303 | memset(&sess, 0, sizeof(sess)); | 306 | memset(&sess, 0, sizeof(sess)); |
| @@ -318,6 +321,7 @@ get_cryptodev_digests(const int **cnids) | |||
| 318 | *cnids = NULL; | 321 | *cnids = NULL; |
| 319 | return (count); | 322 | return (count); |
| 320 | } | 323 | } |
| 324 | #endif | ||
| 321 | 325 | ||
| 322 | /* | 326 | /* |
| 323 | * Find the useable ciphers|digests from dev/crypto - this is the first | 327 | * Find the useable ciphers|digests from dev/crypto - this is the first |
| @@ -623,7 +627,7 @@ static int | |||
| 623 | bn2crparam(const BIGNUM *a, struct crparam *crp) | 627 | bn2crparam(const BIGNUM *a, struct crparam *crp) |
| 624 | { | 628 | { |
| 625 | int i, j, k; | 629 | int i, j, k; |
| 626 | ssize_t words, bytes, bits; | 630 | ssize_t bytes, bits; |
| 627 | u_char *b; | 631 | u_char *b; |
| 628 | 632 | ||
| 629 | crp->crp_p = NULL; | 633 | crp->crp_p = NULL; |
diff --git a/src/lib/libcrypto/engine/vendor_defns/sureware.h b/src/lib/libcrypto/engine/vendor_defns/sureware.h index 1d3789219d..4bc22027f9 100644 --- a/src/lib/libcrypto/engine/vendor_defns/sureware.h +++ b/src/lib/libcrypto/engine/vendor_defns/sureware.h | |||
| @@ -232,7 +232,7 @@ extern SW_EXPORT SureWareHook_Dsa_Sign_t SureWareHook_Dsa_Sign; | |||
| 232 | * mlen,elen and dlen are all multiple of sizeof(unsigned long) | 232 | * mlen,elen and dlen are all multiple of sizeof(unsigned long) |
| 233 | */ | 233 | */ |
| 234 | typedef int SureWareHook_Mod_Exp_t(char*const msg,int mlen,const unsigned long *mod, | 234 | typedef int SureWareHook_Mod_Exp_t(char*const msg,int mlen,const unsigned long *mod, |
| 235 | int elen,const unsigned long *exp, | 235 | int elen,const unsigned long *exponent, |
| 236 | int dlen,unsigned long *data, | 236 | int dlen,unsigned long *data, |
| 237 | unsigned long *res); | 237 | unsigned long *res); |
| 238 | extern SW_EXPORT SureWareHook_Mod_Exp_t SureWareHook_Mod_Exp; | 238 | extern SW_EXPORT SureWareHook_Mod_Exp_t SureWareHook_Mod_Exp; |
