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 | |
| 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')
100 files changed, 10950 insertions, 309 deletions
diff --git a/src/lib/libcrypto/Attic/Makefile b/src/lib/libcrypto/Attic/Makefile index eb49323ad5..cffaeedc5d 100644 --- a/src/lib/libcrypto/Attic/Makefile +++ b/src/lib/libcrypto/Attic/Makefile | |||
| @@ -1,133 +1,218 @@ | |||
| 1 | LIB= crypto | 1 | # |
| 2 | CFLAGS+= -DNO_IDEA -DTERMIOS -DL_ENDIAN -DANSI_SOURCE | 2 | # SSLeay/crypto/Makefile |
| 3 | CFLAGS+= -I${.CURDIR}/../include | 3 | # |
| 4 | SRCS+= cryptlib.c mem.c cversion.c ex_data.c cpt_err.c | ||
| 5 | CFLAGS+= -I${.CURDIR}/md2 | ||
| 6 | SRCS+= md2_dgst.c md2_one.c | ||
| 7 | CFLAGS+= -I${.CURDIR}/md5 | ||
| 8 | SRCS+= md5_dgst.c md5_one.c | ||
| 9 | CFLAGS+= -I${.CURDIR}/sha | ||
| 10 | SRCS+= sha_dgst.c sha1dgst.c sha_one.c sha1_one.c | ||
| 11 | CFLAGS+= -I${.CURDIR}/mdc2 | ||
| 12 | SRCS+= mdc2dgst.c mdc2_one.c | ||
| 13 | CFLAGS+= -I${.CURDIR}/hmac | ||
| 14 | SRCS+= hmac.c | ||
| 15 | CFLAGS+= -I${.CURDIR}/ripemd | ||
| 16 | SRCS+= rmd_dgst.c rmd_one.c | ||
| 17 | CFLAGS+= -I${.CURDIR}/des | ||
| 18 | SRCS+= set_key.c ecb_enc.c cbc_enc.c ecb3_enc.c | ||
| 19 | SRCS+= cfb64enc.c cfb64ede.c cfb_enc.c ofb64ede.c | ||
| 20 | SRCS+= enc_read.c enc_writ.c ofb64enc.c ofb_enc.c | ||
| 21 | SRCS+= str2key.c pcbc_enc.c qud_cksm.c rand_key.c | ||
| 22 | SRCS+= read2pwd.c fcrypt.c xcbc_enc.c read_pwd.c | ||
| 23 | SRCS+= rpc_enc.c cbc_cksm.c supp.c | ||
| 24 | CFLAGS+= -I${.CURDIR}/rc2 | ||
| 25 | SRCS+= rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c | ||
| 26 | SRCS+= rc2ofb64.c | ||
| 27 | CFLAGS+= -I${.CURDIR}/rc4 | ||
| 28 | SRCS+= rc4_skey.c | ||
| 29 | CFLAGS+= -I${.CURDIR}/rc5 | ||
| 30 | SRCS+= rc5_skey.c rc5_ecb.c rc5cfb64.c rc5cfb64.c | ||
| 31 | SRCS+= rc5ofb64.c | ||
| 32 | CFLAGS+= -I${.CURDIR}/idea | ||
| 33 | SRCS+= i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c | ||
| 34 | SRCS+= i_skey.c | ||
| 35 | CFLAGS+= -I${.CURDIR}/bf | ||
| 36 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c | ||
| 37 | CFLAGS+= -I${.CURDIR}/cast | ||
| 38 | SRCS+= c_skey.c c_ecb.c c_cfb64.c c_ofb64.c | ||
| 39 | CFLAGS+= -I${.CURDIR}/bn | ||
| 40 | SRCS+= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c | ||
| 41 | SRCS+= bn_mul.c bn_print.c bn_rand.c bn_shift.c bn_sub.c | ||
| 42 | SRCS+= bn_word.c bn_blind.c bn_gcd.c bn_prime.c bn_err.c | ||
| 43 | SRCS+= bn_sqr.c bn_recp.c bn_mont.c bn_mpi.c | ||
| 44 | CFLAGS+= -I${.CURDIR}/rsa | ||
| 45 | SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c | ||
| 46 | SRCS+= rsa_saos.c rsa_err.c rsa_pk1.c rsa_ssl.c | ||
| 47 | SRCS+= rsa_none.c | ||
| 48 | CFLAGS+= -I${.CURDIR}/dsa | ||
| 49 | SRCS+= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c | ||
| 50 | SRCS+= dsa_sign.c dsa_err.c | ||
| 51 | CFLAGS+= -I${.CURDIR}/dh | ||
| 52 | SRCS+= dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c | ||
| 53 | CFLAGS+= -I${.CURDIR}/buffer | ||
| 54 | SRCS+= buffer.c buf_err.c | ||
| 55 | CFLAGS+= -I${.CURDIR}/bio | ||
| 56 | SRCS+= bio_lib.c bio_cb.c bio_err.c bss_mem.c | ||
| 57 | SRCS+= bss_null.c bss_fd.c bss_file.c bss_sock.c | ||
| 58 | SRCS+= bss_conn.c bf_null.c bf_buff.c | ||
| 59 | SRCS+= b_print.c b_dump.c b_sock.c bss_acpt.c | ||
| 60 | SRCS+= bf_nbio.c | ||
| 61 | CFLAGS+= -I${.CURDIR}/stack | ||
| 62 | SRCS+= stack.c | ||
| 63 | CFLAGS+= -I${.CURDIR}/lhash | ||
| 64 | SRCS+= lhash.c lh_stats.c | ||
| 65 | CFLAGS+= -I${.CURDIR}/rand | ||
| 66 | SRCS+= md_rand.c randfile.c | ||
| 67 | CFLAGS+= -I${.CURDIR}/err | ||
| 68 | SRCS+= err.c err_all.c err_prn.c | ||
| 69 | CFLAGS+= -I${.CURDIR}/objects | ||
| 70 | SRCS+= obj_dat.c obj_lib.c obj_err.c | ||
| 71 | CFLAGS+= -I${.CURDIR}/evp | ||
| 72 | SRCS+= encode.c digest.c evp_enc.c evp_key.c | ||
| 73 | SRCS+= e_ecb_d.c e_cbc_d.c e_cfb_d.c e_ofb_d.c | ||
| 74 | SRCS+= e_ecb_i.c e_cbc_i.c e_cfb_i.c e_ofb_i.c | ||
| 75 | SRCS+= e_ecb_3d.c e_cbc_3d.c e_rc4.c names.c | ||
| 76 | SRCS+= e_cfb_3d.c e_ofb_3d.c e_xcbc_d.c e_ecb_r2.c | ||
| 77 | SRCS+= e_cbc_r2.c e_cfb_r2.c e_ofb_r2.c e_ecb_bf.c | ||
| 78 | SRCS+= e_cbc_bf.c e_cfb_bf.c e_ofb_bf.c e_ecb_c.c | ||
| 79 | SRCS+= e_cbc_c.c e_cfb_c.c e_ofb_c.c e_ecb_r5.c | ||
| 80 | SRCS+= e_cbc_r5.c e_cfb_r5.c e_ofb_r5.c m_null.c | ||
| 81 | SRCS+= m_md2.c m_md5.c m_sha.c m_sha1.c m_dss.c | ||
| 82 | SRCS+= m_dss1.c m_mdc2.c m_ripemd.c p_open.c | ||
| 83 | SRCS+= p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c | ||
| 84 | SRCS+= p_dec.c bio_md.c bio_b64.c bio_enc.c | ||
| 85 | SRCS+= evp_err.c e_null.c c_all.c evp_lib.c | ||
| 86 | CFLAGS+= -I${.CURDIR}/pem | ||
| 87 | SRCS+= pem_sign.c pem_seal.c pem_info.c pem_lib.c | ||
| 88 | SRCS+= pem_all.c pem_err.c | ||
| 89 | CFLAGS+= -I${.CURDIR}/asn1 | ||
| 90 | SRCS+= a_object.c a_bitstr.c a_utctm.c a_int.c | ||
| 91 | SRCS+= a_octet.c a_print.c a_type.c a_set.c | ||
| 92 | SRCS+= a_dup.c a_d2i_fp.c a_i2d_fp.c a_sign.c | ||
| 93 | SRCS+= a_digest.c a_verify.c x_algor.c x_val.c | ||
| 94 | SRCS+= x_pubkey.c x_sig.c x_req.c x_attrib.c | ||
| 95 | SRCS+= x_name.c x_cinf.c x_x509.c x_crl.c | ||
| 96 | SRCS+= x_info.c x_spki.c d2i_r_pr.c i2d_r_pr.c | ||
| 97 | SRCS+= d2i_r_pu.c i2d_r_pu.c d2i_s_pr.c i2d_s_pr.c | ||
| 98 | SRCS+= d2i_s_pu.c i2d_s_pu.c d2i_pu.c d2i_pr.c | ||
| 99 | SRCS+= i2d_pu.c i2d_pr.c t_req.c t_x509.c | ||
| 100 | SRCS+= t_pkey.c p7_i_s.c p7_signi.c p7_signd.c | ||
| 101 | SRCS+= p7_recip.c p7_enc_c.c p7_evp.c p7_dgst.c | ||
| 102 | SRCS+= p7_s_e.c p7_enc.c p7_lib.c f_int.c | ||
| 103 | SRCS+= f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c | ||
| 104 | SRCS+= d2i_dsap.c n_pkey.c a_hdr.c x_pkey.c | ||
| 105 | SRCS+= a_bool.c x_exten.c asn1_par.c asn1_lib.c | ||
| 106 | SRCS+= asn1_err.c a_meth.c a_bytes.c evp_asn1.c | ||
| 107 | CFLAGS+= -I${.CURDIR}/x509 | ||
| 108 | SRCS+= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c | ||
| 109 | SRCS+= x509_obj.c x509_req.c x509_vfy.c x509_set.c | ||
| 110 | SRCS+= x509rset.c x509_err.c x509name.c x509_v3.c | ||
| 111 | SRCS+= x509_ext.c x509pack.c x509type.c x509_lu.c | ||
| 112 | SRCS+= x_all.c x509_txt.c by_file.c by_dir.c | ||
| 113 | SRCS+= v3_net.c v3_x509.c | ||
| 114 | CFLAGS+= -I${.CURDIR}/conf | ||
| 115 | SRCS+= conf.c conf_err.c | ||
| 116 | CFLAGS+= -I${.CURDIR}/txt_db | ||
| 117 | SRCS+= txt_db.c | ||
| 118 | CFLAGS+= -I${.CURDIR}/pkcs7 | ||
| 119 | SRCS+= pk7_lib.c pkcs7err.c pk7_doit.c | ||
| 120 | |||
| 121 | .PATH: ${.CURDIR}/md2 ${.CURDIR}/md5 ${.CURDIR}/sha ${.CURDIR}/mdc2 \ | ||
| 122 | ${.CURDIR}/hmac ${.CURDIR}/ripemd ${.CURDIR}/des ${.CURDIR}/rc2 \ | ||
| 123 | ${.CURDIR}/rc4 ${.CURDIR}/rc5 ${.CURDIR}/idea ${.CURDIR}/bf \ | ||
| 124 | ${.CURDIR}/cast ${.CURDIR}/bn ${.CURDIR}/rsa ${.CURDIR}/dsa \ | ||
| 125 | ${.CURDIR}/dh ${.CURDIR}/buffer ${.CURDIR}/bio ${.CURDIR}/stack \ | ||
| 126 | ${.CURDIR}/lhash ${.CURDIR}/rand ${.CURDIR}/err ${.CURDIR}/objects \ | ||
| 127 | ${.CURDIR}/evp ${.CURDIR}/pem ${.CURDIR}/asn1 ${.CURDIR}/asn1 \ | ||
| 128 | ${.CURDIR}/x509 ${.CURDIR}/conf txt_db/txt_db.c ${.CURDIR}/pkcs7 \ | ||
| 129 | ${.CURDIR}/txt_db | ||
| 130 | |||
| 131 | .include <bsd.lib.mk> | ||
| 132 | 4 | ||
| 5 | DIR= crypto | ||
| 6 | TOP= .. | ||
| 7 | CC= cc | ||
| 8 | INCLUDE= -I. -I$(TOP) -I../include | ||
| 9 | INCLUDES= -I.. -I../.. -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 | RM= rm -f | ||
| 18 | AR= ar r | ||
| 133 | 19 | ||
| 20 | PEX_LIBS= | ||
| 21 | EX_LIBS= | ||
| 22 | |||
| 23 | CFLAGS= $(INCLUDE) $(CFLAG) | ||
| 24 | |||
| 25 | |||
| 26 | LIBS= | ||
| 27 | |||
| 28 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ | ||
| 29 | des rc2 rc4 rc5 idea bf cast \ | ||
| 30 | bn ec rsa dsa dh dso engine aes \ | ||
| 31 | buffer bio stack lhash rand err objects \ | ||
| 32 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 | ||
| 33 | |||
| 34 | GENERAL=Makefile README crypto-lib.com install.com | ||
| 35 | |||
| 36 | LIB= $(TOP)/libcrypto.a | ||
| 37 | SHARED_LIB= libcrypto$(SHLIB_EXT) | ||
| 38 | LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c | ||
| 39 | LIBOBJ= cryptlib.o mem.o mem_clr.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o | ||
| 40 | |||
| 41 | SRC= $(LIBSRC) | ||
| 42 | |||
| 43 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \ | ||
| 44 | ossl_typ.h | ||
| 45 | HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h $(EXHEADER) | ||
| 46 | |||
| 47 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 48 | |||
| 49 | top: | ||
| 50 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | ||
| 51 | |||
| 52 | all: shared | ||
| 53 | |||
| 54 | buildinf.h: ../Makefile | ||
| 55 | ( echo "#ifndef MK1MF_BUILD"; \ | ||
| 56 | echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \ | ||
| 57 | echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \ | ||
| 58 | echo ' #define PLATFORM "$(PLATFORM)"'; \ | ||
| 59 | echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \ | ||
| 60 | echo '#endif' ) >buildinf.h | ||
| 61 | |||
| 62 | testapps: | ||
| 63 | if echo ${SDIRS} | fgrep ' des '; \ | ||
| 64 | then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi | ||
| 65 | cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps | ||
| 66 | |||
| 67 | subdirs: | ||
| 68 | @for i in $(SDIRS) ;\ | ||
| 69 | do \ | ||
| 70 | (cd $$i && echo "making all in crypto/$$i..." && \ | ||
| 71 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ | ||
| 72 | done; | ||
| 73 | |||
| 74 | files: | ||
| 75 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 76 | @for i in $(SDIRS) ;\ | ||
| 77 | do \ | ||
| 78 | (cd $$i && echo "making 'files' in crypto/$$i..." && \ | ||
| 79 | $(MAKE) PERL='${PERL}' files ); \ | ||
| 80 | done; | ||
| 81 | |||
| 82 | links: | ||
| 83 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) | ||
| 84 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) | ||
| 85 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) | ||
| 86 | @for i in $(SDIRS); do \ | ||
| 87 | (cd $$i && echo "making links in crypto/$$i..." && \ | ||
| 88 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ | ||
| 89 | done; | ||
| 90 | |||
| 91 | lib: $(LIBOBJ) | ||
| 92 | $(AR) $(LIB) $(LIBOBJ) | ||
| 93 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 94 | @touch lib | ||
| 95 | |||
| 96 | shared: buildinf.h lib subdirs | ||
| 97 | @if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 98 | egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null || \ | ||
| 99 | (cd ..; $(MAKE) $(SHARED_LIB)); \ | ||
| 100 | fi | ||
| 101 | |||
| 102 | libs: | ||
| 103 | @for i in $(SDIRS) ;\ | ||
| 104 | do \ | ||
| 105 | (cd $$i && echo "making libs in crypto/$$i..." && \ | ||
| 106 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ | ||
| 107 | done; | ||
| 108 | |||
| 109 | tests: | ||
| 110 | @for i in $(SDIRS) ;\ | ||
| 111 | do \ | ||
| 112 | (cd $$i && echo "making tests in crypto/$$i..." && \ | ||
| 113 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ | ||
| 114 | done; | ||
| 115 | |||
| 116 | install: | ||
| 117 | @headerlist="$(EXHEADER)"; for i in $$headerlist ;\ | ||
| 118 | do \ | ||
| 119 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 120 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 121 | done; | ||
| 122 | @for i in $(SDIRS) ;\ | ||
| 123 | do \ | ||
| 124 | (cd $$i && echo "making install in crypto/$$i..." && \ | ||
| 125 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ | ||
| 126 | done; | ||
| 127 | |||
| 128 | lint: | ||
| 129 | @for i in $(SDIRS) ;\ | ||
| 130 | do \ | ||
| 131 | (cd $$i && echo "making lint in crypto/$$i..." && \ | ||
| 132 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ | ||
| 133 | done; | ||
| 134 | |||
| 135 | depend: | ||
| 136 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist | ||
| 137 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 138 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | ||
| 139 | @for i in $(SDIRS) ;\ | ||
| 140 | do \ | ||
| 141 | (cd $$i && echo "making depend in crypto/$$i..." && \ | ||
| 142 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ); \ | ||
| 143 | done; | ||
| 144 | |||
| 145 | clean: | ||
| 146 | rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 147 | @for i in $(SDIRS) ;\ | ||
| 148 | do \ | ||
| 149 | (cd $$i && echo "making clean in crypto/$$i..." && \ | ||
| 150 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ | ||
| 151 | done; | ||
| 152 | |||
| 153 | dclean: | ||
| 154 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 155 | mv -f Makefile.new $(MAKEFILE) | ||
| 156 | @for i in $(SDIRS) ;\ | ||
| 157 | do \ | ||
| 158 | (cd $$i && echo "making dclean in crypto/$$i..." && \ | ||
| 159 | $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ | ||
| 160 | done; | ||
| 161 | |||
| 162 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 163 | |||
| 164 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 165 | cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 166 | cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 167 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | ||
| 168 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c | ||
| 169 | cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 170 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 171 | cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 172 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 173 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 174 | cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h | ||
| 175 | cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 176 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 177 | cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 178 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 179 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 180 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | ||
| 181 | ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c | ||
| 182 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 183 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 184 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 185 | ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 186 | ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 187 | ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c | ||
| 188 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 189 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 190 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 191 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 192 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 193 | mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c | ||
| 194 | mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 195 | mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 196 | mem_clr.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 197 | mem_clr.o: ../include/openssl/symhacks.h mem_clr.c | ||
| 198 | mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 199 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 200 | mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 201 | mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 202 | mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 203 | mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c | ||
| 204 | o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | ||
| 205 | o_str.o: o_str.c o_str.h | ||
| 206 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c | ||
| 207 | o_time.o: o_time.h | ||
| 208 | tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 209 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 210 | tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 211 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 212 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 213 | tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h | ||
| 214 | tmdiff.o: tmdiff.c | ||
| 215 | uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 216 | uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 217 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 218 | uid.o: ../include/openssl/symhacks.h uid.c | ||
diff --git a/src/lib/libcrypto/aes/Makefile b/src/lib/libcrypto/aes/Makefile new file mode 100644 index 0000000000..a37c6f66a2 --- /dev/null +++ b/src/lib/libcrypto/aes/Makefile | |||
| @@ -0,0 +1,103 @@ | |||
| 1 | # | ||
| 2 | # crypto/aes/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= aes | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | # CFLAGS= -mpentiumpro $(INCLUDES) $(CFLAG) -O3 -fexpensive-optimizations -funroll-loops -fforce-addr | ||
| 20 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 21 | |||
| 22 | GENERAL=Makefile | ||
| 23 | #TEST=aestest.c | ||
| 24 | TEST= | ||
| 25 | APPS= | ||
| 26 | |||
| 27 | LIB=$(TOP)/libcrypto.a | ||
| 28 | LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c | ||
| 29 | LIBOBJ=aes_core.o aes_misc.o aes_ecb.o aes_cbc.o aes_cfb.o aes_ofb.o aes_ctr.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= aes.h | ||
| 34 | HEADER= aes_locl.h $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | $(LIBOBJ): $(LIBSRC) | ||
| 49 | |||
| 50 | files: | ||
| 51 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 52 | |||
| 53 | links: | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 57 | |||
| 58 | install: installs | ||
| 59 | |||
| 60 | installs: | ||
| 61 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 62 | do \ | ||
| 63 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 64 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 65 | done; | ||
| 66 | |||
| 67 | tags: | ||
| 68 | ctags $(SRC) | ||
| 69 | |||
| 70 | tests: | ||
| 71 | |||
| 72 | lint: | ||
| 73 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 74 | |||
| 75 | depend: | ||
| 76 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 77 | |||
| 78 | dclean: | ||
| 79 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 80 | mv -f Makefile.new $(MAKEFILE) | ||
| 81 | |||
| 82 | clean: | ||
| 83 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 84 | |||
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 86 | |||
| 87 | aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 88 | aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h | ||
| 89 | aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 90 | aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 91 | aes_cfb.o: aes_cfb.c aes_locl.h | ||
| 92 | aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 93 | aes_core.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | ||
| 94 | aes_core.o: aes_core.c aes_locl.h | ||
| 95 | aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 96 | aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h | ||
| 97 | aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 98 | aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h | ||
| 99 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 100 | aes_misc.o: ../../include/openssl/opensslconf.h | ||
| 101 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c | ||
| 102 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | ||
| 103 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c | ||
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile new file mode 100644 index 0000000000..b11298d621 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile | |||
| @@ -0,0 +1,1150 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/asn1/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= asn1 | ||
| 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 README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | ||
| 26 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
| 27 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ | ||
| 28 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ | ||
| 29 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ | ||
| 30 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
| 31 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | ||
| 32 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | ||
| 33 | f_int.c f_string.c n_pkey.c \ | ||
| 34 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ | ||
| 35 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | ||
| 36 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
| 37 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
| 38 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
| 39 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | ||
| 40 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | ||
| 41 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | ||
| 42 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
| 43 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
| 44 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
| 45 | f_int.o f_string.o n_pkey.o \ | ||
| 46 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ | ||
| 47 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | ||
| 48 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
| 49 | |||
| 50 | SRC= $(LIBSRC) | ||
| 51 | |||
| 52 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
| 53 | HEADER= $(EXHEADER) | ||
| 54 | |||
| 55 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 56 | |||
| 57 | top: | ||
| 58 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 59 | |||
| 60 | test: test.c | ||
| 61 | cc -g -I../../include -c test.c | ||
| 62 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
| 63 | |||
| 64 | pk: pk.c | ||
| 65 | cc -g -I../../include -c pk.c | ||
| 66 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
| 67 | |||
| 68 | all: lib | ||
| 69 | |||
| 70 | lib: $(LIBOBJ) | ||
| 71 | $(AR) $(LIB) $(LIBOBJ) | ||
| 72 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 73 | @touch lib | ||
| 74 | |||
| 75 | files: | ||
| 76 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 77 | |||
| 78 | links: | ||
| 79 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 80 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 81 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 82 | |||
| 83 | install: | ||
| 84 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 85 | do \ | ||
| 86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 87 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 88 | done; | ||
| 89 | |||
| 90 | tags: | ||
| 91 | ctags $(SRC) | ||
| 92 | |||
| 93 | tests: | ||
| 94 | |||
| 95 | lint: | ||
| 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 97 | |||
| 98 | depend: | ||
| 99 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 100 | |||
| 101 | dclean: | ||
| 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 103 | mv -f Makefile.new $(MAKEFILE) | ||
| 104 | |||
| 105 | clean: | ||
| 106 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 107 | |||
| 108 | |||
| 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 110 | |||
| 111 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 112 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 113 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 114 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 115 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 116 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 117 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 118 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 119 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 120 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 121 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 122 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 123 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 124 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 125 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 126 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 127 | a_bool.o: ../cryptlib.h a_bool.c | ||
| 128 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 132 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 133 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 134 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 135 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
| 136 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 137 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 138 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 140 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 141 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
| 142 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 143 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 144 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 145 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 146 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 147 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 148 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 149 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 150 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 151 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 152 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 153 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 154 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 155 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 156 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 157 | a_digest.o: ../../include/openssl/opensslconf.h | ||
| 158 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 159 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 160 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 161 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 162 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 163 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 164 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 165 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 166 | a_digest.o: ../cryptlib.h a_digest.c | ||
| 167 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 168 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 169 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 170 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 171 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 172 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 173 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 174 | a_dup.o: ../cryptlib.h a_dup.c | ||
| 175 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 176 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 177 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 178 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 179 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 180 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 181 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 182 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 183 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 184 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 185 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 186 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 188 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 189 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 190 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
| 191 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 192 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 193 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 194 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 195 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 196 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 197 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 198 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 199 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
| 200 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 201 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 202 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 203 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 204 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 205 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 206 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 207 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 208 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 209 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 210 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 211 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 212 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 213 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 214 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 215 | a_int.o: ../cryptlib.h a_int.c | ||
| 216 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 217 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 218 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 219 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 220 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 221 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 222 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 223 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
| 224 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 225 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 226 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 227 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 228 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 229 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 230 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 231 | a_meth.o: ../cryptlib.h a_meth.c | ||
| 232 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 233 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 234 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 235 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 236 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 237 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 238 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 239 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 240 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 241 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 242 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 243 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 244 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 245 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 246 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 247 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 248 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
| 249 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 250 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 251 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 252 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 253 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 254 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 255 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 256 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
| 257 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 258 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 259 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 260 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 261 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 262 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 263 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 264 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 265 | a_set.o: ../cryptlib.h a_set.c | ||
| 266 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 267 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 268 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 269 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 270 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 271 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 272 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 273 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 274 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 275 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 276 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 277 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 278 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 279 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 280 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 281 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 282 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 283 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 284 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 285 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 286 | a_sign.o: ../cryptlib.h a_sign.c | ||
| 287 | a_strex.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 288 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 289 | a_strex.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 290 | a_strex.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 291 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 292 | a_strex.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 293 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 294 | a_strex.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 295 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 296 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 297 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 298 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 299 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 300 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 301 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 302 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 303 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 304 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 305 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 306 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 307 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
| 308 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 309 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 310 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 311 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 312 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 313 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 314 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 315 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 316 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 317 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 318 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 319 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 320 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 321 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 322 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 323 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 324 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 325 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
| 326 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 327 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 328 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 329 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 330 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 331 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 332 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 333 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 334 | a_type.o: ../cryptlib.h a_type.c | ||
| 335 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 336 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 337 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 338 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 339 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 340 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 341 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 342 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
| 343 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 344 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 345 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 346 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 347 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 348 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 349 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 350 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
| 351 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 352 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 353 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 354 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 355 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 356 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 357 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 358 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 359 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 360 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 361 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 362 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 363 | a_verify.o: ../../include/openssl/opensslconf.h | ||
| 364 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 365 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 366 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 367 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 368 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 369 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 370 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 371 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 372 | a_verify.o: ../cryptlib.h a_verify.c | ||
| 373 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 374 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 375 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 376 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 377 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 378 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 379 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 380 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 381 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 382 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 383 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 384 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 385 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
| 386 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 387 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 388 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 389 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 390 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 391 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 392 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 393 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 394 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 395 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 396 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 397 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 398 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 399 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 400 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 401 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 402 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 403 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 404 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 405 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 406 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 407 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 408 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 409 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 410 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 411 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
| 412 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 413 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 414 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 415 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 416 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 417 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 418 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 419 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 420 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
| 421 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 422 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 423 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 424 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 425 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 426 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 427 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 428 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
| 429 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 430 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 431 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 432 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 433 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 434 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 435 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 436 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 437 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 438 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 439 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 440 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 441 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 442 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 443 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 444 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 445 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 446 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 447 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c | ||
| 448 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 449 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 450 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 451 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 452 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 453 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 454 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 455 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 456 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 457 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 458 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 459 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 460 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 461 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 462 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 463 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 464 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 465 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 466 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
| 467 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 468 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 469 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 470 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 471 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 472 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
| 473 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 474 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 475 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 476 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 477 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 478 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 479 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 480 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 481 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 482 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 483 | f_enum.o: ../cryptlib.h f_enum.c | ||
| 484 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 485 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 486 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 487 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 488 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 489 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 490 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 491 | f_int.o: ../cryptlib.h f_int.c | ||
| 492 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 493 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 494 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 495 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 496 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 497 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 498 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 499 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 500 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 501 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 502 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 503 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 504 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 505 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 506 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 507 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 508 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 509 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 510 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 511 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 512 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 513 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 514 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 515 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 516 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 517 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 518 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c | ||
| 519 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 520 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 521 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 522 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 523 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 524 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 525 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 526 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 527 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 528 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 529 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 530 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 531 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 532 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 533 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 534 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 535 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 536 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 537 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c | ||
| 538 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 539 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 540 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 541 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 542 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 543 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 544 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 545 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 546 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 547 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 548 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 549 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 550 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 551 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 552 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 553 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 554 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 555 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 556 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 557 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 558 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 559 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
| 560 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 561 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 562 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 563 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 564 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 565 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 566 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 567 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 568 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 569 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 570 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 571 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 572 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 573 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 574 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 575 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 576 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 577 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 578 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 579 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
| 580 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 581 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 582 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 583 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 584 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 585 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 586 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 587 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 588 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 589 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 590 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 591 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 592 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 593 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 594 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 595 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 596 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 597 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 598 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 599 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 600 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 601 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
| 602 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 603 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 604 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 605 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 606 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 607 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 608 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 609 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 610 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 611 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 612 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 613 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 614 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 615 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 616 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 617 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 618 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 619 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 620 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 621 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 622 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 623 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
| 624 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 625 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 626 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 627 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 628 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 629 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 630 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 631 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 632 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 633 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 634 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 635 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 636 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 637 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 638 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 639 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 640 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 641 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 642 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 643 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 644 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 645 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
| 646 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 647 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 648 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 649 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 650 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 651 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 652 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 653 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 654 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 655 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 656 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 657 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 658 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 659 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 660 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 661 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 662 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 663 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 664 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 665 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 666 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 667 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
| 668 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 669 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 670 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 671 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 672 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 673 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 674 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 675 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 676 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 677 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 678 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 679 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 680 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 681 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 682 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 683 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 684 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 685 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 686 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 687 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 688 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 689 | t_crl.o: ../cryptlib.h t_crl.c | ||
| 690 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 691 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 692 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 693 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 694 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 695 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 696 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 697 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 698 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
| 699 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 700 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 701 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 702 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 703 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 704 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 705 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 706 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 707 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 708 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 709 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 710 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 711 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 712 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 713 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 714 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 715 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 716 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 717 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 718 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 719 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 720 | t_req.o: ../cryptlib.h t_req.c | ||
| 721 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 722 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 723 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 724 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 725 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 726 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 727 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 728 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 729 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 730 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 731 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 732 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 733 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 734 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 735 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 736 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 737 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 738 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 739 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 740 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 741 | t_spki.o: ../cryptlib.h t_spki.c | ||
| 742 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 743 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 744 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 745 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 746 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 747 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 748 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 749 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 750 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 751 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 752 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 753 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 754 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 755 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 756 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 757 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 758 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 759 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 760 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 761 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 762 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 763 | t_x509.o: ../cryptlib.h t_x509.c | ||
| 764 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 765 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 766 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 767 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 768 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 769 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 770 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 771 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 772 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 773 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 774 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 775 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 776 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 777 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 778 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 779 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 780 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 781 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 782 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 783 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 784 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
| 785 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 786 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 787 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 788 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 789 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 790 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 791 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 792 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 793 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 794 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 795 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 796 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 797 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 798 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
| 799 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 800 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 801 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
| 802 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 803 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 804 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 805 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 806 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
| 807 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 808 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 809 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 810 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 811 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 812 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 813 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 814 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 815 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
| 816 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 817 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 818 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 819 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 820 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 821 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 822 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
| 823 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 824 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 825 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 826 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 827 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 828 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 829 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 830 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 831 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
| 832 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 833 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 834 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 835 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 836 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 837 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 838 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 839 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 840 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 841 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 842 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 843 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 844 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 845 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 846 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 847 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 848 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 849 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 850 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 851 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 852 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 853 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 854 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 855 | x_algor.o: x_algor.c | ||
| 856 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 857 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 858 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 859 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 860 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 861 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 862 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 863 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 864 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 865 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 866 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 867 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 868 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 869 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 870 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 871 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 872 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 873 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 874 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 875 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 876 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 877 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
| 878 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 879 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 880 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 881 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 882 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 883 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 884 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 885 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 886 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 887 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 888 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 889 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 890 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 891 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 892 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 893 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 894 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 895 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 896 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 897 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 898 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 899 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 900 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 901 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 902 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 903 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 904 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 905 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 906 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 907 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c | ||
| 908 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 909 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 910 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 911 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 912 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 913 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 914 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 915 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 916 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 917 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 918 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 919 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 920 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 921 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 922 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 923 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 924 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 925 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 926 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 927 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 928 | x_exten.o: x_exten.c | ||
| 929 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 930 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 931 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 932 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 933 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 934 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 935 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 936 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 937 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 938 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 939 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 940 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 941 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 942 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 943 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 944 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 945 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 946 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 947 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 948 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 949 | x_info.o: ../cryptlib.h x_info.c | ||
| 950 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 951 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 952 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 953 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 954 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 955 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 956 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 957 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 958 | x_long.o: ../cryptlib.h x_long.c | ||
| 959 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 960 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 961 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 962 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 963 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 964 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 965 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 966 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 967 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 968 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 969 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 970 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 971 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 972 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 973 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 974 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 975 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 976 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 977 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 978 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 979 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
| 980 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 981 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 982 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 983 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 984 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 985 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 986 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 987 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 988 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 989 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 990 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 991 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 992 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 993 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 994 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 995 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 996 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 997 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 998 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 999 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1000 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
| 1001 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1002 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1003 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1004 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1005 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1006 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1007 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1008 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1009 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1010 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1011 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1012 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1013 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1014 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1015 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1016 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1017 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1018 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1019 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1020 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1021 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1022 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
| 1023 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1024 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1025 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1026 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1027 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1028 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1029 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1030 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1031 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1032 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1033 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1034 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1035 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1036 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1037 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1038 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1039 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1040 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1041 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1042 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1043 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
| 1044 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1045 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1046 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1047 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1048 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1049 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1050 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1051 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1052 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1053 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1054 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1055 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1056 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1057 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1058 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1059 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1060 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1061 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1062 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1063 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1064 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
| 1065 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1066 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1067 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1068 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1069 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1070 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1071 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1072 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1073 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1074 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1075 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1076 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1077 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1078 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1079 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1080 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1081 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1082 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1083 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1084 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1085 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
| 1086 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1087 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1088 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1089 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1090 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1091 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1092 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1093 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1094 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1095 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1096 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1097 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1098 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1099 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1100 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1101 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1102 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1103 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1104 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1105 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1106 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
| 1107 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1108 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1109 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1110 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1111 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 1112 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1113 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1114 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1115 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1116 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1117 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1118 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1119 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1120 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1121 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1122 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1123 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1124 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1125 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1126 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1127 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1128 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
| 1129 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1130 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1131 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1132 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1133 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1134 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1135 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1136 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1137 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1138 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1139 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1140 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1141 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1142 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1143 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1144 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1145 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1146 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1147 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1148 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1149 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1150 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/a_gentm.c b/src/lib/libcrypto/asn1/a_gentm.c index 8581007868..0dfd576211 100644 --- a/src/lib/libcrypto/asn1/a_gentm.c +++ b/src/lib/libcrypto/asn1/a_gentm.c | |||
| @@ -192,8 +192,9 @@ int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, char *str) | |||
| 192 | { | 192 | { |
| 193 | if (s != NULL) | 193 | if (s != NULL) |
| 194 | { | 194 | { |
| 195 | ASN1_STRING_set((ASN1_STRING *)s, | 195 | if (!ASN1_STRING_set((ASN1_STRING *)s, |
| 196 | (unsigned char *)str,t.length); | 196 | (unsigned char *)str,t.length)) |
| 197 | return 0; | ||
| 197 | s->type=V_ASN1_GENERALIZEDTIME; | 198 | s->type=V_ASN1_GENERALIZEDTIME; |
| 198 | } | 199 | } |
| 199 | return(1); | 200 | return(1); |
| @@ -223,7 +224,12 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | |||
| 223 | if ((p == NULL) || ((size_t)s->length < len)) | 224 | if ((p == NULL) || ((size_t)s->length < len)) |
| 224 | { | 225 | { |
| 225 | p=OPENSSL_malloc(len); | 226 | p=OPENSSL_malloc(len); |
| 226 | if (p == NULL) return(NULL); | 227 | if (p == NULL) |
| 228 | { | ||
| 229 | ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_SET, | ||
| 230 | ERR_R_MALLOC_FAILURE); | ||
| 231 | return(NULL); | ||
| 232 | } | ||
| 227 | if (s->data != NULL) | 233 | if (s->data != NULL) |
| 228 | OPENSSL_free(s->data); | 234 | OPENSSL_free(s->data); |
| 229 | s->data=(unsigned char *)p; | 235 | s->data=(unsigned char *)p; |
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c index 999852dae5..7b25fed331 100644 --- a/src/lib/libcrypto/asn1/a_utctm.c +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
| @@ -173,8 +173,9 @@ int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, char *str) | |||
| 173 | { | 173 | { |
| 174 | if (s != NULL) | 174 | if (s != NULL) |
| 175 | { | 175 | { |
| 176 | ASN1_STRING_set((ASN1_STRING *)s, | 176 | if (!ASN1_STRING_set((ASN1_STRING *)s, |
| 177 | (unsigned char *)str,t.length); | 177 | (unsigned char *)str,t.length)) |
| 178 | return 0; | ||
| 178 | s->type = V_ASN1_UTCTIME; | 179 | s->type = V_ASN1_UTCTIME; |
| 179 | } | 180 | } |
| 180 | return(1); | 181 | return(1); |
| @@ -203,7 +204,11 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) | |||
| 203 | if ((p == NULL) || ((size_t)s->length < len)) | 204 | if ((p == NULL) || ((size_t)s->length < len)) |
| 204 | { | 205 | { |
| 205 | p=OPENSSL_malloc(len); | 206 | p=OPENSSL_malloc(len); |
| 206 | if (p == NULL) return(NULL); | 207 | if (p == NULL) |
| 208 | { | ||
| 209 | ASN1err(ASN1_F_ASN1_UTCTIME_SET,ERR_R_MALLOC_FAILURE); | ||
| 210 | return(NULL); | ||
| 211 | } | ||
| 207 | if (s->data != NULL) | 212 | if (s->data != NULL) |
| 208 | OPENSSL_free(s->data); | 213 | OPENSSL_free(s->data); |
| 209 | s->data=(unsigned char *)p; | 214 | s->data=(unsigned char *)p; |
diff --git a/src/lib/libcrypto/bf/Makefile b/src/lib/libcrypto/bf/Makefile new file mode 100644 index 0000000000..0e2121efdc --- /dev/null +++ b/src/lib/libcrypto/bf/Makefile | |||
| @@ -0,0 +1,116 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/blowfish/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= bf | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | BF_ENC= bf_enc.o | ||
| 20 | # or use | ||
| 21 | #DES_ENC= bx86-elf.o | ||
| 22 | |||
| 23 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 25 | |||
| 26 | GENERAL=Makefile | ||
| 27 | TEST=bftest.c | ||
| 28 | APPS= | ||
| 29 | |||
| 30 | LIB=$(TOP)/libcrypto.a | ||
| 31 | LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c | ||
| 32 | LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o | ||
| 33 | |||
| 34 | SRC= $(LIBSRC) | ||
| 35 | |||
| 36 | EXHEADER= blowfish.h | ||
| 37 | HEADER= bf_pi.h bf_locl.h $(EXHEADER) | ||
| 38 | |||
| 39 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 40 | |||
| 41 | top: | ||
| 42 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 43 | |||
| 44 | all: lib | ||
| 45 | |||
| 46 | lib: $(LIBOBJ) | ||
| 47 | $(AR) $(LIB) $(LIBOBJ) | ||
| 48 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 49 | @touch lib | ||
| 50 | |||
| 51 | # elf | ||
| 52 | asm/bx86-elf.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 53 | (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > bx86-elf.s) | ||
| 54 | |||
| 55 | # a.out | ||
| 56 | asm/bx86-out.o: asm/bx86unix.cpp | ||
| 57 | $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o | ||
| 58 | |||
| 59 | # bsdi | ||
| 60 | asm/bx86bsdi.o: asm/bx86unix.cpp | ||
| 61 | $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o | ||
| 62 | |||
| 63 | asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 64 | (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp) | ||
| 65 | |||
| 66 | files: | ||
| 67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 68 | |||
| 69 | links: | ||
| 70 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 71 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 73 | |||
| 74 | install: installs | ||
| 75 | |||
| 76 | installs: | ||
| 77 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 78 | do \ | ||
| 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 81 | done; | ||
| 82 | |||
| 83 | tags: | ||
| 84 | ctags $(SRC) | ||
| 85 | |||
| 86 | tests: | ||
| 87 | |||
| 88 | lint: | ||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 90 | |||
| 91 | depend: | ||
| 92 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 93 | |||
| 94 | dclean: | ||
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 96 | mv -f Makefile.new $(MAKEFILE) | ||
| 97 | |||
| 98 | clean: | ||
| 99 | rm -f asm/bx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 100 | |||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 102 | |||
| 103 | bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 104 | bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h | ||
| 105 | bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 106 | bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 107 | bf_ecb.o: bf_ecb.c bf_locl.h | ||
| 108 | bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 109 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | ||
| 110 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 111 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | ||
| 112 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h | ||
| 113 | bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 114 | bf_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 115 | bf_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 116 | bf_skey.o: bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/bio/Makefile b/src/lib/libcrypto/bio/Makefile new file mode 100644 index 0000000000..19d9350760 --- /dev/null +++ b/src/lib/libcrypto/bio/Makefile | |||
| @@ -0,0 +1,214 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/bio/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= bio | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= bio_lib.c bio_cb.c bio_err.c \ | ||
| 26 | bss_mem.c bss_null.c bss_fd.c \ | ||
| 27 | bss_file.c bss_sock.c bss_conn.c \ | ||
| 28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | ||
| 29 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c | ||
| 30 | # bf_lbuf.c | ||
| 31 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | ||
| 32 | bss_mem.o bss_null.o bss_fd.o \ | ||
| 33 | bss_file.o bss_sock.o bss_conn.o \ | ||
| 34 | bf_null.o bf_buff.o b_print.o b_dump.o \ | ||
| 35 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o | ||
| 36 | # bf_lbuf.o | ||
| 37 | |||
| 38 | SRC= $(LIBSRC) | ||
| 39 | |||
| 40 | EXHEADER= bio.h | ||
| 41 | HEADER= bss_file.c $(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 | tests: | ||
| 74 | |||
| 75 | lint: | ||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 77 | |||
| 78 | depend: | ||
| 79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 80 | |||
| 81 | dclean: | ||
| 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 83 | mv -f Makefile.new $(MAKEFILE) | ||
| 84 | |||
| 85 | clean: | ||
| 86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 87 | |||
| 88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 89 | |||
| 90 | b_dump.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 91 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 92 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 93 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 94 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 95 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 96 | b_dump.o: ../cryptlib.h b_dump.c | ||
| 97 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 98 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 99 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 100 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 101 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 102 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | b_print.o: ../cryptlib.h b_print.c | ||
| 104 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 105 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 106 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 107 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 108 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 109 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 110 | b_sock.o: ../cryptlib.h b_sock.c | ||
| 111 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 112 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 113 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 114 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 115 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 116 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 117 | bf_buff.o: ../cryptlib.h bf_buff.c | ||
| 118 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 119 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 120 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 121 | bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 122 | bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 123 | bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 124 | bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 125 | bf_nbio.o: ../cryptlib.h bf_nbio.c | ||
| 126 | bf_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 127 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 128 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 129 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 130 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 131 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 132 | bf_null.o: ../cryptlib.h bf_null.c | ||
| 133 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 134 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 135 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 136 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 137 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 138 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 139 | bio_cb.o: ../cryptlib.h bio_cb.c | ||
| 140 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 141 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 142 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 143 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 144 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 145 | bio_err.o: bio_err.c | ||
| 146 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 147 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 148 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 149 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 150 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 151 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 152 | bio_lib.o: ../cryptlib.h bio_lib.c | ||
| 153 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 154 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 155 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 156 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 158 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 159 | bss_acpt.o: ../cryptlib.h bss_acpt.c | ||
| 160 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 161 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 162 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 163 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 164 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 165 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | ||
| 166 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 167 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 168 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 169 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 170 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 171 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 172 | bss_conn.o: ../cryptlib.h bss_conn.c | ||
| 173 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 174 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 175 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 176 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 177 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 178 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 179 | bss_fd.o: ../cryptlib.h bss_fd.c | ||
| 180 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 181 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 182 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 183 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 184 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 185 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 186 | bss_file.o: ../cryptlib.h bss_file.c | ||
| 187 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 188 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 189 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 190 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 191 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 192 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 193 | bss_log.o: ../cryptlib.h bss_log.c | ||
| 194 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 195 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 196 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 197 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 198 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 199 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 200 | bss_mem.o: ../cryptlib.h bss_mem.c | ||
| 201 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 202 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 203 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 204 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 205 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 206 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 207 | bss_null.o: ../cryptlib.h bss_null.c | ||
| 208 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 209 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 210 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 211 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 212 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 213 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 214 | bss_sock.o: ../cryptlib.h bss_sock.c | ||
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 | ||
diff --git a/src/lib/libcrypto/bn/bntest.c b/src/lib/libcrypto/bn/bntest.c index 3c8c540387..28cd3339da 100644 --- a/src/lib/libcrypto/bn/bntest.c +++ b/src/lib/libcrypto/bn/bntest.c | |||
| @@ -232,7 +232,7 @@ int main(int argc, char *argv[]) | |||
| 232 | EXIT(0); | 232 | EXIT(0); |
| 233 | err: | 233 | err: |
| 234 | BIO_puts(out,"1\n"); /* make sure the Perl script fed by bc notices | 234 | BIO_puts(out,"1\n"); /* make sure the Perl script fed by bc notices |
| 235 | * the failure, see test_bn in test/Makefile.ssl*/ | 235 | * the failure, see test_bn in test/Makefile */ |
| 236 | BIO_flush(out); | 236 | BIO_flush(out); |
| 237 | ERR_load_crypto_strings(); | 237 | ERR_load_crypto_strings(); |
| 238 | ERR_print_errors_fp(stderr); | 238 | ERR_print_errors_fp(stderr); |
diff --git a/src/lib/libcrypto/buffer/Makefile b/src/lib/libcrypto/buffer/Makefile new file mode 100644 index 0000000000..3911baf513 --- /dev/null +++ b/src/lib/libcrypto/buffer/Makefile | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/buffer/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= buffer | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= buffer.c buf_err.c | ||
| 26 | LIBOBJ= buffer.o buf_err.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= buffer.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 81 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 82 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 83 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 84 | buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 85 | buf_err.o: ../../include/openssl/symhacks.h buf_err.c | ||
| 86 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 87 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 88 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 89 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 90 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 91 | buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 92 | buffer.o: ../cryptlib.h buffer.c | ||
diff --git a/src/lib/libcrypto/cast/Makefile b/src/lib/libcrypto/cast/Makefile new file mode 100644 index 0000000000..8b0d04bb7c --- /dev/null +++ b/src/lib/libcrypto/cast/Makefile | |||
| @@ -0,0 +1,120 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/cast/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= cast | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | CAST_ENC=c_enc.o | ||
| 20 | # or use | ||
| 21 | #CAST_ENC=asm/cx86-elf.o | ||
| 22 | #CAST_ENC=asm/cx86-out.o | ||
| 23 | #CAST_ENC=asm/cx86-sol.o | ||
| 24 | #CAST_ENC=asm/cx86bdsi.o | ||
| 25 | |||
| 26 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 27 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 28 | |||
| 29 | GENERAL=Makefile | ||
| 30 | TEST=casttest.c | ||
| 31 | APPS= | ||
| 32 | |||
| 33 | LIB=$(TOP)/libcrypto.a | ||
| 34 | LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c | ||
| 35 | LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o | ||
| 36 | |||
| 37 | SRC= $(LIBSRC) | ||
| 38 | |||
| 39 | EXHEADER= cast.h | ||
| 40 | HEADER= cast_s.h cast_lcl.h $(EXHEADER) | ||
| 41 | |||
| 42 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 43 | |||
| 44 | top: | ||
| 45 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 46 | |||
| 47 | all: lib | ||
| 48 | |||
| 49 | lib: $(LIBOBJ) | ||
| 50 | $(AR) $(LIB) $(LIBOBJ) | ||
| 51 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 52 | @touch lib | ||
| 53 | |||
| 54 | # elf | ||
| 55 | asm/cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 56 | (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > cx86-elf.s) | ||
| 57 | |||
| 58 | # a.out | ||
| 59 | asm/cx86-out.o: asm/cx86unix.cpp | ||
| 60 | $(CPP) -DOUT asm/cx86unix.cpp | as -o asm/cx86-out.o | ||
| 61 | |||
| 62 | # bsdi | ||
| 63 | asm/cx86bsdi.o: asm/cx86unix.cpp | ||
| 64 | $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o | ||
| 65 | |||
| 66 | asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 67 | (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp) | ||
| 68 | |||
| 69 | files: | ||
| 70 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 71 | |||
| 72 | links: | ||
| 73 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 74 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 75 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 76 | |||
| 77 | install: | ||
| 78 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 79 | do \ | ||
| 80 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 81 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 82 | done; | ||
| 83 | |||
| 84 | tags: | ||
| 85 | ctags $(SRC) | ||
| 86 | |||
| 87 | tests: | ||
| 88 | |||
| 89 | lint: | ||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 91 | |||
| 92 | depend: | ||
| 93 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 94 | |||
| 95 | dclean: | ||
| 96 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 97 | mv -f Makefile.new $(MAKEFILE) | ||
| 98 | |||
| 99 | clean: | ||
| 100 | rm -f asm/cx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 101 | |||
| 102 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 103 | |||
| 104 | c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 105 | c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 106 | c_cfb64.o: c_cfb64.c cast_lcl.h | ||
| 107 | c_ecb.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 108 | c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 109 | c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h | ||
| 110 | c_enc.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 111 | c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 112 | c_enc.o: c_enc.c cast_lcl.h | ||
| 113 | c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 114 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 115 | c_ofb64.o: c_ofb64.c cast_lcl.h | ||
| 116 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 117 | c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 118 | c_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 119 | c_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 120 | c_skey.o: ../../include/openssl/symhacks.h c_skey.c cast_lcl.h cast_s.h | ||
diff --git a/src/lib/libcrypto/comp/Makefile b/src/lib/libcrypto/comp/Makefile new file mode 100644 index 0000000000..68109a8013 --- /dev/null +++ b/src/lib/libcrypto/comp/Makefile | |||
| @@ -0,0 +1,113 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/comp/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= comp | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= comp_lib.c comp_err.c \ | ||
| 26 | c_rle.c c_zlib.c | ||
| 27 | |||
| 28 | LIBOBJ= comp_lib.o comp_err.o \ | ||
| 29 | c_rle.o c_zlib.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= comp.h | ||
| 34 | HEADER= $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 55 | |||
| 56 | install: | ||
| 57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 58 | do \ | ||
| 59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 61 | done; | ||
| 62 | |||
| 63 | tags: | ||
| 64 | ctags $(SRC) | ||
| 65 | |||
| 66 | tests: | ||
| 67 | |||
| 68 | lint: | ||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 70 | |||
| 71 | depend: | ||
| 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 73 | |||
| 74 | dclean: | ||
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 76 | mv -f Makefile.new $(MAKEFILE) | ||
| 77 | |||
| 78 | clean: | ||
| 79 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 80 | |||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 82 | |||
| 83 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 84 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 85 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 86 | c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 88 | c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 89 | c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c | ||
| 90 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 91 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 92 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 93 | c_zlib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 94 | c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 95 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 96 | c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 97 | c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 98 | c_zlib.o: c_zlib.c | ||
| 99 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h | ||
| 100 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 101 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 102 | comp_err.o: ../../include/openssl/opensslconf.h | ||
| 103 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 104 | comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 105 | comp_err.o: comp_err.c | ||
| 106 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 107 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 108 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 109 | comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 110 | comp_lib.o: ../../include/openssl/opensslconf.h | ||
| 111 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 113 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | ||
diff --git a/src/lib/libcrypto/conf/Makefile b/src/lib/libcrypto/conf/Makefile new file mode 100644 index 0000000000..6d2f8ffd9a --- /dev/null +++ b/src/lib/libcrypto/conf/Makefile | |||
| @@ -0,0 +1,181 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/conf/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= conf | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \ | ||
| 26 | conf_mall.c conf_sap.c | ||
| 27 | |||
| 28 | LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \ | ||
| 29 | conf_mall.o conf_sap.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= conf.h conf_api.h | ||
| 34 | HEADER= conf_def.h $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 55 | |||
| 56 | install: | ||
| 57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 58 | do \ | ||
| 59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 61 | done; | ||
| 62 | |||
| 63 | tags: | ||
| 64 | ctags $(SRC) | ||
| 65 | |||
| 66 | tests: | ||
| 67 | |||
| 68 | lint: | ||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 70 | |||
| 71 | depend: | ||
| 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 73 | |||
| 74 | dclean: | ||
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 76 | mv -f Makefile.new $(MAKEFILE) | ||
| 77 | |||
| 78 | clean: | ||
| 79 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 80 | |||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 82 | |||
| 83 | conf_api.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 84 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
| 85 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 86 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 87 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 88 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 89 | conf_api.o: conf_api.c | ||
| 90 | conf_def.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 91 | conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 92 | conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | ||
| 93 | conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 94 | conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 95 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 96 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | conf_def.o: ../cryptlib.h conf_def.c conf_def.h | ||
| 98 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 99 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 100 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 101 | conf_err.o: ../../include/openssl/opensslconf.h | ||
| 102 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 103 | conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 104 | conf_err.o: conf_err.c | ||
| 105 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 106 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | ||
| 107 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 108 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 109 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 110 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 111 | conf_lib.o: conf_lib.c | ||
| 112 | conf_mall.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 113 | conf_mall.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 114 | conf_mall.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 115 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 116 | conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 117 | conf_mall.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 118 | conf_mall.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 119 | conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 120 | conf_mall.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 121 | conf_mall.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 122 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 123 | conf_mall.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 124 | conf_mall.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 125 | conf_mall.o: ../../include/openssl/objects.h | ||
| 126 | conf_mall.o: ../../include/openssl/opensslconf.h | ||
| 127 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 128 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 129 | conf_mall.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 130 | conf_mall.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 131 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 132 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 133 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 134 | conf_mall.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 135 | conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c | ||
| 136 | conf_mod.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 137 | conf_mod.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 138 | conf_mod.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 139 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 140 | conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 141 | conf_mod.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 142 | conf_mod.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 143 | conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 144 | conf_mod.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 145 | conf_mod.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 146 | conf_mod.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 147 | conf_mod.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 148 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 149 | conf_mod.o: ../../include/openssl/opensslconf.h | ||
| 150 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 151 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 152 | conf_mod.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 153 | conf_mod.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 154 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 155 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 156 | conf_mod.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 157 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 158 | conf_mod.o: ../cryptlib.h conf_mod.c | ||
| 159 | conf_sap.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 160 | conf_sap.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 161 | conf_sap.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 162 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 163 | conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 164 | conf_sap.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 165 | conf_sap.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 166 | conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 167 | conf_sap.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 168 | conf_sap.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 169 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 170 | conf_sap.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 171 | conf_sap.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 172 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 173 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 174 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 175 | conf_sap.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 176 | conf_sap.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 177 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 178 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 179 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 180 | conf_sap.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 181 | conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c | ||
diff --git a/src/lib/libcrypto/crypto-lib.com b/src/lib/libcrypto/crypto-lib.com index 39e78c69e5..c044ce0099 100644 --- a/src/lib/libcrypto/crypto-lib.com +++ b/src/lib/libcrypto/crypto-lib.com | |||
| @@ -158,7 +158,7 @@ $! | |||
| 158 | $ APPS_DES = "DES/DES,CBC3_ENC" | 158 | $ APPS_DES = "DES/DES,CBC3_ENC" |
| 159 | $ APPS_PKCS7 = "ENC/ENC;DEC/DEC;SIGN/SIGN;VERIFY/VERIFY,EXAMPLE" | 159 | $ APPS_PKCS7 = "ENC/ENC;DEC/DEC;SIGN/SIGN;VERIFY/VERIFY,EXAMPLE" |
| 160 | $ | 160 | $ |
| 161 | $ LIB_ = "cryptlib,mem,mem_clr,mem_dbg,cversion,ex_data,tmdiff,cpt_err,ebcdic,uid,o_time" | 161 | $ LIB_ = "cryptlib,mem,mem_clr,mem_dbg,cversion,ex_data,tmdiff,cpt_err,ebcdic,uid,o_time,o_str" |
| 162 | $ LIB_MD2 = "md2_dgst,md2_one" | 162 | $ LIB_MD2 = "md2_dgst,md2_one" |
| 163 | $ LIB_MD4 = "md4_dgst,md4_one" | 163 | $ LIB_MD4 = "md4_dgst,md4_one" |
| 164 | $ LIB_MD5 = "md5_dgst,md5_one" | 164 | $ LIB_MD5 = "md5_dgst,md5_one" |
| @@ -247,7 +247,7 @@ $ LIB_X509 = "x509_def,x509_d2,x509_r2x,x509_cmp,"+ - | |||
| 247 | $ LIB_X509V3 = "v3_bcons,v3_bitst,v3_conf,v3_extku,v3_ia5,v3_lib,"+ - | 247 | $ LIB_X509V3 = "v3_bcons,v3_bitst,v3_conf,v3_extku,v3_ia5,v3_lib,"+ - |
| 248 | "v3_prn,v3_utl,v3err,v3_genn,v3_alt,v3_skey,v3_akey,v3_pku,"+ - | 248 | "v3_prn,v3_utl,v3err,v3_genn,v3_alt,v3_skey,v3_akey,v3_pku,"+ - |
| 249 | "v3_int,v3_enum,v3_sxnet,v3_cpols,v3_crld,v3_purp,v3_info,"+ - | 249 | "v3_int,v3_enum,v3_sxnet,v3_cpols,v3_crld,v3_purp,v3_info,"+ - |
| 250 | "v3_ocsp,v3_akeya" | 250 | "v3_ocsp,v3_akeya,v3_pcia,v3_pci" |
| 251 | $ LIB_CONF = "conf_err,conf_lib,conf_api,conf_def,conf_mod,conf_mall,conf_sap" | 251 | $ LIB_CONF = "conf_err,conf_lib,conf_api,conf_def,conf_mod,conf_mall,conf_sap" |
| 252 | $ LIB_TXT_DB = "txt_db" | 252 | $ LIB_TXT_DB = "txt_db" |
| 253 | $ LIB_PKCS7 = "pk7_asn1,pk7_lib,pkcs7err,pk7_doit,pk7_smime,pk7_attr,"+ - | 253 | $ LIB_PKCS7 = "pk7_asn1,pk7_lib,pkcs7err,pk7_doit,pk7_smime,pk7_attr,"+ - |
| @@ -752,8 +752,8 @@ $ WRITE SYS$OUTPUT "" | |||
| 752 | $ WRITE SYS$OUTPUT "The Option ",P1," Is Invalid. The Valid Options Are:" | 752 | $ WRITE SYS$OUTPUT "The Option ",P1," Is Invalid. The Valid Options Are:" |
| 753 | $ WRITE SYS$OUTPUT "" | 753 | $ WRITE SYS$OUTPUT "" |
| 754 | $ WRITE SYS$OUTPUT " ALL : Just Build Everything." | 754 | $ WRITE SYS$OUTPUT " ALL : Just Build Everything." |
| 755 | $ WRITE SYS$OUTPUT " LIBRARY : To Compile Just The [.xxx.EXE.SSL]LIBCRYPTO.OLB Library." | 755 | $ WRITE SYS$OUTPUT " LIBRARY : To Compile Just The [.xxx.EXE.CRYPTO]LIBCRYPTO.OLB Library." |
| 756 | $ WRITE SYS$OUTPUT " APPS : To Compile Just The [.xxx.EXE.SSL]*.EXE Programs." | 756 | $ WRITE SYS$OUTPUT " APPS : To Compile Just The [.xxx.EXE.CRYPTO]*.EXE Programs." |
| 757 | $ WRITE SYS$OUTPUT "" | 757 | $ WRITE SYS$OUTPUT "" |
| 758 | $ WRITE SYS$OUTPUT " Where 'xxx' Stands For:" | 758 | $ WRITE SYS$OUTPUT " Where 'xxx' Stands For:" |
| 759 | $ WRITE SYS$OUTPUT "" | 759 | $ WRITE SYS$OUTPUT "" |
diff --git a/src/lib/libcrypto/des/FILES0 b/src/lib/libcrypto/des/FILES0 index 4c7ea2de7a..1c2e1f75b9 100644 --- a/src/lib/libcrypto/des/FILES0 +++ b/src/lib/libcrypto/des/FILES0 | |||
| @@ -8,7 +8,7 @@ README - What this package is. | |||
| 8 | VERSION - Which version this is and what was changed. | 8 | VERSION - Which version this is and what was changed. |
| 9 | KERBEROS - Kerberos version 4 notes. | 9 | KERBEROS - Kerberos version 4 notes. |
| 10 | Makefile.PL - An old makefile to build with perl5, not current. | 10 | Makefile.PL - An old makefile to build with perl5, not current. |
| 11 | Makefile.ssl - The SSLeay makefile | 11 | Makefile - The SSLeay makefile |
| 12 | Makefile.uni - The normal unix makefile. | 12 | Makefile.uni - The normal unix makefile. |
| 13 | GNUmakefile - The makefile for use with glibc. | 13 | GNUmakefile - The makefile for use with glibc. |
| 14 | makefile.bc - A Borland C makefile | 14 | makefile.bc - A Borland C makefile |
diff --git a/src/lib/libcrypto/des/Makefile b/src/lib/libcrypto/des/Makefile new file mode 100644 index 0000000000..655f2ea1a8 --- /dev/null +++ b/src/lib/libcrypto/des/Makefile | |||
| @@ -0,0 +1,314 @@ | |||
| 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 | MAKEDEPPROG= makedepend | ||
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 16 | MAKEFILE= Makefile | ||
| 17 | AR= ar r | ||
| 18 | RANLIB= ranlib | ||
| 19 | DES_ENC= des_enc.o fcrypt_b.o | ||
| 20 | # or use | ||
| 21 | #DES_ENC= dx86-elf.o yx86-elf.o | ||
| 22 | |||
| 23 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 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.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 70 | (cd asm; $(PERL) des-586.pl elf $(CFLAGS) > dx86-elf.s) | ||
| 71 | |||
| 72 | asm/yx86-elf.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 73 | (cd asm; $(PERL) crypt586.pl elf $(CFLAGS) > yx86-elf.s) | ||
| 74 | |||
| 75 | # a.out | ||
| 76 | asm/dx86-out.o: asm/dx86unix.cpp | ||
| 77 | $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o | ||
| 78 | |||
| 79 | asm/yx86-out.o: asm/yx86unix.cpp | ||
| 80 | $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o | ||
| 81 | |||
| 82 | # bsdi | ||
| 83 | asm/dx86bsdi.o: asm/dx86unix.cpp | ||
| 84 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o | ||
| 85 | |||
| 86 | asm/yx86bsdi.o: asm/yx86unix.cpp | ||
| 87 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o | ||
| 88 | |||
| 89 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 90 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) | ||
| 91 | |||
| 92 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl | ||
| 93 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) | ||
| 94 | |||
| 95 | files: | ||
| 96 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 97 | |||
| 98 | links: | ||
| 99 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 100 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 101 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 102 | |||
| 103 | install: installs | ||
| 104 | |||
| 105 | installs: | ||
| 106 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 107 | do \ | ||
| 108 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 109 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 110 | done; | ||
| 111 | |||
| 112 | tags: | ||
| 113 | ctags $(SRC) | ||
| 114 | |||
| 115 | tests: | ||
| 116 | |||
| 117 | lint: | ||
| 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 119 | |||
| 120 | depend: | ||
| 121 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 122 | |||
| 123 | dclean: | ||
| 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 125 | mv -f Makefile.new $(MAKEFILE) | ||
| 126 | |||
| 127 | clean: | ||
| 128 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff | ||
| 129 | |||
| 130 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 131 | |||
| 132 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 133 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 134 | cbc_cksm.o: ../../include/openssl/opensslconf.h | ||
| 135 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 136 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 137 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 138 | cbc_cksm.o: cbc_cksm.c des_locl.h | ||
| 139 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 140 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 141 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 142 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 143 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 144 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | ||
| 145 | cfb64ede.o: ../../e_os.h ../../include/openssl/crypto.h | ||
| 146 | cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 147 | cfb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 148 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 149 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 150 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 151 | cfb64ede.o: cfb64ede.c des_locl.h | ||
| 152 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 153 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 154 | cfb64enc.o: ../../include/openssl/opensslconf.h | ||
| 155 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 156 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 157 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 158 | cfb64enc.o: cfb64enc.c des_locl.h | ||
| 159 | cfb_enc.o: ../../e_os.h ../../include/openssl/crypto.h | ||
| 160 | cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 161 | cfb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 162 | cfb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 163 | cfb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 164 | cfb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 165 | cfb_enc.o: cfb_enc.c des_locl.h | ||
| 166 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 167 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 168 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 169 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 170 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 171 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | ||
| 172 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 174 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 175 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 176 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 177 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 178 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | ||
| 179 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 180 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 181 | des_old2.o: ../../include/openssl/opensslconf.h | ||
| 182 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 184 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 185 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 186 | des_old2.o: des_old2.c | ||
| 187 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 188 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 189 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
| 190 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 191 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 192 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 193 | ecb3_enc.o: des_locl.h ecb3_enc.c | ||
| 194 | ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 195 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 196 | ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 197 | ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 198 | ecb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 199 | ecb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 200 | ecb_enc.o: des_locl.h des_ver.h ecb_enc.c spr.h | ||
| 201 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 202 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 203 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | ||
| 204 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h | ||
| 205 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 206 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 207 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | ||
| 208 | enc_read.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 209 | enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 210 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 211 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 212 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 213 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 214 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 215 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 216 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | ||
| 217 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 218 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 219 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 220 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 221 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 222 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 223 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 224 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 225 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 226 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | ||
| 227 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 228 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 229 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 230 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 231 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 232 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | ||
| 233 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 234 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 235 | fcrypt_b.o: ../../include/openssl/opensslconf.h | ||
| 236 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 237 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 238 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 239 | fcrypt_b.o: des_locl.h fcrypt_b.c | ||
| 240 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 241 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 242 | ofb64ede.o: ../../include/openssl/opensslconf.h | ||
| 243 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 244 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 245 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 246 | ofb64ede.o: des_locl.h ofb64ede.c | ||
| 247 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 248 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 249 | ofb64enc.o: ../../include/openssl/opensslconf.h | ||
| 250 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 251 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 252 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 253 | ofb64enc.o: des_locl.h ofb64enc.c | ||
| 254 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 255 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 256 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 257 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 258 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 259 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | ||
| 260 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 261 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 262 | pcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 263 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 264 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 265 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 266 | pcbc_enc.o: des_locl.h pcbc_enc.c | ||
| 267 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 268 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 269 | qud_cksm.o: ../../include/openssl/opensslconf.h | ||
| 270 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 271 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 272 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 273 | qud_cksm.o: des_locl.h qud_cksm.c | ||
| 274 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 275 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 276 | rand_key.o: ../../include/openssl/opensslconf.h | ||
| 277 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 278 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 279 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 280 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 281 | rand_key.o: rand_key.c | ||
| 282 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 283 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 284 | read2pwd.o: ../../include/openssl/opensslconf.h | ||
| 285 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 286 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 287 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 288 | read2pwd.o: read2pwd.c | ||
| 289 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 290 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 291 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 292 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 293 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 294 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | ||
| 295 | rpc_enc.o: rpc_enc.c | ||
| 296 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 297 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 298 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 299 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 300 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 301 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
| 302 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 303 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 304 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 305 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 306 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 307 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | ||
| 308 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 309 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 310 | xcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 311 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 312 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 313 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 314 | xcbc_enc.o: des_locl.h xcbc_enc.c | ||
diff --git a/src/lib/libcrypto/des/des_old.c b/src/lib/libcrypto/des/des_old.c index 7e4cd7180d..88e9802aad 100644 --- a/src/lib/libcrypto/des/des_old.c +++ b/src/lib/libcrypto/des/des_old.c | |||
| @@ -84,7 +84,7 @@ void _ossl_old_des_ecb3_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock | |||
| 84 | des_key_schedule ks1,des_key_schedule ks2, | 84 | des_key_schedule ks1,des_key_schedule ks2, |
| 85 | des_key_schedule ks3, int enc) | 85 | des_key_schedule ks3, int enc) |
| 86 | { | 86 | { |
| 87 | DES_ecb3_encrypt((const_DES_cblock *)input, output, | 87 | DES_ecb3_encrypt((const unsigned char *)input, (unsigned char *)output, |
| 88 | (DES_key_schedule *)ks1, (DES_key_schedule *)ks2, | 88 | (DES_key_schedule *)ks1, (DES_key_schedule *)ks2, |
| 89 | (DES_key_schedule *)ks3, enc); | 89 | (DES_key_schedule *)ks3, enc); |
| 90 | } | 90 | } |
diff --git a/src/lib/libcrypto/des/destest.c b/src/lib/libcrypto/des/destest.c index 3983ac8e5f..e3e9d77f14 100644 --- a/src/lib/libcrypto/des/destest.c +++ b/src/lib/libcrypto/des/destest.c | |||
| @@ -439,8 +439,8 @@ int main(int argc, char *argv[]) | |||
| 439 | memcpy(in,plain_data[i],8); | 439 | memcpy(in,plain_data[i],8); |
| 440 | memset(out,0,8); | 440 | memset(out,0,8); |
| 441 | memset(outin,0,8); | 441 | memset(outin,0,8); |
| 442 | des_ecb2_encrypt(&in,&out,ks,ks2,DES_ENCRYPT); | 442 | des_ecb2_encrypt(in,out,ks,ks2,DES_ENCRYPT); |
| 443 | des_ecb2_encrypt(&out,&outin,ks,ks2,DES_DECRYPT); | 443 | des_ecb2_encrypt(out,outin,ks,ks2,DES_DECRYPT); |
| 444 | 444 | ||
| 445 | if (memcmp(out,cipher_ecb2[i],8) != 0) | 445 | if (memcmp(out,cipher_ecb2[i],8) != 0) |
| 446 | { | 446 | { |
diff --git a/src/lib/libcrypto/dh/Makefile b/src/lib/libcrypto/dh/Makefile new file mode 100644 index 0000000000..c091a8130a --- /dev/null +++ b/src/lib/libcrypto/dh/Makefile | |||
| @@ -0,0 +1,131 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/dh/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= dh | ||
| 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= dhtest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c | ||
| 26 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= dh.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 81 | dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 82 | dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 83 | dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 84 | dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 86 | dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 87 | dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 88 | dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 89 | dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c | ||
| 90 | dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 91 | dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 92 | dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 93 | dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 94 | dh_check.o: ../../include/openssl/opensslconf.h | ||
| 95 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 96 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 97 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c | ||
| 98 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 99 | dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 100 | dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 101 | dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 102 | dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 103 | dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 104 | dh_err.o: ../../include/openssl/symhacks.h dh_err.c | ||
| 105 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 108 | dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 109 | dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 110 | dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 111 | dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | dh_gen.o: ../cryptlib.h dh_gen.c | ||
| 113 | dh_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 114 | dh_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 115 | dh_key.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 116 | dh_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 117 | dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 118 | dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 119 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 120 | dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c | ||
| 121 | dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 122 | dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 123 | dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 124 | dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 125 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 126 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 127 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 128 | dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 129 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 130 | dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 131 | dh_lib.o: ../cryptlib.h dh_lib.c | ||
diff --git a/src/lib/libcrypto/dsa/Makefile b/src/lib/libcrypto/dsa/Makefile new file mode 100644 index 0000000000..3a55058973 --- /dev/null +++ b/src/lib/libcrypto/dsa/Makefile | |||
| @@ -0,0 +1,173 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/dsa/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= dsa | ||
| 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=dsatest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ | ||
| 26 | dsa_err.c dsa_ossl.c | ||
| 27 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ | ||
| 28 | dsa_err.o dsa_ossl.o | ||
| 29 | |||
| 30 | SRC= $(LIBSRC) | ||
| 31 | |||
| 32 | EXHEADER= dsa.h | ||
| 33 | HEADER= $(EXHEADER) | ||
| 34 | |||
| 35 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 36 | |||
| 37 | top: | ||
| 38 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 39 | |||
| 40 | all: lib | ||
| 41 | |||
| 42 | lib: $(LIBOBJ) | ||
| 43 | $(AR) $(LIB) $(LIBOBJ) | ||
| 44 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 45 | @touch lib | ||
| 46 | |||
| 47 | files: | ||
| 48 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 49 | |||
| 50 | links: | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 54 | |||
| 55 | install: | ||
| 56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 57 | do \ | ||
| 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 60 | done; | ||
| 61 | |||
| 62 | tags: | ||
| 63 | ctags $(SRC) | ||
| 64 | |||
| 65 | tests: | ||
| 66 | |||
| 67 | lint: | ||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 69 | |||
| 70 | depend: | ||
| 71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 72 | |||
| 73 | dclean: | ||
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 75 | mv -f Makefile.new $(MAKEFILE) | ||
| 76 | |||
| 77 | clean: | ||
| 78 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 79 | |||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 81 | |||
| 82 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 83 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 84 | dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 85 | dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 86 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 87 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 88 | dsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 89 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 90 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 91 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c | ||
| 92 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 93 | dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 94 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 95 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 96 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 97 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 98 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | dsa_err.o: dsa_err.c | ||
| 100 | dsa_gen.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 101 | dsa_gen.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 102 | dsa_gen.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 103 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 104 | dsa_gen.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 105 | dsa_gen.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 106 | dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 107 | dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 108 | dsa_gen.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 109 | dsa_gen.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 110 | dsa_gen.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 111 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 112 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 113 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 114 | dsa_gen.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 115 | dsa_gen.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 116 | dsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 117 | dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 118 | dsa_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 119 | dsa_gen.o: ../../include/openssl/ui_compat.h ../cryptlib.h dsa_gen.c | ||
| 120 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 121 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 122 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 123 | dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 124 | dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 125 | dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 126 | dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 127 | dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 128 | dsa_key.o: ../cryptlib.h dsa_key.c | ||
| 129 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 130 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 131 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 132 | dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 133 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 134 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 135 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 136 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 137 | dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 138 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 139 | dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c | ||
| 140 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 141 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 142 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 143 | dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 144 | dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 145 | dsa_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 146 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 147 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 148 | dsa_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 149 | dsa_ossl.o: ../cryptlib.h dsa_ossl.c | ||
| 150 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 151 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 152 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 153 | dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 154 | dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 155 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/fips.h | ||
| 156 | dsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 158 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 159 | dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 160 | dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 161 | dsa_sign.o: ../cryptlib.h dsa_sign.c | ||
| 162 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 163 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 164 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 165 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 166 | dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 167 | dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 168 | dsa_vrf.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 169 | dsa_vrf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 170 | dsa_vrf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 171 | dsa_vrf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 172 | dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 173 | dsa_vrf.o: ../../include/openssl/ui.h ../cryptlib.h dsa_vrf.c | ||
diff --git a/src/lib/libcrypto/dso/Makefile b/src/lib/libcrypto/dso/Makefile new file mode 100644 index 0000000000..168951bc3e --- /dev/null +++ b/src/lib/libcrypto/dso/Makefile | |||
| @@ -0,0 +1,140 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/dso/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= dso | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ | ||
| 26 | dso_openssl.c dso_win32.c dso_vms.c | ||
| 27 | LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ | ||
| 28 | dso_openssl.o dso_win32.o dso_vms.o | ||
| 29 | |||
| 30 | SRC= $(LIBSRC) | ||
| 31 | |||
| 32 | EXHEADER= dso.h | ||
| 33 | HEADER= $(EXHEADER) | ||
| 34 | |||
| 35 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 36 | |||
| 37 | top: | ||
| 38 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 39 | |||
| 40 | all: lib | ||
| 41 | |||
| 42 | lib: $(LIBOBJ) | ||
| 43 | $(AR) $(LIB) $(LIBOBJ) | ||
| 44 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 45 | @touch lib | ||
| 46 | |||
| 47 | files: | ||
| 48 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 49 | |||
| 50 | links: | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 54 | |||
| 55 | install: | ||
| 56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 57 | do \ | ||
| 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 60 | done; | ||
| 61 | |||
| 62 | tags: | ||
| 63 | ctags $(SRC) | ||
| 64 | |||
| 65 | tests: | ||
| 66 | |||
| 67 | lint: | ||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 69 | |||
| 70 | depend: | ||
| 71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 72 | |||
| 73 | dclean: | ||
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 75 | mv -f Makefile.new $(MAKEFILE) | ||
| 76 | |||
| 77 | clean: | ||
| 78 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 79 | |||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 81 | |||
| 82 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 85 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 86 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 87 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 88 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c | ||
| 89 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 90 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 91 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 92 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 93 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | ||
| 94 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 95 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 96 | dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c | ||
| 97 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 98 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 99 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 100 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 101 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 102 | dso_err.o: ../../include/openssl/symhacks.h dso_err.c | ||
| 103 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 104 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 105 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 106 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 107 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 108 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 109 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c | ||
| 110 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 111 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 112 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 114 | dso_null.o: ../../include/openssl/opensslconf.h | ||
| 115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 116 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 117 | dso_null.o: ../cryptlib.h dso_null.c | ||
| 118 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 119 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 120 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 122 | dso_openssl.o: ../../include/openssl/opensslconf.h | ||
| 123 | dso_openssl.o: ../../include/openssl/opensslv.h | ||
| 124 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 125 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c | ||
| 126 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 127 | dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 128 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 129 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 130 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 131 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 132 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c | ||
| 133 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 134 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 135 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 136 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 137 | dso_win32.o: ../../include/openssl/opensslconf.h | ||
| 138 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 139 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 140 | dso_win32.o: ../cryptlib.h dso_win32.c | ||
diff --git a/src/lib/libcrypto/dso/dso_win32.c b/src/lib/libcrypto/dso/dso_win32.c index 6c30deb250..3fa90eb27c 100644 --- a/src/lib/libcrypto/dso/dso_win32.c +++ b/src/lib/libcrypto/dso/dso_win32.c | |||
| @@ -61,7 +61,7 @@ | |||
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/dso.h> | 62 | #include <openssl/dso.h> |
| 63 | 63 | ||
| 64 | #if !defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WINCE) | 64 | #if !defined(DSO_WIN32) |
| 65 | DSO_METHOD *DSO_METHOD_win32(void) | 65 | DSO_METHOD *DSO_METHOD_win32(void) |
| 66 | { | 66 | { |
| 67 | return NULL; | 67 | return NULL; |
diff --git a/src/lib/libcrypto/ec/Makefile b/src/lib/libcrypto/ec/Makefile new file mode 100644 index 0000000000..8f03658ad4 --- /dev/null +++ b/src/lib/libcrypto/ec/Makefile | |||
| @@ -0,0 +1,126 @@ | |||
| 1 | # | ||
| 2 | # crypto/ec/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= ec | ||
| 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=ectest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_recp.c ecp_nist.c ec_cvt.c ec_mult.c \ | ||
| 26 | ec_err.c | ||
| 27 | |||
| 28 | LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_recp.o ecp_nist.o ec_cvt.o ec_mult.o \ | ||
| 29 | ec_err.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= ec.h | ||
| 34 | HEADER= ec_lcl.h $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 55 | |||
| 56 | install: | ||
| 57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 58 | do \ | ||
| 59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 61 | done; | ||
| 62 | |||
| 63 | tags: | ||
| 64 | ctags $(SRC) | ||
| 65 | |||
| 66 | tests: | ||
| 67 | |||
| 68 | lint: | ||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 70 | |||
| 71 | depend: | ||
| 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 73 | |||
| 74 | dclean: | ||
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 76 | mv -f Makefile.new $(MAKEFILE) | ||
| 77 | |||
| 78 | clean: | ||
| 79 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 80 | |||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 82 | |||
| 83 | ec_cvt.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 84 | ec_cvt.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | ||
| 85 | ec_cvt.o: ../../include/openssl/symhacks.h ec_cvt.c ec_lcl.h | ||
| 86 | ec_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 87 | ec_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 88 | ec_err.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 89 | ec_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 90 | ec_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 91 | ec_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 92 | ec_err.o: ec_err.c | ||
| 93 | ec_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 94 | ec_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 95 | ec_lib.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 96 | ec_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 97 | ec_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 98 | ec_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | ec_lib.o: ec_lcl.h ec_lib.c | ||
| 100 | ec_mult.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 101 | ec_mult.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 102 | ec_mult.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 103 | ec_mult.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 104 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | ec_mult.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 106 | ec_mult.o: ec_lcl.h ec_mult.c | ||
| 107 | ecp_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 108 | ecp_mont.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 109 | ecp_mont.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 110 | ecp_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 111 | ecp_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 112 | ecp_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 113 | ecp_mont.o: ec_lcl.h ecp_mont.c | ||
| 114 | ecp_nist.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 115 | ecp_nist.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | ||
| 116 | ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c | ||
| 117 | ecp_recp.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 118 | ecp_recp.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | ||
| 119 | ecp_recp.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_recp.c | ||
| 120 | ecp_smpl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 121 | ecp_smpl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 122 | ecp_smpl.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 123 | ecp_smpl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 124 | ecp_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 125 | ecp_smpl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 126 | ecp_smpl.o: ec_lcl.h ecp_smpl.c | ||
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; |
diff --git a/src/lib/libcrypto/err/Makefile b/src/lib/libcrypto/err/Makefile new file mode 100644 index 0000000000..149f3e0eb9 --- /dev/null +++ b/src/lib/libcrypto/err/Makefile | |||
| @@ -0,0 +1,118 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/err/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= err | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=err.c err_all.c err_prn.c | ||
| 26 | LIBOBJ=err.o err_all.o err_prn.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= err.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 81 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 82 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 83 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 84 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 85 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | ||
| 86 | err_all.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 87 | err_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 88 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 89 | err_all.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 90 | err_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 91 | err_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 92 | err_all.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 93 | err_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 94 | err_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 95 | err_all.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 96 | err_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 97 | err_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 98 | err_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 99 | err_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 100 | err_all.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 101 | err_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 102 | err_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 103 | err_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 104 | err_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 105 | err_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 106 | err_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 107 | err_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 108 | err_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 109 | err_all.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 110 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 111 | err_all.o: err_all.c | ||
| 112 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 113 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 114 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 115 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 116 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 117 | err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 118 | err_prn.o: ../cryptlib.h err_prn.c | ||
diff --git a/src/lib/libcrypto/evp/Makefile b/src/lib/libcrypto/evp/Makefile new file mode 100644 index 0000000000..5027a3855a --- /dev/null +++ b/src/lib/libcrypto/evp/Makefile | |||
| @@ -0,0 +1,1076 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/evp/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= evp | ||
| 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=evp_test.c | ||
| 22 | TESTDATA=evptests.txt | ||
| 23 | APPS= | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ | ||
| 27 | e_des.c e_bf.c e_idea.c e_des3.c \ | ||
| 28 | e_rc4.c e_aes.c names.c \ | ||
| 29 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ | ||
| 30 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ | ||
| 31 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \ | ||
| 32 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ | ||
| 33 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ | ||
| 34 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ | ||
| 35 | evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c \ | ||
| 36 | e_old.c | ||
| 37 | |||
| 38 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ | ||
| 39 | e_des.o e_bf.o e_idea.o e_des3.o \ | ||
| 40 | e_rc4.o e_aes.o names.o \ | ||
| 41 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ | ||
| 42 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ | ||
| 43 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \ | ||
| 44 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ | ||
| 45 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ | ||
| 46 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ | ||
| 47 | evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o \ | ||
| 48 | e_old.o | ||
| 49 | |||
| 50 | SRC= $(LIBSRC) | ||
| 51 | |||
| 52 | EXHEADER= evp.h | ||
| 53 | HEADER= $(EXHEADER) | ||
| 54 | |||
| 55 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 56 | |||
| 57 | top: | ||
| 58 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 59 | |||
| 60 | all: lib | ||
| 61 | |||
| 62 | lib: $(LIBOBJ) | ||
| 63 | $(AR) $(LIB) $(LIBOBJ) | ||
| 64 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 65 | @touch lib | ||
| 66 | |||
| 67 | files: | ||
| 68 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 69 | |||
| 70 | links: | ||
| 71 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 72 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 73 | cp $(TESTDATA) ../../test | ||
| 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 75 | |||
| 76 | install: | ||
| 77 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 78 | do \ | ||
| 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 81 | done; | ||
| 82 | |||
| 83 | tags: | ||
| 84 | ctags $(SRC) | ||
| 85 | |||
| 86 | tests: | ||
| 87 | |||
| 88 | lint: | ||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 90 | |||
| 91 | depend: | ||
| 92 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 93 | |||
| 94 | dclean: | ||
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 96 | mv -f Makefile.new $(MAKEFILE) | ||
| 97 | |||
| 98 | clean: | ||
| 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 100 | |||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 102 | |||
| 103 | bio_b64.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 104 | bio_b64.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 105 | bio_b64.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 106 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 107 | bio_b64.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 108 | bio_b64.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 109 | bio_b64.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 110 | bio_b64.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 111 | bio_b64.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 112 | bio_b64.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 113 | bio_b64.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 114 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 115 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 116 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 117 | bio_b64.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 118 | bio_b64.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 119 | bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 120 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 121 | bio_b64.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 122 | bio_b64.o: ../cryptlib.h bio_b64.c | ||
| 123 | bio_enc.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 124 | bio_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 125 | bio_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 126 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 127 | bio_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 128 | bio_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 129 | bio_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 130 | bio_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 131 | bio_enc.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 132 | bio_enc.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 133 | bio_enc.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 134 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 135 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 136 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 137 | bio_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 138 | bio_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 139 | bio_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 140 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 141 | bio_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 142 | bio_enc.o: ../cryptlib.h bio_enc.c | ||
| 143 | bio_md.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 144 | bio_md.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 145 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 146 | bio_md.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 147 | bio_md.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 148 | bio_md.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 149 | bio_md.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 150 | bio_md.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 151 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 152 | bio_md.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 153 | bio_md.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 154 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 155 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | bio_md.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 157 | bio_md.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 158 | bio_md.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 159 | bio_md.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 160 | bio_md.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 161 | bio_md.o: ../../include/openssl/ui_compat.h ../cryptlib.h bio_md.c | ||
| 162 | bio_ok.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 163 | bio_ok.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 164 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 165 | bio_ok.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 166 | bio_ok.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 167 | bio_ok.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 168 | bio_ok.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 169 | bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 170 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 171 | bio_ok.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 172 | bio_ok.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 173 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 174 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 175 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 176 | bio_ok.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 177 | bio_ok.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 178 | bio_ok.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 179 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 180 | bio_ok.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 181 | bio_ok.o: ../cryptlib.h bio_ok.c | ||
| 182 | c_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 183 | c_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 184 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 185 | c_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 186 | c_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 187 | c_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 188 | c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 189 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 190 | c_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 191 | c_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 192 | c_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 193 | c_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 194 | c_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 195 | c_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 196 | c_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 197 | c_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 198 | c_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 199 | c_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 200 | c_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 201 | c_all.o: ../../include/openssl/ui_compat.h ../cryptlib.h c_all.c | ||
| 202 | c_allc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 203 | c_allc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 204 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 205 | c_allc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 206 | c_allc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 207 | c_allc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 208 | c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 209 | c_allc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 210 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 211 | c_allc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 212 | c_allc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 213 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 214 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 215 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 216 | c_allc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 217 | c_allc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 218 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 219 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 220 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 221 | c_allc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 222 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | ||
| 223 | c_alld.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 224 | c_alld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 225 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 226 | c_alld.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 227 | c_alld.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 228 | c_alld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 229 | c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 230 | c_alld.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 231 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 232 | c_alld.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 233 | c_alld.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 234 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 235 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 236 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 237 | c_alld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 238 | c_alld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 239 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 240 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 241 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 242 | c_alld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 243 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | ||
| 244 | digest.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 245 | digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 246 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 247 | digest.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 248 | digest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 249 | digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 250 | digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 251 | digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 252 | digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 253 | digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 254 | digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 255 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 256 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 257 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 258 | digest.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 259 | digest.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 260 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 261 | digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 262 | digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 263 | digest.o: ../../include/openssl/ui_compat.h ../cryptlib.h digest.c | ||
| 264 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 265 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 266 | e_aes.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 267 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 268 | e_aes.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 269 | e_aes.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 270 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 271 | e_aes.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 272 | e_aes.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 273 | e_aes.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 274 | e_aes.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 275 | e_aes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 276 | e_aes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 277 | e_aes.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 278 | e_aes.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 279 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 280 | e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 281 | e_aes.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_aes.c | ||
| 282 | e_aes.o: evp_locl.h | ||
| 283 | e_bf.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 284 | e_bf.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 285 | e_bf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 286 | e_bf.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 287 | e_bf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 288 | e_bf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 289 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 290 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 291 | e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 292 | e_bf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 293 | e_bf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 294 | e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 295 | e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 296 | e_bf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 297 | e_bf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 298 | e_bf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 299 | e_bf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 300 | e_bf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 301 | e_bf.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_bf.c evp_locl.h | ||
| 302 | e_cast.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 303 | e_cast.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 304 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 305 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 306 | e_cast.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 307 | e_cast.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 308 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 309 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 310 | e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 311 | e_cast.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 312 | e_cast.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 313 | e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 314 | e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 315 | e_cast.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 316 | e_cast.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 317 | e_cast.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 318 | e_cast.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 319 | e_cast.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 320 | e_cast.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_cast.c evp_locl.h | ||
| 321 | e_des.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 322 | e_des.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 323 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 324 | e_des.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 325 | e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 326 | e_des.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 327 | e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 328 | e_des.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 329 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 330 | e_des.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 331 | e_des.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 332 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 333 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 334 | e_des.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 335 | e_des.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 336 | e_des.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 337 | e_des.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 338 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 339 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | ||
| 340 | e_des3.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 341 | e_des3.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 342 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 343 | e_des3.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 344 | e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 345 | e_des3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 346 | e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 347 | e_des3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 348 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 349 | e_des3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 350 | e_des3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 351 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 352 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 353 | e_des3.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 354 | e_des3.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 355 | e_des3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 356 | e_des3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 357 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 358 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | ||
| 359 | e_idea.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 360 | e_idea.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 361 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 362 | e_idea.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 363 | e_idea.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 364 | e_idea.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 365 | e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 366 | e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 367 | e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 368 | e_idea.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 369 | e_idea.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 370 | e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 371 | e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 372 | e_idea.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 373 | e_idea.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 374 | e_idea.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 375 | e_idea.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 376 | e_idea.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 377 | e_idea.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_idea.c evp_locl.h | ||
| 378 | e_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 379 | e_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 380 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 381 | e_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 382 | e_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 383 | e_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 384 | e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 385 | e_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 386 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 387 | e_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 388 | e_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 389 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 390 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 391 | e_null.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 392 | e_null.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 393 | e_null.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 394 | e_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 395 | e_null.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 396 | e_null.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_null.c | ||
| 397 | e_old.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 398 | e_old.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 399 | e_old.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 400 | e_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 401 | e_old.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 402 | e_old.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 403 | e_old.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 404 | e_old.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 405 | e_old.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 406 | e_old.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 407 | e_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 408 | e_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 409 | e_old.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 410 | e_old.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 411 | e_old.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 412 | e_old.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 413 | e_old.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_old.c | ||
| 414 | e_rc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 415 | e_rc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 416 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 417 | e_rc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 418 | e_rc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 419 | e_rc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 420 | e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 421 | e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 422 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 423 | e_rc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 424 | e_rc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 425 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 426 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 427 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 428 | e_rc2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 429 | e_rc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 430 | e_rc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 431 | e_rc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 432 | e_rc2.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc2.c evp_locl.h | ||
| 433 | e_rc4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 434 | e_rc4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 435 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 436 | e_rc4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 437 | e_rc4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 438 | e_rc4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 439 | e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 440 | e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 441 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 442 | e_rc4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 443 | e_rc4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 444 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 445 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 446 | e_rc4.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 447 | e_rc4.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 448 | e_rc4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 449 | e_rc4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 450 | e_rc4.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 451 | e_rc4.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc4.c evp_locl.h | ||
| 452 | e_rc5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 453 | e_rc5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 454 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 455 | e_rc5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 456 | e_rc5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 457 | e_rc5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 458 | e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 459 | e_rc5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 460 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 461 | e_rc5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 462 | e_rc5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 463 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 464 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 465 | e_rc5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 466 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 467 | e_rc5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 468 | e_rc5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 469 | e_rc5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 470 | e_rc5.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc5.c evp_locl.h | ||
| 471 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 472 | e_xcbc_d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 473 | e_xcbc_d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 474 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 475 | e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 476 | e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 477 | e_xcbc_d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 478 | e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 479 | e_xcbc_d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 480 | e_xcbc_d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 481 | e_xcbc_d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 482 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 483 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | ||
| 484 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 485 | e_xcbc_d.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 486 | e_xcbc_d.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 487 | e_xcbc_d.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 488 | e_xcbc_d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 489 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 490 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | ||
| 491 | encode.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 492 | encode.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 493 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 494 | encode.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 495 | encode.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 496 | encode.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 497 | encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 498 | encode.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 499 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 500 | encode.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 501 | encode.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 502 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 503 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 504 | encode.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 505 | encode.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 506 | encode.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 507 | encode.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 508 | encode.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 509 | encode.o: ../../include/openssl/ui_compat.h ../cryptlib.h encode.c | ||
| 510 | evp_acnf.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 511 | evp_acnf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 512 | evp_acnf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 513 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 514 | evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 515 | evp_acnf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 516 | evp_acnf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 517 | evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 518 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 519 | evp_acnf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 520 | evp_acnf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 521 | evp_acnf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 522 | evp_acnf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 523 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 524 | evp_acnf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 525 | evp_acnf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 526 | evp_acnf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 527 | evp_acnf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 528 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 529 | evp_acnf.o: ../../include/openssl/ui_compat.h ../cryptlib.h evp_acnf.c | ||
| 530 | evp_enc.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 531 | evp_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 532 | evp_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 533 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 534 | evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 535 | evp_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 536 | evp_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 537 | evp_enc.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 538 | evp_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 539 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 540 | evp_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 541 | evp_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 542 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 543 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 544 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 545 | evp_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 546 | evp_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 547 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 548 | evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 549 | evp_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 550 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | ||
| 551 | evp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 552 | evp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 553 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
| 554 | evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 555 | evp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 556 | evp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 557 | evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 558 | evp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 559 | evp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 560 | evp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 561 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 562 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 563 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 564 | evp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 565 | evp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 566 | evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 567 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 568 | evp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 569 | evp_err.o: evp_err.c | ||
| 570 | evp_key.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 571 | evp_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 572 | evp_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 573 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 574 | evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 575 | evp_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 576 | evp_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 577 | evp_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 578 | evp_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 579 | evp_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 580 | evp_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 581 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 582 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 583 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 584 | evp_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 585 | evp_key.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 586 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 587 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 588 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 589 | evp_key.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 590 | evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c | ||
| 591 | evp_lib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 592 | evp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 593 | evp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 594 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 595 | evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 596 | evp_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 597 | evp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 598 | evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 599 | evp_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 600 | evp_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 601 | evp_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 602 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 603 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 604 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 605 | evp_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 606 | evp_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 607 | evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 608 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 609 | evp_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 610 | evp_lib.o: ../cryptlib.h evp_lib.c | ||
| 611 | evp_pbe.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 612 | evp_pbe.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 613 | evp_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 614 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 615 | evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 616 | evp_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 617 | evp_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 618 | evp_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 619 | evp_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 620 | evp_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 621 | evp_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 622 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 623 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 624 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 625 | evp_pbe.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 626 | evp_pbe.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 627 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 628 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 629 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 630 | evp_pbe.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 631 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | ||
| 632 | evp_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 633 | evp_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 634 | evp_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 635 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 636 | evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 637 | evp_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 638 | evp_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 639 | evp_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 640 | evp_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 641 | evp_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 642 | evp_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 643 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 644 | evp_pkey.o: ../../include/openssl/opensslconf.h | ||
| 645 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 646 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 647 | evp_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 648 | evp_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 649 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 650 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 651 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 652 | evp_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 653 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | ||
| 654 | m_dss.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 655 | m_dss.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 656 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 657 | m_dss.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 658 | m_dss.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 659 | m_dss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 660 | m_dss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 661 | m_dss.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 662 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 663 | m_dss.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 664 | m_dss.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 665 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 666 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 667 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 668 | m_dss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 669 | m_dss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 670 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 671 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 672 | m_dss.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 673 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 674 | m_dss.o: ../cryptlib.h m_dss.c | ||
| 675 | m_dss1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 676 | m_dss1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 677 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 678 | m_dss1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 679 | m_dss1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 680 | m_dss1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 681 | m_dss1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 682 | m_dss1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 683 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 684 | m_dss1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 685 | m_dss1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 686 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 687 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 688 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 689 | m_dss1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 690 | m_dss1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 691 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 692 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 693 | m_dss1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 694 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 695 | m_dss1.o: ../cryptlib.h m_dss1.c | ||
| 696 | m_md2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 697 | m_md2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 698 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 699 | m_md2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 700 | m_md2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 701 | m_md2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 702 | m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 703 | m_md2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 704 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 705 | m_md2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 706 | m_md2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 707 | m_md2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 708 | m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 709 | m_md2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 710 | m_md2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 711 | m_md2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 712 | m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 713 | m_md2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 714 | m_md2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 715 | m_md2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 716 | m_md2.o: ../cryptlib.h evp_locl.h m_md2.c | ||
| 717 | m_md4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 718 | m_md4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 719 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 720 | m_md4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 721 | m_md4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 722 | m_md4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 723 | m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 724 | m_md4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 725 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 726 | m_md4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 727 | m_md4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 728 | m_md4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 729 | m_md4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 730 | m_md4.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 731 | m_md4.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 732 | m_md4.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 733 | m_md4.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 734 | m_md4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 735 | m_md4.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 736 | m_md4.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 737 | m_md4.o: ../cryptlib.h evp_locl.h m_md4.c | ||
| 738 | m_md5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 739 | m_md5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 740 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 741 | m_md5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 742 | m_md5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 743 | m_md5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 744 | m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 745 | m_md5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 746 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 747 | m_md5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 748 | m_md5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 749 | m_md5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 750 | m_md5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 751 | m_md5.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 752 | m_md5.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 753 | m_md5.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 754 | m_md5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 755 | m_md5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 756 | m_md5.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 757 | m_md5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 758 | m_md5.o: ../cryptlib.h evp_locl.h m_md5.c | ||
| 759 | m_mdc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 760 | m_mdc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 761 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 762 | m_mdc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 763 | m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 764 | m_mdc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 765 | m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 766 | m_mdc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 767 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 768 | m_mdc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 769 | m_mdc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 770 | m_mdc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 771 | m_mdc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 772 | m_mdc2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 773 | m_mdc2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 774 | m_mdc2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 775 | m_mdc2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 776 | m_mdc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 777 | m_mdc2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 778 | m_mdc2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 779 | m_mdc2.o: ../cryptlib.h evp_locl.h m_mdc2.c | ||
| 780 | m_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 781 | m_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 782 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 783 | m_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 784 | m_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 785 | m_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 786 | m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 787 | m_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 788 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 789 | m_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 790 | m_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 791 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 792 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 793 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 794 | m_null.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 795 | m_null.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 796 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 797 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 798 | m_null.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 799 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 800 | m_null.o: ../cryptlib.h m_null.c | ||
| 801 | m_ripemd.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 802 | m_ripemd.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 803 | m_ripemd.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 804 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 805 | m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 806 | m_ripemd.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 807 | m_ripemd.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 808 | m_ripemd.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 809 | m_ripemd.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 810 | m_ripemd.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 811 | m_ripemd.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 812 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 813 | m_ripemd.o: ../../include/openssl/opensslconf.h | ||
| 814 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 815 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 816 | m_ripemd.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 817 | m_ripemd.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 818 | m_ripemd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 819 | m_ripemd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 820 | m_ripemd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 821 | m_ripemd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 822 | m_ripemd.o: ../cryptlib.h m_ripemd.c | ||
| 823 | m_sha.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 824 | m_sha.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 825 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 826 | m_sha.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 827 | m_sha.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 828 | m_sha.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 829 | m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 830 | m_sha.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 831 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 832 | m_sha.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 833 | m_sha.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 834 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 835 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 836 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 837 | m_sha.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 838 | m_sha.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 839 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 840 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 841 | m_sha.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 842 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 843 | m_sha.o: ../cryptlib.h evp_locl.h m_sha.c | ||
| 844 | m_sha1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 845 | m_sha1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 846 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 847 | m_sha1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 848 | m_sha1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 849 | m_sha1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 850 | m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 851 | m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 852 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 853 | m_sha1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 854 | m_sha1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 855 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 856 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 857 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 858 | m_sha1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 859 | m_sha1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 860 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 861 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 862 | m_sha1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 863 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 864 | m_sha1.o: ../cryptlib.h m_sha1.c | ||
| 865 | names.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 866 | names.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 867 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 868 | names.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 869 | names.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 870 | names.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 871 | names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 872 | names.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 873 | names.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 874 | names.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 875 | names.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 876 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 877 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 878 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 879 | names.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 880 | names.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 881 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 882 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 883 | names.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 884 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 885 | names.o: ../cryptlib.h names.c | ||
| 886 | p5_crpt.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 887 | p5_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 888 | p5_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 889 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 890 | p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 891 | p5_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 892 | p5_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 893 | p5_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 894 | p5_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 895 | p5_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 896 | p5_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 897 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 898 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 899 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 900 | p5_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 901 | p5_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 902 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 903 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 904 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 905 | p5_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 906 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | ||
| 907 | p5_crpt2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 908 | p5_crpt2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 909 | p5_crpt2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 910 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 911 | p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 912 | p5_crpt2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 913 | p5_crpt2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 914 | p5_crpt2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 915 | p5_crpt2.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 916 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 917 | p5_crpt2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 918 | p5_crpt2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 919 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 920 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 921 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 922 | p5_crpt2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 923 | p5_crpt2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 924 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 925 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 926 | p5_crpt2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 927 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 928 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | ||
| 929 | p_dec.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 930 | p_dec.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 931 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 932 | p_dec.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 933 | p_dec.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 934 | p_dec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 935 | p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 936 | p_dec.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 937 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 938 | p_dec.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 939 | p_dec.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 940 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 941 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 942 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 943 | p_dec.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 944 | p_dec.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 945 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 946 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 947 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 948 | p_dec.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 949 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | ||
| 950 | p_enc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 951 | p_enc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 952 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 953 | p_enc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 954 | p_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 955 | p_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 956 | p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 957 | p_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 958 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 959 | p_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 960 | p_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 961 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 962 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 963 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 964 | p_enc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 965 | p_enc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 966 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 967 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 968 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 969 | p_enc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 970 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | ||
| 971 | p_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 972 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 973 | p_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 974 | p_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 975 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 976 | p_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 977 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 978 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 979 | p_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 980 | p_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 981 | p_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 982 | p_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 983 | p_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 984 | p_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 985 | p_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 986 | p_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 987 | p_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 988 | p_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 989 | p_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 990 | p_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 991 | p_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_lib.c | ||
| 992 | p_open.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 993 | p_open.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 994 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 995 | p_open.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 996 | p_open.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 997 | p_open.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 998 | p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 999 | p_open.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1000 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1001 | p_open.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1002 | p_open.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1003 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1004 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1005 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1006 | p_open.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1007 | p_open.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1008 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1009 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1010 | p_open.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1011 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1012 | p_open.o: ../cryptlib.h p_open.c | ||
| 1013 | p_seal.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1014 | p_seal.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1015 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1016 | p_seal.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1017 | p_seal.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1018 | p_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1019 | p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1020 | p_seal.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1021 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1022 | p_seal.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1023 | p_seal.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1024 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1025 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1026 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 1027 | p_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1028 | p_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1029 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1030 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1031 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1032 | p_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1033 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | ||
| 1034 | p_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1035 | p_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1036 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1037 | p_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1038 | p_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1039 | p_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1040 | p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1041 | p_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1042 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1043 | p_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1044 | p_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1045 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1046 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1047 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1048 | p_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1049 | p_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1050 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1051 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1052 | p_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1053 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1054 | p_sign.o: ../cryptlib.h p_sign.c | ||
| 1055 | p_verify.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1056 | p_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 1057 | p_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1058 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1059 | p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1060 | p_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1061 | p_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1062 | p_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1063 | p_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1064 | p_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1065 | p_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1066 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1067 | p_verify.o: ../../include/openssl/opensslconf.h | ||
| 1068 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1069 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1070 | p_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1071 | p_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1072 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1073 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1074 | p_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1075 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1076 | p_verify.o: ../cryptlib.h p_verify.c | ||
diff --git a/src/lib/libcrypto/evp/c_allc.c b/src/lib/libcrypto/evp/c_allc.c index 341a958fd4..fc96812365 100644 --- a/src/lib/libcrypto/evp/c_allc.c +++ b/src/lib/libcrypto/evp/c_allc.c | |||
| @@ -67,6 +67,8 @@ void OpenSSL_add_all_ciphers(void) | |||
| 67 | 67 | ||
| 68 | #ifndef OPENSSL_NO_DES | 68 | #ifndef OPENSSL_NO_DES |
| 69 | EVP_add_cipher(EVP_des_cfb()); | 69 | EVP_add_cipher(EVP_des_cfb()); |
| 70 | EVP_add_cipher(EVP_des_cfb1()); | ||
| 71 | EVP_add_cipher(EVP_des_cfb8()); | ||
| 70 | EVP_add_cipher(EVP_des_ede_cfb()); | 72 | EVP_add_cipher(EVP_des_ede_cfb()); |
| 71 | EVP_add_cipher(EVP_des_ede3_cfb()); | 73 | EVP_add_cipher(EVP_des_ede3_cfb()); |
| 72 | 74 | ||
| @@ -150,6 +152,8 @@ void OpenSSL_add_all_ciphers(void) | |||
| 150 | EVP_add_cipher(EVP_aes_128_ecb()); | 152 | EVP_add_cipher(EVP_aes_128_ecb()); |
| 151 | EVP_add_cipher(EVP_aes_128_cbc()); | 153 | EVP_add_cipher(EVP_aes_128_cbc()); |
| 152 | EVP_add_cipher(EVP_aes_128_cfb()); | 154 | EVP_add_cipher(EVP_aes_128_cfb()); |
| 155 | EVP_add_cipher(EVP_aes_128_cfb1()); | ||
| 156 | EVP_add_cipher(EVP_aes_128_cfb8()); | ||
| 153 | EVP_add_cipher(EVP_aes_128_ofb()); | 157 | EVP_add_cipher(EVP_aes_128_ofb()); |
| 154 | #if 0 | 158 | #if 0 |
| 155 | EVP_add_cipher(EVP_aes_128_ctr()); | 159 | EVP_add_cipher(EVP_aes_128_ctr()); |
| @@ -159,6 +163,8 @@ void OpenSSL_add_all_ciphers(void) | |||
| 159 | EVP_add_cipher(EVP_aes_192_ecb()); | 163 | EVP_add_cipher(EVP_aes_192_ecb()); |
| 160 | EVP_add_cipher(EVP_aes_192_cbc()); | 164 | EVP_add_cipher(EVP_aes_192_cbc()); |
| 161 | EVP_add_cipher(EVP_aes_192_cfb()); | 165 | EVP_add_cipher(EVP_aes_192_cfb()); |
| 166 | EVP_add_cipher(EVP_aes_192_cfb1()); | ||
| 167 | EVP_add_cipher(EVP_aes_192_cfb8()); | ||
| 162 | EVP_add_cipher(EVP_aes_192_ofb()); | 168 | EVP_add_cipher(EVP_aes_192_ofb()); |
| 163 | #if 0 | 169 | #if 0 |
| 164 | EVP_add_cipher(EVP_aes_192_ctr()); | 170 | EVP_add_cipher(EVP_aes_192_ctr()); |
| @@ -168,6 +174,8 @@ void OpenSSL_add_all_ciphers(void) | |||
| 168 | EVP_add_cipher(EVP_aes_256_ecb()); | 174 | EVP_add_cipher(EVP_aes_256_ecb()); |
| 169 | EVP_add_cipher(EVP_aes_256_cbc()); | 175 | EVP_add_cipher(EVP_aes_256_cbc()); |
| 170 | EVP_add_cipher(EVP_aes_256_cfb()); | 176 | EVP_add_cipher(EVP_aes_256_cfb()); |
| 177 | EVP_add_cipher(EVP_aes_256_cfb1()); | ||
| 178 | EVP_add_cipher(EVP_aes_256_cfb8()); | ||
| 171 | EVP_add_cipher(EVP_aes_256_ofb()); | 179 | EVP_add_cipher(EVP_aes_256_ofb()); |
| 172 | #if 0 | 180 | #if 0 |
| 173 | EVP_add_cipher(EVP_aes_256_ctr()); | 181 | EVP_add_cipher(EVP_aes_256_ctr()); |
diff --git a/src/lib/libcrypto/evp/c_alld.c b/src/lib/libcrypto/evp/c_alld.c index be91cdb037..aae7bf7482 100644 --- a/src/lib/libcrypto/evp/c_alld.c +++ b/src/lib/libcrypto/evp/c_alld.c | |||
| @@ -75,7 +75,7 @@ void OpenSSL_add_all_digests(void) | |||
| 75 | EVP_add_digest_alias(SN_md5,"ssl2-md5"); | 75 | EVP_add_digest_alias(SN_md5,"ssl2-md5"); |
| 76 | EVP_add_digest_alias(SN_md5,"ssl3-md5"); | 76 | EVP_add_digest_alias(SN_md5,"ssl3-md5"); |
| 77 | #endif | 77 | #endif |
| 78 | #ifndef OPENSSL_NO_SHA | 78 | #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA0) |
| 79 | EVP_add_digest(EVP_sha()); | 79 | EVP_add_digest(EVP_sha()); |
| 80 | #ifndef OPENSSL_NO_DSA | 80 | #ifndef OPENSSL_NO_DSA |
| 81 | EVP_add_digest(EVP_dss()); | 81 | EVP_add_digest(EVP_dss()); |
diff --git a/src/lib/libcrypto/evp/evp_test.c b/src/lib/libcrypto/evp/evp_test.c index 28460173f7..a624cfd248 100644 --- a/src/lib/libcrypto/evp/evp_test.c +++ b/src/lib/libcrypto/evp/evp_test.c | |||
| @@ -136,7 +136,7 @@ static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, | |||
| 136 | const unsigned char *iv,int in, | 136 | const unsigned char *iv,int in, |
| 137 | const unsigned char *plaintext,int pn, | 137 | const unsigned char *plaintext,int pn, |
| 138 | const unsigned char *ciphertext,int cn, | 138 | const unsigned char *ciphertext,int cn, |
| 139 | int encdec) | 139 | int encdec,int multiplier) |
| 140 | { | 140 | { |
| 141 | EVP_CIPHER_CTX ctx; | 141 | EVP_CIPHER_CTX ctx; |
| 142 | unsigned char out[4096]; | 142 | unsigned char out[4096]; |
| @@ -162,22 +162,25 @@ static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, | |||
| 162 | if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv)) | 162 | if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv)) |
| 163 | { | 163 | { |
| 164 | fprintf(stderr,"EncryptInit failed\n"); | 164 | fprintf(stderr,"EncryptInit failed\n"); |
| 165 | ERR_print_errors_fp(stderr); | ||
| 165 | test1_exit(10); | 166 | test1_exit(10); |
| 166 | } | 167 | } |
| 167 | EVP_CIPHER_CTX_set_padding(&ctx,0); | 168 | EVP_CIPHER_CTX_set_padding(&ctx,0); |
| 168 | 169 | ||
| 169 | if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn)) | 170 | if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn*multiplier)) |
| 170 | { | 171 | { |
| 171 | fprintf(stderr,"Encrypt failed\n"); | 172 | fprintf(stderr,"Encrypt failed\n"); |
| 173 | ERR_print_errors_fp(stderr); | ||
| 172 | test1_exit(6); | 174 | test1_exit(6); |
| 173 | } | 175 | } |
| 174 | if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2)) | 176 | if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2)) |
| 175 | { | 177 | { |
| 176 | fprintf(stderr,"EncryptFinal failed\n"); | 178 | fprintf(stderr,"EncryptFinal failed\n"); |
| 179 | ERR_print_errors_fp(stderr); | ||
| 177 | test1_exit(7); | 180 | test1_exit(7); |
| 178 | } | 181 | } |
| 179 | 182 | ||
| 180 | if(outl+outl2 != cn) | 183 | if(outl+outl2 != cn*multiplier) |
| 181 | { | 184 | { |
| 182 | fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n", | 185 | fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n", |
| 183 | outl+outl2,cn); | 186 | outl+outl2,cn); |
| @@ -198,22 +201,25 @@ static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, | |||
| 198 | if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv)) | 201 | if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv)) |
| 199 | { | 202 | { |
| 200 | fprintf(stderr,"DecryptInit failed\n"); | 203 | fprintf(stderr,"DecryptInit failed\n"); |
| 204 | ERR_print_errors_fp(stderr); | ||
| 201 | test1_exit(11); | 205 | test1_exit(11); |
| 202 | } | 206 | } |
| 203 | EVP_CIPHER_CTX_set_padding(&ctx,0); | 207 | EVP_CIPHER_CTX_set_padding(&ctx,0); |
| 204 | 208 | ||
| 205 | if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn)) | 209 | if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn*multiplier)) |
| 206 | { | 210 | { |
| 207 | fprintf(stderr,"Decrypt failed\n"); | 211 | fprintf(stderr,"Decrypt failed\n"); |
| 212 | ERR_print_errors_fp(stderr); | ||
| 208 | test1_exit(6); | 213 | test1_exit(6); |
| 209 | } | 214 | } |
| 210 | if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2)) | 215 | if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2)) |
| 211 | { | 216 | { |
| 212 | fprintf(stderr,"DecryptFinal failed\n"); | 217 | fprintf(stderr,"DecryptFinal failed\n"); |
| 218 | ERR_print_errors_fp(stderr); | ||
| 213 | test1_exit(7); | 219 | test1_exit(7); |
| 214 | } | 220 | } |
| 215 | 221 | ||
| 216 | if(outl+outl2 != cn) | 222 | if(outl+outl2 != cn*multiplier) |
| 217 | { | 223 | { |
| 218 | fprintf(stderr,"Plaintext length mismatch got %d expected %d\n", | 224 | fprintf(stderr,"Plaintext length mismatch got %d expected %d\n", |
| 219 | outl+outl2,cn); | 225 | outl+outl2,cn); |
| @@ -238,7 +244,7 @@ static int test_cipher(const char *cipher,const unsigned char *key,int kn, | |||
| 238 | const unsigned char *iv,int in, | 244 | const unsigned char *iv,int in, |
| 239 | const unsigned char *plaintext,int pn, | 245 | const unsigned char *plaintext,int pn, |
| 240 | const unsigned char *ciphertext,int cn, | 246 | const unsigned char *ciphertext,int cn, |
| 241 | int encdec) | 247 | int encdec,int multiplier) |
| 242 | { | 248 | { |
| 243 | const EVP_CIPHER *c; | 249 | const EVP_CIPHER *c; |
| 244 | 250 | ||
| @@ -246,7 +252,7 @@ static int test_cipher(const char *cipher,const unsigned char *key,int kn, | |||
| 246 | if(!c) | 252 | if(!c) |
| 247 | return 0; | 253 | return 0; |
| 248 | 254 | ||
| 249 | test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec); | 255 | test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec,multiplier); |
| 250 | 256 | ||
| 251 | return 1; | 257 | return 1; |
| 252 | } | 258 | } |
| @@ -272,16 +278,19 @@ static int test_digest(const char *digest, | |||
| 272 | if(!EVP_DigestInit_ex(&ctx,d, NULL)) | 278 | if(!EVP_DigestInit_ex(&ctx,d, NULL)) |
| 273 | { | 279 | { |
| 274 | fprintf(stderr,"DigestInit failed\n"); | 280 | fprintf(stderr,"DigestInit failed\n"); |
| 281 | ERR_print_errors_fp(stderr); | ||
| 275 | EXIT(100); | 282 | EXIT(100); |
| 276 | } | 283 | } |
| 277 | if(!EVP_DigestUpdate(&ctx,plaintext,pn)) | 284 | if(!EVP_DigestUpdate(&ctx,plaintext,pn)) |
| 278 | { | 285 | { |
| 279 | fprintf(stderr,"DigestUpdate failed\n"); | 286 | fprintf(stderr,"DigestUpdate failed\n"); |
| 287 | ERR_print_errors_fp(stderr); | ||
| 280 | EXIT(101); | 288 | EXIT(101); |
| 281 | } | 289 | } |
| 282 | if(!EVP_DigestFinal_ex(&ctx,md,&mdn)) | 290 | if(!EVP_DigestFinal_ex(&ctx,md,&mdn)) |
| 283 | { | 291 | { |
| 284 | fprintf(stderr,"DigestFinal failed\n"); | 292 | fprintf(stderr,"DigestFinal failed\n"); |
| 293 | ERR_print_errors_fp(stderr); | ||
| 285 | EXIT(101); | 294 | EXIT(101); |
| 286 | } | 295 | } |
| 287 | EVP_MD_CTX_cleanup(&ctx); | 296 | EVP_MD_CTX_cleanup(&ctx); |
| @@ -359,6 +368,7 @@ int main(int argc,char **argv) | |||
| 359 | unsigned char *iv,*key,*plaintext,*ciphertext; | 368 | unsigned char *iv,*key,*plaintext,*ciphertext; |
| 360 | int encdec; | 369 | int encdec; |
| 361 | int kn,in,pn,cn; | 370 | int kn,in,pn,cn; |
| 371 | int multiplier=1; | ||
| 362 | 372 | ||
| 363 | if(!fgets((char *)line,sizeof line,f)) | 373 | if(!fgets((char *)line,sizeof line,f)) |
| 364 | break; | 374 | break; |
| @@ -383,7 +393,15 @@ int main(int argc,char **argv) | |||
| 383 | pn=convert(plaintext); | 393 | pn=convert(plaintext); |
| 384 | cn=convert(ciphertext); | 394 | cn=convert(ciphertext); |
| 385 | 395 | ||
| 386 | if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec) | 396 | if(strchr(cipher,'*')) |
| 397 | { | ||
| 398 | p=cipher; | ||
| 399 | sstrsep(&p,"*"); | ||
| 400 | multiplier=atoi(sstrsep(&p,"*")); | ||
| 401 | } | ||
| 402 | |||
| 403 | if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec, | ||
| 404 | multiplier) | ||
| 387 | && !test_digest(cipher,plaintext,pn,ciphertext,cn)) | 405 | && !test_digest(cipher,plaintext,pn,ciphertext,cn)) |
| 388 | { | 406 | { |
| 389 | fprintf(stderr,"Can't find %s\n",cipher); | 407 | fprintf(stderr,"Can't find %s\n",cipher); |
diff --git a/src/lib/libcrypto/evp/evptests.txt b/src/lib/libcrypto/evp/evptests.txt index 80bd9c7765..dfe91a5bc0 100644 --- a/src/lib/libcrypto/evp/evptests.txt +++ b/src/lib/libcrypto/evp/evptests.txt | |||
| @@ -92,7 +92,102 @@ AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000 | |||
| 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D | 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D |
| 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 | 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 |
| 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B | 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B |
| 95 | # We don't support CFB{1,8}-AESxxx.{En,De}crypt | 95 | |
| 96 | # CFB1-AES128.Encrypt | ||
| 97 | |||
| 98 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:1 | ||
| 99 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:1 | ||
| 100 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:1 | ||
| 101 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:1 | ||
| 102 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:1 | ||
| 103 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:1 | ||
| 104 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:1 | ||
| 105 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:1 | ||
| 106 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:1 | ||
| 107 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:1 | ||
| 108 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:1 | ||
| 109 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:1 | ||
| 110 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:1 | ||
| 111 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:1 | ||
| 112 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:1 | ||
| 113 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:1 | ||
| 114 | # all of the above packed into one... | ||
| 115 | # in: 0110 1011 1100 0001 = 6bc1 | ||
| 116 | # out: 0110 1000 1011 0011 = 68b3 | ||
| 117 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:1 | ||
| 118 | |||
| 119 | # CFB1-AES128.Decrypt | ||
| 120 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:0 | ||
| 121 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:0 | ||
| 122 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:0 | ||
| 123 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:0 | ||
| 124 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:0 | ||
| 125 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:0 | ||
| 126 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:0 | ||
| 127 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:0 | ||
| 128 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:0 | ||
| 129 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:0 | ||
| 130 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:0 | ||
| 131 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:0 | ||
| 132 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:0 | ||
| 133 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:0 | ||
| 134 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:0 | ||
| 135 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:0 | ||
| 136 | # all of the above packed into one... | ||
| 137 | # in: 0110 1000 1011 0011 = 68b3 | ||
| 138 | # out: 0110 1011 1100 0001 = 6bc1 | ||
| 139 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:0 | ||
| 140 | |||
| 141 | # TODO: CFB1-AES192 and 256 | ||
| 142 | |||
| 143 | # CFB8-AES128.Encrypt | ||
| 144 | |||
| 145 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:1 | ||
| 146 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:1 | ||
| 147 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:1 | ||
| 148 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:1 | ||
| 149 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:1 | ||
| 150 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:1 | ||
| 151 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:1 | ||
| 152 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:1 | ||
| 153 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:1 | ||
| 154 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:1 | ||
| 155 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:1 | ||
| 156 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:1 | ||
| 157 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:1 | ||
| 158 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:1 | ||
| 159 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:1 | ||
| 160 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:1 | ||
| 161 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:1 | ||
| 162 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:1 | ||
| 163 | # all of the above packed into one | ||
| 164 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:1 | ||
| 165 | |||
| 166 | # CFB8-AES128.Decrypt | ||
| 167 | |||
| 168 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:0 | ||
| 169 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:0 | ||
| 170 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:0 | ||
| 171 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:0 | ||
| 172 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:0 | ||
| 173 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:0 | ||
| 174 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:0 | ||
| 175 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:0 | ||
| 176 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:0 | ||
| 177 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:0 | ||
| 178 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:0 | ||
| 179 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:0 | ||
| 180 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:0 | ||
| 181 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:0 | ||
| 182 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:0 | ||
| 183 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:0 | ||
| 184 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:0 | ||
| 185 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:0 | ||
| 186 | # all of the above packed into one | ||
| 187 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:0 | ||
| 188 | |||
| 189 | # TODO: 192 and 256 bit keys | ||
| 190 | |||
| 96 | # For all CFB128 encrypts and decrypts, the transformed sequence is | 191 | # For all CFB128 encrypts and decrypts, the transformed sequence is |
| 97 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | 192 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec |
| 98 | # CFB128-AES128.Encrypt | 193 | # CFB128-AES128.Encrypt |
| @@ -174,6 +269,16 @@ DESX-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363 | |||
| 174 | # DES EDE3 CBC tests (from destest) | 269 | # DES EDE3 CBC tests (from destest) |
| 175 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 | 270 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 |
| 176 | 271 | ||
| 272 | # DES CFB1 from FIPS 81 | ||
| 273 | # plaintext: 0100 1110 0110 1111 0111 0111 = 4e6f77 | ||
| 274 | # ciphertext: 1100 1101 0001 1110 1100 1001 = cd1ec9 | ||
| 275 | |||
| 276 | DES-CFB1*8:0123456789abcdef:1234567890abcdef:4e6f77:cd1ec9 | ||
| 277 | |||
| 278 | # DES CFB8 from FIPS 81 | ||
| 279 | |||
| 280 | DES-CFB8:0123456789abcdef:1234567890abcdef:4e6f7720697320746865:f31fda07011462ee187f | ||
| 281 | |||
| 177 | # RC4 tests (from rc4test) | 282 | # RC4 tests (from rc4test) |
| 178 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 | 283 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 |
| 179 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 | 284 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 |
diff --git a/src/lib/libcrypto/evp/m_md2.c b/src/lib/libcrypto/evp/m_md2.c index 50914c83b3..0df48e5199 100644 --- a/src/lib/libcrypto/evp/m_md2.c +++ b/src/lib/libcrypto/evp/m_md2.c | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | #include <stdio.h> | 60 | #include <stdio.h> |
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/evp.h> | 62 | #include <openssl/evp.h> |
| 63 | #include "evp_locl.h" | ||
| 63 | #include <openssl/objects.h> | 64 | #include <openssl/objects.h> |
| 64 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
| 65 | #include <openssl/md2.h> | 66 | #include <openssl/md2.h> |
diff --git a/src/lib/libcrypto/evp/m_mdc2.c b/src/lib/libcrypto/evp/m_mdc2.c index 9f6467c931..62de1336b8 100644 --- a/src/lib/libcrypto/evp/m_mdc2.c +++ b/src/lib/libcrypto/evp/m_mdc2.c | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | #include <stdio.h> | 60 | #include <stdio.h> |
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/evp.h> | 62 | #include <openssl/evp.h> |
| 63 | #include "evp_locl.h" | ||
| 63 | #include <openssl/objects.h> | 64 | #include <openssl/objects.h> |
| 64 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
| 65 | #include <openssl/mdc2.h> | 66 | #include <openssl/mdc2.h> |
diff --git a/src/lib/libcrypto/evp/m_sha.c b/src/lib/libcrypto/evp/m_sha.c index 10697c7ed3..d1785e5f74 100644 --- a/src/lib/libcrypto/evp/m_sha.c +++ b/src/lib/libcrypto/evp/m_sha.c | |||
| @@ -56,10 +56,11 @@ | |||
| 56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #ifndef OPENSSL_NO_SHA | 59 | #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA0) |
| 60 | #include <stdio.h> | 60 | #include <stdio.h> |
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/evp.h> | 62 | #include <openssl/evp.h> |
| 63 | #include "evp_locl.h" | ||
| 63 | #include <openssl/objects.h> | 64 | #include <openssl/objects.h> |
| 64 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
| 65 | 66 | ||
diff --git a/src/lib/libcrypto/hmac/Makefile b/src/lib/libcrypto/hmac/Makefile new file mode 100644 index 0000000000..f634dab79d --- /dev/null +++ b/src/lib/libcrypto/hmac/Makefile | |||
| @@ -0,0 +1,99 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/md/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= hmac | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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=hmactest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=hmac.c | ||
| 26 | LIBOBJ=hmac.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= hmac.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | hmac.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 81 | hmac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 82 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 83 | hmac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 84 | hmac.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 85 | hmac.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 86 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 87 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
| 88 | hmac.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 89 | hmac.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 90 | hmac.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 91 | hmac.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 92 | hmac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 93 | hmac.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
| 94 | hmac.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 95 | hmac.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 96 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 97 | hmac.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 98 | hmac.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 99 | hmac.o: ../cryptlib.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile b/src/lib/libcrypto/idea/Makefile new file mode 100644 index 0000000000..f652783027 --- /dev/null +++ b/src/lib/libcrypto/idea/Makefile | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/idea/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= idea | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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=ideatest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c | ||
| 26 | LIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= idea.h | ||
| 31 | HEADER= idea_lcl.h $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 81 | i_cbc.o: i_cbc.c idea_lcl.h | ||
| 82 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 83 | i_cfb64.o: i_cfb64.c idea_lcl.h | ||
| 84 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 85 | i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h | ||
| 86 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 87 | i_ofb64.o: i_ofb64.c idea_lcl.h | ||
| 88 | i_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 89 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 90 | i_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 91 | i_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 92 | i_skey.o: i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libcrypto/krb5/Makefile b/src/lib/libcrypto/krb5/Makefile new file mode 100644 index 0000000000..25cc695e8d --- /dev/null +++ b/src/lib/libcrypto/krb5/Makefile | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/krb5/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= krb5 | ||
| 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 README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= krb5_asn.c | ||
| 26 | |||
| 27 | LIBOBJ= krb5_asn.o | ||
| 28 | |||
| 29 | SRC= $(LIBSRC) | ||
| 30 | |||
| 31 | EXHEADER= krb5_asn.h | ||
| 32 | HEADER= $(EXHEADER) | ||
| 33 | |||
| 34 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 35 | |||
| 36 | top: | ||
| 37 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 38 | |||
| 39 | all: lib | ||
| 40 | |||
| 41 | lib: $(LIBOBJ) | ||
| 42 | $(AR) $(LIB) $(LIBOBJ) | ||
| 43 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 44 | @touch lib | ||
| 45 | |||
| 46 | files: | ||
| 47 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 48 | |||
| 49 | links: | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 53 | |||
| 54 | install: | ||
| 55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 56 | do \ | ||
| 57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 58 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 59 | done; | ||
| 60 | |||
| 61 | tags: | ||
| 62 | ctags $(SRC) | ||
| 63 | |||
| 64 | tests: | ||
| 65 | |||
| 66 | lint: | ||
| 67 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 68 | |||
| 69 | depend: | ||
| 70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 71 | |||
| 72 | dclean: | ||
| 73 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 74 | mv -f Makefile.new $(MAKEFILE) | ||
| 75 | |||
| 76 | clean: | ||
| 77 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 78 | |||
| 79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 80 | |||
| 81 | krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 82 | krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 83 | krb5_asn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 84 | krb5_asn.o: ../../include/openssl/krb5_asn.h | ||
| 85 | krb5_asn.o: ../../include/openssl/opensslconf.h | ||
| 86 | krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 87 | krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 88 | krb5_asn.o: ../../include/openssl/symhacks.h krb5_asn.c | ||
diff --git a/src/lib/libcrypto/lhash/Makefile b/src/lib/libcrypto/lhash/Makefile new file mode 100644 index 0000000000..d325a1644d --- /dev/null +++ b/src/lib/libcrypto/lhash/Makefile | |||
| @@ -0,0 +1,91 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/lhash/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= lhash | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=lhash.c lh_stats.c | ||
| 26 | LIBOBJ=lhash.o lh_stats.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= lhash.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | lh_stats.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 81 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 82 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 83 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 84 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 85 | lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 86 | lh_stats.o: ../cryptlib.h lh_stats.c | ||
| 87 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 88 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
| 89 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 90 | lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 91 | lhash.o: ../../include/openssl/symhacks.h lhash.c | ||
diff --git a/src/lib/libcrypto/md2/Makefile b/src/lib/libcrypto/md2/Makefile new file mode 100644 index 0000000000..90628511da --- /dev/null +++ b/src/lib/libcrypto/md2/Makefile | |||
| @@ -0,0 +1,93 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/md/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= md2 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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=md2test.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=md2_dgst.c md2_one.c | ||
| 26 | LIBOBJ=md2_dgst.o md2_one.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= md2.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | md2_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 81 | md2_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 82 | md2_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 83 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | ||
| 84 | md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 85 | md2_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 86 | md2_dgst.o: md2_dgst.c | ||
| 87 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 88 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 89 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 90 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 91 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 92 | md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 93 | md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c | ||
diff --git a/src/lib/libcrypto/md2/md2.h b/src/lib/libcrypto/md2/md2.h index ad9241455c..d0ef9da08e 100644 --- a/src/lib/libcrypto/md2/md2.h +++ b/src/lib/libcrypto/md2/md2.h | |||
| @@ -80,6 +80,9 @@ typedef struct MD2state_st | |||
| 80 | } MD2_CTX; | 80 | } MD2_CTX; |
| 81 | 81 | ||
| 82 | const char *MD2_options(void); | 82 | const char *MD2_options(void); |
| 83 | #ifdef OPENSSL_FIPS | ||
| 84 | int private_MD2_Init(MD2_CTX *c); | ||
| 85 | #endif | ||
| 83 | int MD2_Init(MD2_CTX *c); | 86 | int MD2_Init(MD2_CTX *c); |
| 84 | int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len); | 87 | int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len); |
| 85 | int MD2_Final(unsigned char *md, MD2_CTX *c); | 88 | int MD2_Final(unsigned char *md, MD2_CTX *c); |
diff --git a/src/lib/libcrypto/md2/md2_dgst.c b/src/lib/libcrypto/md2/md2_dgst.c index ecb64f0ec4..8124acd687 100644 --- a/src/lib/libcrypto/md2/md2_dgst.c +++ b/src/lib/libcrypto/md2/md2_dgst.c | |||
| @@ -62,6 +62,8 @@ | |||
| 62 | #include <openssl/md2.h> | 62 | #include <openssl/md2.h> |
| 63 | #include <openssl/opensslv.h> | 63 | #include <openssl/opensslv.h> |
| 64 | #include <openssl/crypto.h> | 64 | #include <openssl/crypto.h> |
| 65 | #include <openssl/fips.h> | ||
| 66 | #include <openssl/err.h> | ||
| 65 | 67 | ||
| 66 | const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT; | 68 | const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT; |
| 67 | 69 | ||
| @@ -116,7 +118,7 @@ const char *MD2_options(void) | |||
| 116 | return("md2(int)"); | 118 | return("md2(int)"); |
| 117 | } | 119 | } |
| 118 | 120 | ||
| 119 | int MD2_Init(MD2_CTX *c) | 121 | FIPS_NON_FIPS_MD_Init(MD2) |
| 120 | { | 122 | { |
| 121 | c->num=0; | 123 | c->num=0; |
| 122 | memset(c->state,0,sizeof c->state); | 124 | memset(c->state,0,sizeof c->state); |
diff --git a/src/lib/libcrypto/md4/Makefile b/src/lib/libcrypto/md4/Makefile new file mode 100644 index 0000000000..0b7c8d7ad8 --- /dev/null +++ b/src/lib/libcrypto/md4/Makefile | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/md4/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= md4 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 20 | |||
| 21 | GENERAL=Makefile | ||
| 22 | TEST=md4test.c | ||
| 23 | APPS=md4.c | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC=md4_dgst.c md4_one.c | ||
| 27 | LIBOBJ=md4_dgst.o md4_one.o | ||
| 28 | |||
| 29 | SRC= $(LIBSRC) | ||
| 30 | |||
| 31 | EXHEADER= md4.h | ||
| 32 | HEADER= md4_locl.h $(EXHEADER) | ||
| 33 | |||
| 34 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 35 | |||
| 36 | top: | ||
| 37 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 38 | |||
| 39 | all: lib | ||
| 40 | |||
| 41 | lib: $(LIBOBJ) | ||
| 42 | $(AR) $(LIB) $(LIBOBJ) | ||
| 43 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 44 | @touch lib | ||
| 45 | |||
| 46 | files: | ||
| 47 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 48 | |||
| 49 | links: | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 53 | |||
| 54 | install: | ||
| 55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 56 | do \ | ||
| 57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 58 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 59 | done; | ||
| 60 | |||
| 61 | tags: | ||
| 62 | ctags $(SRC) | ||
| 63 | |||
| 64 | tests: | ||
| 65 | |||
| 66 | lint: | ||
| 67 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 68 | |||
| 69 | depend: | ||
| 70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 71 | |||
| 72 | dclean: | ||
| 73 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 74 | mv -f Makefile.new $(MAKEFILE) | ||
| 75 | |||
| 76 | clean: | ||
| 77 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 78 | |||
| 79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 80 | |||
| 81 | md4_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 82 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 83 | md4_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 84 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | ||
| 85 | md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 86 | md4_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 87 | md4_dgst.o: ../md32_common.h md4_dgst.c md4_locl.h | ||
| 88 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 89 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | ||
| 90 | md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 91 | md4_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 92 | md4_one.o: md4_one.c | ||
diff --git a/src/lib/libcrypto/md5/Makefile b/src/lib/libcrypto/md5/Makefile new file mode 100644 index 0000000000..832446fff2 --- /dev/null +++ b/src/lib/libcrypto/md5/Makefile | |||
| @@ -0,0 +1,128 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/md5/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= md5 | ||
| 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 | MD5_ASM_OBJ= | ||
| 20 | |||
| 21 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 23 | |||
| 24 | GENERAL=Makefile | ||
| 25 | TEST=md5test.c | ||
| 26 | APPS= | ||
| 27 | |||
| 28 | LIB=$(TOP)/libcrypto.a | ||
| 29 | LIBSRC=md5_dgst.c md5_one.c | ||
| 30 | LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ) | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= md5.h | ||
| 35 | HEADER= md5_locl.h $(EXHEADER) | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | all: lib | ||
| 43 | |||
| 44 | lib: $(LIBOBJ) | ||
| 45 | $(AR) $(LIB) $(LIBOBJ) | ||
| 46 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 47 | @touch lib | ||
| 48 | |||
| 49 | # elf | ||
| 50 | asm/mx86-elf.s: asm/md5-586.pl ../perlasm/x86asm.pl | ||
| 51 | (cd asm; $(PERL) md5-586.pl elf $(CFLAGS) > mx86-elf.s) | ||
| 52 | |||
| 53 | # a.out | ||
| 54 | asm/mx86-out.o: asm/mx86unix.cpp | ||
| 55 | $(CPP) -DOUT asm/mx86unix.cpp | as -o asm/mx86-out.o | ||
| 56 | |||
| 57 | # bsdi | ||
| 58 | asm/mx86bsdi.o: asm/mx86unix.cpp | ||
| 59 | $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o | ||
| 60 | |||
| 61 | asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl | ||
| 62 | (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp) | ||
| 63 | |||
| 64 | asm/md5-sparcv8plus.o: asm/md5-sparcv9.S | ||
| 65 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 66 | -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S | ||
| 67 | |||
| 68 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
| 69 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
| 70 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 71 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 72 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 73 | # or upgrade it. | ||
| 74 | asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S | ||
| 75 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \ | ||
| 76 | /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o | ||
| 77 | |||
| 78 | asm/md5-sparcv9.o: asm/md5-sparcv9.S | ||
| 79 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 80 | -o asm/md5-sparcv9.o asm/md5-sparcv9.S | ||
| 81 | |||
| 82 | files: | ||
| 83 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 84 | |||
| 85 | links: | ||
| 86 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 87 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 88 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 89 | |||
| 90 | install: | ||
| 91 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 92 | do \ | ||
| 93 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 94 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 95 | done; | ||
| 96 | |||
| 97 | tags: | ||
| 98 | ctags $(SRC) | ||
| 99 | |||
| 100 | tests: | ||
| 101 | |||
| 102 | lint: | ||
| 103 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 104 | |||
| 105 | depend: | ||
| 106 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 107 | |||
| 108 | dclean: | ||
| 109 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 110 | mv -f Makefile.new $(MAKEFILE) | ||
| 111 | |||
| 112 | clean: | ||
| 113 | rm -f asm/mx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 114 | |||
| 115 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 116 | |||
| 117 | md5_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 118 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 119 | md5_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 120 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
| 121 | md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 122 | md5_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 123 | md5_dgst.o: ../md32_common.h md5_dgst.c md5_locl.h | ||
| 124 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 125 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
| 126 | md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 127 | md5_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 128 | md5_one.o: md5_one.c | ||
diff --git a/src/lib/libcrypto/mdc2/Makefile b/src/lib/libcrypto/mdc2/Makefile new file mode 100644 index 0000000000..38c785bf95 --- /dev/null +++ b/src/lib/libcrypto/mdc2/Makefile | |||
| @@ -0,0 +1,98 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/mdc2/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= mdc2 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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= mdc2test.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=mdc2dgst.c mdc2_one.c | ||
| 26 | LIBOBJ=mdc2dgst.o mdc2_one.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= mdc2.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 81 | mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 82 | mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 83 | mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 84 | mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
| 85 | mdc2_one.o: ../../include/openssl/opensslconf.h | ||
| 86 | mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | mdc2_one.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 89 | mdc2_one.o: ../cryptlib.h mdc2_one.c | ||
| 90 | mdc2dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 91 | mdc2dgst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 92 | mdc2dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 93 | mdc2dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 94 | mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h | ||
| 95 | mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 96 | mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 98 | mdc2dgst.o: mdc2dgst.c | ||
diff --git a/src/lib/libcrypto/mdc2/mdc2.h b/src/lib/libcrypto/mdc2/mdc2.h index 793a8a0f13..4cba101f37 100644 --- a/src/lib/libcrypto/mdc2/mdc2.h +++ b/src/lib/libcrypto/mdc2/mdc2.h | |||
| @@ -80,7 +80,9 @@ typedef struct mdc2_ctx_st | |||
| 80 | int pad_type; /* either 1 or 2, default 1 */ | 80 | int pad_type; /* either 1 or 2, default 1 */ |
| 81 | } MDC2_CTX; | 81 | } MDC2_CTX; |
| 82 | 82 | ||
| 83 | 83 | #ifdef OPENSSL_FIPS | |
| 84 | int private_MDC2_Init(MDC2_CTX *c); | ||
| 85 | #endif | ||
| 84 | int MDC2_Init(MDC2_CTX *c); | 86 | int MDC2_Init(MDC2_CTX *c); |
| 85 | int MDC2_Update(MDC2_CTX *c, const unsigned char *data, unsigned long len); | 87 | int MDC2_Update(MDC2_CTX *c, const unsigned char *data, unsigned long len); |
| 86 | int MDC2_Final(unsigned char *md, MDC2_CTX *c); | 88 | int MDC2_Final(unsigned char *md, MDC2_CTX *c); |
diff --git a/src/lib/libcrypto/o_str.h b/src/lib/libcrypto/o_str.h new file mode 100644 index 0000000000..4a70a9e00b --- /dev/null +++ b/src/lib/libcrypto/o_str.h | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | /* crypto/o_str.h -*- mode:C; c-file-style: "eay" -*- */ | ||
| 2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | ||
| 3 | * project 2003. | ||
| 4 | */ | ||
| 5 | /* ==================================================================== | ||
| 6 | * Copyright (c) 2003 The OpenSSL Project. All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * | ||
| 12 | * 1. Redistributions of source code must retain the above copyright | ||
| 13 | * notice, this list of conditions and the following disclaimer. | ||
| 14 | * | ||
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 16 | * notice, this list of conditions and the following disclaimer in | ||
| 17 | * the documentation and/or other materials provided with the | ||
| 18 | * distribution. | ||
| 19 | * | ||
| 20 | * 3. All advertising materials mentioning features or use of this | ||
| 21 | * software must display the following acknowledgment: | ||
| 22 | * "This product includes software developed by the OpenSSL Project | ||
| 23 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
| 24 | * | ||
| 25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
| 26 | * endorse or promote products derived from this software without | ||
| 27 | * prior written permission. For written permission, please contact | ||
| 28 | * licensing@OpenSSL.org. | ||
| 29 | * | ||
| 30 | * 5. Products derived from this software may not be called "OpenSSL" | ||
| 31 | * nor may "OpenSSL" appear in their names without prior written | ||
| 32 | * permission of the OpenSSL Project. | ||
| 33 | * | ||
| 34 | * 6. Redistributions of any form whatsoever must retain the following | ||
| 35 | * acknowledgment: | ||
| 36 | * "This product includes software developed by the OpenSSL Project | ||
| 37 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
| 38 | * | ||
| 39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
| 40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
| 43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
| 48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
| 50 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 51 | * ==================================================================== | ||
| 52 | * | ||
| 53 | * This product includes cryptographic software written by Eric Young | ||
| 54 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
| 55 | * Hudson (tjh@cryptsoft.com). | ||
| 56 | * | ||
| 57 | */ | ||
| 58 | |||
| 59 | #ifndef HEADER_O_STR_H | ||
| 60 | #define HEADER_O_STR_H | ||
| 61 | |||
| 62 | #include <stddef.h> /* to get size_t */ | ||
| 63 | |||
| 64 | int OPENSSL_strcasecmp(const char *str1, const char *str2); | ||
| 65 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n); | ||
| 66 | |||
| 67 | #endif | ||
diff --git a/src/lib/libcrypto/objects/Makefile b/src/lib/libcrypto/objects/Makefile new file mode 100644 index 0000000000..e449147129 --- /dev/null +++ b/src/lib/libcrypto/objects/Makefile | |||
| @@ -0,0 +1,122 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/objects/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= objects | ||
| 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 | PERL= perl | ||
| 18 | |||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 20 | |||
| 21 | GENERAL=Makefile README | ||
| 22 | TEST= | ||
| 23 | APPS= | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c | ||
| 27 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o | ||
| 28 | |||
| 29 | SRC= $(LIBSRC) | ||
| 30 | |||
| 31 | EXHEADER= objects.h obj_mac.h | ||
| 32 | HEADER= $(EXHEADER) obj_dat.h | ||
| 33 | |||
| 34 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 35 | |||
| 36 | top: | ||
| 37 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 38 | |||
| 39 | all: obj_dat.h lib | ||
| 40 | |||
| 41 | lib: $(LIBOBJ) | ||
| 42 | $(AR) $(LIB) $(LIBOBJ) | ||
| 43 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 44 | @touch lib | ||
| 45 | |||
| 46 | obj_dat.h: obj_dat.pl obj_mac.h | ||
| 47 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
| 48 | |||
| 49 | # objects.pl both reads and writes obj_mac.num | ||
| 50 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
| 51 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
| 52 | @sleep 1; touch obj_mac.h; sleep 1 | ||
| 53 | |||
| 54 | files: | ||
| 55 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 56 | |||
| 57 | links: | ||
| 58 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 59 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 60 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 61 | |||
| 62 | install: | ||
| 63 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 64 | do \ | ||
| 65 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 66 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 67 | done; | ||
| 68 | |||
| 69 | tags: | ||
| 70 | ctags $(SRC) | ||
| 71 | |||
| 72 | tests: | ||
| 73 | |||
| 74 | lint: | ||
| 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 76 | |||
| 77 | depend: | ||
| 78 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 79 | |||
| 80 | dclean: | ||
| 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 82 | mv -f Makefile.new $(MAKEFILE) | ||
| 83 | |||
| 84 | clean: | ||
| 85 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 86 | |||
| 87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 88 | |||
| 89 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 90 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 91 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 92 | o_names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 93 | o_names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 94 | o_names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 95 | o_names.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 96 | o_names.o: ../../include/openssl/symhacks.h o_names.c | ||
| 97 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 98 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 99 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 100 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 101 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 102 | obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 103 | obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 104 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 105 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | ||
| 106 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 107 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 108 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 110 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 111 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 113 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | ||
| 114 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 115 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 116 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 117 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 119 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 120 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 121 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 122 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | ||
diff --git a/src/lib/libcrypto/objects/obj_dat.h b/src/lib/libcrypto/objects/obj_dat.h index 969b18a341..8785127055 100644 --- a/src/lib/libcrypto/objects/obj_dat.h +++ b/src/lib/libcrypto/objects/obj_dat.h | |||
| @@ -62,12 +62,12 @@ | |||
| 62 | * [including the GNU Public Licence.] | 62 | * [including the GNU Public Licence.] |
| 63 | */ | 63 | */ |
| 64 | 64 | ||
| 65 | #define NUM_NID 650 | 65 | #define NUM_NID 668 |
| 66 | #define NUM_SN 643 | 66 | #define NUM_SN 660 |
| 67 | #define NUM_LN 643 | 67 | #define NUM_LN 660 |
| 68 | #define NUM_OBJ 617 | 68 | #define NUM_OBJ 624 |
| 69 | 69 | ||
| 70 | static unsigned char lvalues[4455]={ | 70 | static unsigned char lvalues[4500]={ |
| 71 | 0x00, /* [ 0] OBJ_undef */ | 71 | 0x00, /* [ 0] OBJ_undef */ |
| 72 | 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */ | 72 | 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */ |
| 73 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */ | 73 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */ |
| @@ -685,6 +685,13 @@ static unsigned char lvalues[4455]={ | |||
| 685 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4425] OBJ_rsaOAEPEncryptionSET */ | 685 | 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4425] OBJ_rsaOAEPEncryptionSET */ |
| 686 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4434] OBJ_ms_smartcard_login */ | 686 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4434] OBJ_ms_smartcard_login */ |
| 687 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4444] OBJ_ms_upn */ | 687 | 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4444] OBJ_ms_upn */ |
| 688 | 0x55,0x04,0x09, /* [4454] OBJ_streetAddress */ | ||
| 689 | 0x55,0x04,0x11, /* [4457] OBJ_postalCode */ | ||
| 690 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15, /* [4460] OBJ_id_ppl */ | ||
| 691 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0E, /* [4467] OBJ_proxyCertInfo */ | ||
| 692 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x00, /* [4475] OBJ_id_ppl_anyLanguage */ | ||
| 693 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x01, /* [4483] OBJ_id_ppl_inheritAll */ | ||
| 694 | 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x02, /* [4491] OBJ_Independent */ | ||
| 688 | }; | 695 | }; |
| 689 | 696 | ||
| 690 | static ASN1_OBJECT nid_objs[NUM_NID]={ | 697 | static ASN1_OBJECT nid_objs[NUM_NID]={ |
| @@ -1728,20 +1735,47 @@ static ASN1_OBJECT nid_objs[NUM_NID]={ | |||
| 1728 | 10,&(lvalues[4434]),0}, | 1735 | 10,&(lvalues[4434]),0}, |
| 1729 | {"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10, | 1736 | {"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10, |
| 1730 | &(lvalues[4444]),0}, | 1737 | &(lvalues[4444]),0}, |
| 1738 | {"AES-128-CFB1","aes-128-cfb1",NID_aes_128_cfb1,0,NULL}, | ||
| 1739 | {"AES-192-CFB1","aes-192-cfb1",NID_aes_192_cfb1,0,NULL}, | ||
| 1740 | {"AES-256-CFB1","aes-256-cfb1",NID_aes_256_cfb1,0,NULL}, | ||
| 1741 | {"AES-128-CFB8","aes-128-cfb8",NID_aes_128_cfb8,0,NULL}, | ||
| 1742 | {"AES-192-CFB8","aes-192-cfb8",NID_aes_192_cfb8,0,NULL}, | ||
| 1743 | {"AES-256-CFB8","aes-256-cfb8",NID_aes_256_cfb8,0,NULL}, | ||
| 1744 | {"DES-CFB1","des-cfb1",NID_des_cfb1,0,NULL}, | ||
| 1745 | {"DES-CFB8","des-cfb8",NID_des_cfb8,0,NULL}, | ||
| 1746 | {"DES-EDE3-CFB1","des-ede3-cfb1",NID_des_ede3_cfb1,0,NULL}, | ||
| 1747 | {"DES-EDE3-CFB8","des-ede3-cfb8",NID_des_ede3_cfb8,0,NULL}, | ||
| 1748 | {"streetAddress","streetAddress",NID_streetAddress,3,&(lvalues[4454]),0}, | ||
| 1749 | {"postalCode","postalCode",NID_postalCode,3,&(lvalues[4457]),0}, | ||
| 1750 | {"id-ppl","id-ppl",NID_id_ppl,7,&(lvalues[4460]),0}, | ||
| 1751 | {"proxyCertInfo","Proxy Certificate Information",NID_proxyCertInfo,8, | ||
| 1752 | &(lvalues[4467]),0}, | ||
| 1753 | {"id-ppl-anyLanguage","Any language",NID_id_ppl_anyLanguage,8, | ||
| 1754 | &(lvalues[4475]),0}, | ||
| 1755 | {"id-ppl-inheritAll","Inherit all",NID_id_ppl_inheritAll,8, | ||
| 1756 | &(lvalues[4483]),0}, | ||
| 1757 | {NULL,NULL,NID_undef,0,NULL}, | ||
| 1758 | {"id-ppl-independent","Independent",NID_Independent,8,&(lvalues[4491]),0}, | ||
| 1731 | }; | 1759 | }; |
| 1732 | 1760 | ||
| 1733 | static ASN1_OBJECT *sn_objs[NUM_SN]={ | 1761 | static ASN1_OBJECT *sn_objs[NUM_SN]={ |
| 1734 | &(nid_objs[364]),/* "AD_DVCS" */ | 1762 | &(nid_objs[364]),/* "AD_DVCS" */ |
| 1735 | &(nid_objs[419]),/* "AES-128-CBC" */ | 1763 | &(nid_objs[419]),/* "AES-128-CBC" */ |
| 1736 | &(nid_objs[421]),/* "AES-128-CFB" */ | 1764 | &(nid_objs[421]),/* "AES-128-CFB" */ |
| 1765 | &(nid_objs[650]),/* "AES-128-CFB1" */ | ||
| 1766 | &(nid_objs[653]),/* "AES-128-CFB8" */ | ||
| 1737 | &(nid_objs[418]),/* "AES-128-ECB" */ | 1767 | &(nid_objs[418]),/* "AES-128-ECB" */ |
| 1738 | &(nid_objs[420]),/* "AES-128-OFB" */ | 1768 | &(nid_objs[420]),/* "AES-128-OFB" */ |
| 1739 | &(nid_objs[423]),/* "AES-192-CBC" */ | 1769 | &(nid_objs[423]),/* "AES-192-CBC" */ |
| 1740 | &(nid_objs[425]),/* "AES-192-CFB" */ | 1770 | &(nid_objs[425]),/* "AES-192-CFB" */ |
| 1771 | &(nid_objs[651]),/* "AES-192-CFB1" */ | ||
| 1772 | &(nid_objs[654]),/* "AES-192-CFB8" */ | ||
| 1741 | &(nid_objs[422]),/* "AES-192-ECB" */ | 1773 | &(nid_objs[422]),/* "AES-192-ECB" */ |
| 1742 | &(nid_objs[424]),/* "AES-192-OFB" */ | 1774 | &(nid_objs[424]),/* "AES-192-OFB" */ |
| 1743 | &(nid_objs[427]),/* "AES-256-CBC" */ | 1775 | &(nid_objs[427]),/* "AES-256-CBC" */ |
| 1744 | &(nid_objs[429]),/* "AES-256-CFB" */ | 1776 | &(nid_objs[429]),/* "AES-256-CFB" */ |
| 1777 | &(nid_objs[652]),/* "AES-256-CFB1" */ | ||
| 1778 | &(nid_objs[655]),/* "AES-256-CFB8" */ | ||
| 1745 | &(nid_objs[426]),/* "AES-256-ECB" */ | 1779 | &(nid_objs[426]),/* "AES-256-ECB" */ |
| 1746 | &(nid_objs[428]),/* "AES-256-OFB" */ | 1780 | &(nid_objs[428]),/* "AES-256-OFB" */ |
| 1747 | &(nid_objs[91]),/* "BF-CBC" */ | 1781 | &(nid_objs[91]),/* "BF-CBC" */ |
| @@ -1762,6 +1796,8 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 1762 | &(nid_objs[31]),/* "DES-CBC" */ | 1796 | &(nid_objs[31]),/* "DES-CBC" */ |
| 1763 | &(nid_objs[643]),/* "DES-CDMF" */ | 1797 | &(nid_objs[643]),/* "DES-CDMF" */ |
| 1764 | &(nid_objs[30]),/* "DES-CFB" */ | 1798 | &(nid_objs[30]),/* "DES-CFB" */ |
| 1799 | &(nid_objs[656]),/* "DES-CFB1" */ | ||
| 1800 | &(nid_objs[657]),/* "DES-CFB8" */ | ||
| 1765 | &(nid_objs[29]),/* "DES-ECB" */ | 1801 | &(nid_objs[29]),/* "DES-ECB" */ |
| 1766 | &(nid_objs[32]),/* "DES-EDE" */ | 1802 | &(nid_objs[32]),/* "DES-EDE" */ |
| 1767 | &(nid_objs[43]),/* "DES-EDE-CBC" */ | 1803 | &(nid_objs[43]),/* "DES-EDE-CBC" */ |
| @@ -1770,6 +1806,8 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 1770 | &(nid_objs[33]),/* "DES-EDE3" */ | 1806 | &(nid_objs[33]),/* "DES-EDE3" */ |
| 1771 | &(nid_objs[44]),/* "DES-EDE3-CBC" */ | 1807 | &(nid_objs[44]),/* "DES-EDE3-CBC" */ |
| 1772 | &(nid_objs[61]),/* "DES-EDE3-CFB" */ | 1808 | &(nid_objs[61]),/* "DES-EDE3-CFB" */ |
| 1809 | &(nid_objs[658]),/* "DES-EDE3-CFB1" */ | ||
| 1810 | &(nid_objs[659]),/* "DES-EDE3-CFB8" */ | ||
| 1773 | &(nid_objs[63]),/* "DES-EDE3-OFB" */ | 1811 | &(nid_objs[63]),/* "DES-EDE3-OFB" */ |
| 1774 | &(nid_objs[45]),/* "DES-OFB" */ | 1812 | &(nid_objs[45]),/* "DES-OFB" */ |
| 1775 | &(nid_objs[80]),/* "DESX-CBC" */ | 1813 | &(nid_objs[80]),/* "DESX-CBC" */ |
| @@ -2022,6 +2060,10 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 2022 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ | 2060 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ |
| 2023 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ | 2061 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ |
| 2024 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ | 2062 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ |
| 2063 | &(nid_objs[662]),/* "id-ppl" */ | ||
| 2064 | &(nid_objs[664]),/* "id-ppl-anyLanguage" */ | ||
| 2065 | &(nid_objs[667]),/* "id-ppl-independent" */ | ||
| 2066 | &(nid_objs[665]),/* "id-ppl-inheritAll" */ | ||
| 2025 | &(nid_objs[267]),/* "id-qcs" */ | 2067 | &(nid_objs[267]),/* "id-qcs" */ |
| 2026 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ | 2068 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ |
| 2027 | &(nid_objs[259]),/* "id-qt" */ | 2069 | &(nid_objs[259]),/* "id-qt" */ |
| @@ -2186,6 +2228,7 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 2186 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ | 2228 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ |
| 2187 | &(nid_objs[47]),/* "pkcs9" */ | 2229 | &(nid_objs[47]),/* "pkcs9" */ |
| 2188 | &(nid_objs[401]),/* "policyConstraints" */ | 2230 | &(nid_objs[401]),/* "policyConstraints" */ |
| 2231 | &(nid_objs[661]),/* "postalCode" */ | ||
| 2189 | &(nid_objs[406]),/* "prime-field" */ | 2232 | &(nid_objs[406]),/* "prime-field" */ |
| 2190 | &(nid_objs[409]),/* "prime192v1" */ | 2233 | &(nid_objs[409]),/* "prime192v1" */ |
| 2191 | &(nid_objs[410]),/* "prime192v2" */ | 2234 | &(nid_objs[410]),/* "prime192v2" */ |
| @@ -2196,6 +2239,7 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 2196 | &(nid_objs[415]),/* "prime256v1" */ | 2239 | &(nid_objs[415]),/* "prime256v1" */ |
| 2197 | &(nid_objs[385]),/* "private" */ | 2240 | &(nid_objs[385]),/* "private" */ |
| 2198 | &(nid_objs[84]),/* "privateKeyUsagePeriod" */ | 2241 | &(nid_objs[84]),/* "privateKeyUsagePeriod" */ |
| 2242 | &(nid_objs[663]),/* "proxyCertInfo" */ | ||
| 2199 | &(nid_objs[510]),/* "pseudonym" */ | 2243 | &(nid_objs[510]),/* "pseudonym" */ |
| 2200 | &(nid_objs[435]),/* "pss" */ | 2244 | &(nid_objs[435]),/* "pss" */ |
| 2201 | &(nid_objs[286]),/* "qcStatements" */ | 2245 | &(nid_objs[286]),/* "qcStatements" */ |
| @@ -2355,6 +2399,7 @@ static ASN1_OBJECT *sn_objs[NUM_SN]={ | |||
| 2355 | &(nid_objs[454]),/* "simpleSecurityObject" */ | 2399 | &(nid_objs[454]),/* "simpleSecurityObject" */ |
| 2356 | &(nid_objs[496]),/* "singleLevelQuality" */ | 2400 | &(nid_objs[496]),/* "singleLevelQuality" */ |
| 2357 | &(nid_objs[387]),/* "snmpv2" */ | 2401 | &(nid_objs[387]),/* "snmpv2" */ |
| 2402 | &(nid_objs[660]),/* "streetAddress" */ | ||
| 2358 | &(nid_objs[85]),/* "subjectAltName" */ | 2403 | &(nid_objs[85]),/* "subjectAltName" */ |
| 2359 | &(nid_objs[398]),/* "subjectInfoAccess" */ | 2404 | &(nid_objs[398]),/* "subjectInfoAccess" */ |
| 2360 | &(nid_objs[82]),/* "subjectKeyIdentifier" */ | 2405 | &(nid_objs[82]),/* "subjectKeyIdentifier" */ |
| @@ -2380,6 +2425,7 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2380 | &(nid_objs[363]),/* "AD Time Stamping" */ | 2425 | &(nid_objs[363]),/* "AD Time Stamping" */ |
| 2381 | &(nid_objs[405]),/* "ANSI X9.62" */ | 2426 | &(nid_objs[405]),/* "ANSI X9.62" */ |
| 2382 | &(nid_objs[368]),/* "Acceptable OCSP Responses" */ | 2427 | &(nid_objs[368]),/* "Acceptable OCSP Responses" */ |
| 2428 | &(nid_objs[664]),/* "Any language" */ | ||
| 2383 | &(nid_objs[177]),/* "Authority Information Access" */ | 2429 | &(nid_objs[177]),/* "Authority Information Access" */ |
| 2384 | &(nid_objs[365]),/* "Basic OCSP Response" */ | 2430 | &(nid_objs[365]),/* "Basic OCSP Response" */ |
| 2385 | &(nid_objs[285]),/* "Biometric Info" */ | 2431 | &(nid_objs[285]),/* "Biometric Info" */ |
| @@ -2402,6 +2448,8 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2402 | &(nid_objs[296]),/* "IPSec User" */ | 2448 | &(nid_objs[296]),/* "IPSec User" */ |
| 2403 | &(nid_objs[182]),/* "ISO Member Body" */ | 2449 | &(nid_objs[182]),/* "ISO Member Body" */ |
| 2404 | &(nid_objs[183]),/* "ISO US Member Body" */ | 2450 | &(nid_objs[183]),/* "ISO US Member Body" */ |
| 2451 | &(nid_objs[667]),/* "Independent" */ | ||
| 2452 | &(nid_objs[665]),/* "Inherit all" */ | ||
| 2405 | &(nid_objs[142]),/* "Invalidity Date" */ | 2453 | &(nid_objs[142]),/* "Invalidity Date" */ |
| 2406 | &(nid_objs[504]),/* "MIME MHS" */ | 2454 | &(nid_objs[504]),/* "MIME MHS" */ |
| 2407 | &(nid_objs[388]),/* "Mail" */ | 2455 | &(nid_objs[388]),/* "Mail" */ |
| @@ -2442,6 +2490,7 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2442 | &(nid_objs[164]),/* "Policy Qualifier CPS" */ | 2490 | &(nid_objs[164]),/* "Policy Qualifier CPS" */ |
| 2443 | &(nid_objs[165]),/* "Policy Qualifier User Notice" */ | 2491 | &(nid_objs[165]),/* "Policy Qualifier User Notice" */ |
| 2444 | &(nid_objs[385]),/* "Private" */ | 2492 | &(nid_objs[385]),/* "Private" */ |
| 2493 | &(nid_objs[663]),/* "Proxy Certificate Information" */ | ||
| 2445 | &(nid_objs[ 1]),/* "RSA Data Security, Inc." */ | 2494 | &(nid_objs[ 1]),/* "RSA Data Security, Inc." */ |
| 2446 | &(nid_objs[ 2]),/* "RSA Data Security, Inc. PKCS" */ | 2495 | &(nid_objs[ 2]),/* "RSA Data Security, Inc. PKCS" */ |
| 2447 | &(nid_objs[188]),/* "S/MIME" */ | 2496 | &(nid_objs[188]),/* "S/MIME" */ |
| @@ -2485,14 +2534,20 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2485 | &(nid_objs[606]),/* "additional verification" */ | 2534 | &(nid_objs[606]),/* "additional verification" */ |
| 2486 | &(nid_objs[419]),/* "aes-128-cbc" */ | 2535 | &(nid_objs[419]),/* "aes-128-cbc" */ |
| 2487 | &(nid_objs[421]),/* "aes-128-cfb" */ | 2536 | &(nid_objs[421]),/* "aes-128-cfb" */ |
| 2537 | &(nid_objs[650]),/* "aes-128-cfb1" */ | ||
| 2538 | &(nid_objs[653]),/* "aes-128-cfb8" */ | ||
| 2488 | &(nid_objs[418]),/* "aes-128-ecb" */ | 2539 | &(nid_objs[418]),/* "aes-128-ecb" */ |
| 2489 | &(nid_objs[420]),/* "aes-128-ofb" */ | 2540 | &(nid_objs[420]),/* "aes-128-ofb" */ |
| 2490 | &(nid_objs[423]),/* "aes-192-cbc" */ | 2541 | &(nid_objs[423]),/* "aes-192-cbc" */ |
| 2491 | &(nid_objs[425]),/* "aes-192-cfb" */ | 2542 | &(nid_objs[425]),/* "aes-192-cfb" */ |
| 2543 | &(nid_objs[651]),/* "aes-192-cfb1" */ | ||
| 2544 | &(nid_objs[654]),/* "aes-192-cfb8" */ | ||
| 2492 | &(nid_objs[422]),/* "aes-192-ecb" */ | 2545 | &(nid_objs[422]),/* "aes-192-ecb" */ |
| 2493 | &(nid_objs[424]),/* "aes-192-ofb" */ | 2546 | &(nid_objs[424]),/* "aes-192-ofb" */ |
| 2494 | &(nid_objs[427]),/* "aes-256-cbc" */ | 2547 | &(nid_objs[427]),/* "aes-256-cbc" */ |
| 2495 | &(nid_objs[429]),/* "aes-256-cfb" */ | 2548 | &(nid_objs[429]),/* "aes-256-cfb" */ |
| 2549 | &(nid_objs[652]),/* "aes-256-cfb1" */ | ||
| 2550 | &(nid_objs[655]),/* "aes-256-cfb8" */ | ||
| 2496 | &(nid_objs[426]),/* "aes-256-ecb" */ | 2551 | &(nid_objs[426]),/* "aes-256-ecb" */ |
| 2497 | &(nid_objs[428]),/* "aes-256-ofb" */ | 2552 | &(nid_objs[428]),/* "aes-256-ofb" */ |
| 2498 | &(nid_objs[376]),/* "algorithm" */ | 2553 | &(nid_objs[376]),/* "algorithm" */ |
| @@ -2531,6 +2586,8 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2531 | &(nid_objs[31]),/* "des-cbc" */ | 2586 | &(nid_objs[31]),/* "des-cbc" */ |
| 2532 | &(nid_objs[643]),/* "des-cdmf" */ | 2587 | &(nid_objs[643]),/* "des-cdmf" */ |
| 2533 | &(nid_objs[30]),/* "des-cfb" */ | 2588 | &(nid_objs[30]),/* "des-cfb" */ |
| 2589 | &(nid_objs[656]),/* "des-cfb1" */ | ||
| 2590 | &(nid_objs[657]),/* "des-cfb8" */ | ||
| 2534 | &(nid_objs[29]),/* "des-ecb" */ | 2591 | &(nid_objs[29]),/* "des-ecb" */ |
| 2535 | &(nid_objs[32]),/* "des-ede" */ | 2592 | &(nid_objs[32]),/* "des-ede" */ |
| 2536 | &(nid_objs[43]),/* "des-ede-cbc" */ | 2593 | &(nid_objs[43]),/* "des-ede-cbc" */ |
| @@ -2539,6 +2596,8 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2539 | &(nid_objs[33]),/* "des-ede3" */ | 2596 | &(nid_objs[33]),/* "des-ede3" */ |
| 2540 | &(nid_objs[44]),/* "des-ede3-cbc" */ | 2597 | &(nid_objs[44]),/* "des-ede3-cbc" */ |
| 2541 | &(nid_objs[61]),/* "des-ede3-cfb" */ | 2598 | &(nid_objs[61]),/* "des-ede3-cfb" */ |
| 2599 | &(nid_objs[658]),/* "des-ede3-cfb1" */ | ||
| 2600 | &(nid_objs[659]),/* "des-ede3-cfb8" */ | ||
| 2542 | &(nid_objs[63]),/* "des-ede3-ofb" */ | 2601 | &(nid_objs[63]),/* "des-ede3-ofb" */ |
| 2543 | &(nid_objs[45]),/* "des-ofb" */ | 2602 | &(nid_objs[45]),/* "des-ofb" */ |
| 2544 | &(nid_objs[107]),/* "description" */ | 2603 | &(nid_objs[107]),/* "description" */ |
| @@ -2668,6 +2727,7 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2668 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ | 2727 | &(nid_objs[271]),/* "id-pkix1-explicit-93" */ |
| 2669 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ | 2728 | &(nid_objs[270]),/* "id-pkix1-implicit-88" */ |
| 2670 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ | 2729 | &(nid_objs[272]),/* "id-pkix1-implicit-93" */ |
| 2730 | &(nid_objs[662]),/* "id-ppl" */ | ||
| 2671 | &(nid_objs[267]),/* "id-qcs" */ | 2731 | &(nid_objs[267]),/* "id-qcs" */ |
| 2672 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ | 2732 | &(nid_objs[359]),/* "id-qcs-pkixQCSyntax-v1" */ |
| 2673 | &(nid_objs[259]),/* "id-qt" */ | 2733 | &(nid_objs[259]),/* "id-qt" */ |
| @@ -2831,6 +2891,7 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 2831 | &(nid_objs[22]),/* "pkcs7-signedData" */ | 2891 | &(nid_objs[22]),/* "pkcs7-signedData" */ |
| 2832 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ | 2892 | &(nid_objs[151]),/* "pkcs8ShroudedKeyBag" */ |
| 2833 | &(nid_objs[47]),/* "pkcs9" */ | 2893 | &(nid_objs[47]),/* "pkcs9" */ |
| 2894 | &(nid_objs[661]),/* "postalCode" */ | ||
| 2834 | &(nid_objs[406]),/* "prime-field" */ | 2895 | &(nid_objs[406]),/* "prime-field" */ |
| 2835 | &(nid_objs[409]),/* "prime192v1" */ | 2896 | &(nid_objs[409]),/* "prime192v1" */ |
| 2836 | &(nid_objs[410]),/* "prime192v2" */ | 2897 | &(nid_objs[410]),/* "prime192v2" */ |
| @@ -3003,6 +3064,7 @@ static ASN1_OBJECT *ln_objs[NUM_LN]={ | |||
| 3003 | &(nid_objs[454]),/* "simpleSecurityObject" */ | 3064 | &(nid_objs[454]),/* "simpleSecurityObject" */ |
| 3004 | &(nid_objs[496]),/* "singleLevelQuality" */ | 3065 | &(nid_objs[496]),/* "singleLevelQuality" */ |
| 3005 | &(nid_objs[16]),/* "stateOrProvinceName" */ | 3066 | &(nid_objs[16]),/* "stateOrProvinceName" */ |
| 3067 | &(nid_objs[660]),/* "streetAddress" */ | ||
| 3006 | &(nid_objs[498]),/* "subtreeMaximumQuality" */ | 3068 | &(nid_objs[498]),/* "subtreeMaximumQuality" */ |
| 3007 | &(nid_objs[497]),/* "subtreeMinimumQuality" */ | 3069 | &(nid_objs[497]),/* "subtreeMinimumQuality" */ |
| 3008 | &(nid_objs[100]),/* "surname" */ | 3070 | &(nid_objs[100]),/* "surname" */ |
| @@ -3046,10 +3108,12 @@ static ASN1_OBJECT *obj_objs[NUM_OBJ]={ | |||
| 3046 | &(nid_objs[14]),/* OBJ_countryName 2 5 4 6 */ | 3108 | &(nid_objs[14]),/* OBJ_countryName 2 5 4 6 */ |
| 3047 | &(nid_objs[15]),/* OBJ_localityName 2 5 4 7 */ | 3109 | &(nid_objs[15]),/* OBJ_localityName 2 5 4 7 */ |
| 3048 | &(nid_objs[16]),/* OBJ_stateOrProvinceName 2 5 4 8 */ | 3110 | &(nid_objs[16]),/* OBJ_stateOrProvinceName 2 5 4 8 */ |
| 3111 | &(nid_objs[660]),/* OBJ_streetAddress 2 5 4 9 */ | ||
| 3049 | &(nid_objs[17]),/* OBJ_organizationName 2 5 4 10 */ | 3112 | &(nid_objs[17]),/* OBJ_organizationName 2 5 4 10 */ |
| 3050 | &(nid_objs[18]),/* OBJ_organizationalUnitName 2 5 4 11 */ | 3113 | &(nid_objs[18]),/* OBJ_organizationalUnitName 2 5 4 11 */ |
| 3051 | &(nid_objs[106]),/* OBJ_title 2 5 4 12 */ | 3114 | &(nid_objs[106]),/* OBJ_title 2 5 4 12 */ |
| 3052 | &(nid_objs[107]),/* OBJ_description 2 5 4 13 */ | 3115 | &(nid_objs[107]),/* OBJ_description 2 5 4 13 */ |
| 3116 | &(nid_objs[661]),/* OBJ_postalCode 2 5 4 17 */ | ||
| 3053 | &(nid_objs[173]),/* OBJ_name 2 5 4 41 */ | 3117 | &(nid_objs[173]),/* OBJ_name 2 5 4 41 */ |
| 3054 | &(nid_objs[99]),/* OBJ_givenName 2 5 4 42 */ | 3118 | &(nid_objs[99]),/* OBJ_givenName 2 5 4 42 */ |
| 3055 | &(nid_objs[101]),/* OBJ_initials 2 5 4 43 */ | 3119 | &(nid_objs[101]),/* OBJ_initials 2 5 4 43 */ |
| @@ -3270,6 +3334,7 @@ static ASN1_OBJECT *obj_objs[NUM_OBJ]={ | |||
| 3270 | &(nid_objs[266]),/* OBJ_id_aca 1 3 6 1 5 5 7 10 */ | 3334 | &(nid_objs[266]),/* OBJ_id_aca 1 3 6 1 5 5 7 10 */ |
| 3271 | &(nid_objs[267]),/* OBJ_id_qcs 1 3 6 1 5 5 7 11 */ | 3335 | &(nid_objs[267]),/* OBJ_id_qcs 1 3 6 1 5 5 7 11 */ |
| 3272 | &(nid_objs[268]),/* OBJ_id_cct 1 3 6 1 5 5 7 12 */ | 3336 | &(nid_objs[268]),/* OBJ_id_cct 1 3 6 1 5 5 7 12 */ |
| 3337 | &(nid_objs[662]),/* OBJ_id_ppl 1 3 6 1 5 5 7 21 */ | ||
| 3273 | &(nid_objs[176]),/* OBJ_id_ad 1 3 6 1 5 5 7 48 */ | 3338 | &(nid_objs[176]),/* OBJ_id_ad 1 3 6 1 5 5 7 48 */ |
| 3274 | &(nid_objs[507]),/* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */ | 3339 | &(nid_objs[507]),/* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */ |
| 3275 | &(nid_objs[508]),/* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */ | 3340 | &(nid_objs[508]),/* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */ |
| @@ -3323,6 +3388,7 @@ static ASN1_OBJECT *obj_objs[NUM_OBJ]={ | |||
| 3323 | &(nid_objs[292]),/* OBJ_sbqp_routerIdentifier 1 3 6 1 5 5 7 1 9 */ | 3388 | &(nid_objs[292]),/* OBJ_sbqp_routerIdentifier 1 3 6 1 5 5 7 1 9 */ |
| 3324 | &(nid_objs[397]),/* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */ | 3389 | &(nid_objs[397]),/* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */ |
| 3325 | &(nid_objs[398]),/* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */ | 3390 | &(nid_objs[398]),/* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */ |
| 3391 | &(nid_objs[663]),/* OBJ_proxyCertInfo 1 3 6 1 5 5 7 1 14 */ | ||
| 3326 | &(nid_objs[164]),/* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */ | 3392 | &(nid_objs[164]),/* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */ |
| 3327 | &(nid_objs[165]),/* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */ | 3393 | &(nid_objs[165]),/* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */ |
| 3328 | &(nid_objs[293]),/* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */ | 3394 | &(nid_objs[293]),/* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */ |
| @@ -3393,6 +3459,9 @@ static ASN1_OBJECT *obj_objs[NUM_OBJ]={ | |||
| 3393 | &(nid_objs[360]),/* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */ | 3459 | &(nid_objs[360]),/* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */ |
| 3394 | &(nid_objs[361]),/* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */ | 3460 | &(nid_objs[361]),/* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */ |
| 3395 | &(nid_objs[362]),/* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */ | 3461 | &(nid_objs[362]),/* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */ |
| 3462 | &(nid_objs[664]),/* OBJ_id_ppl_anyLanguage 1 3 6 1 5 5 7 21 0 */ | ||
| 3463 | &(nid_objs[665]),/* OBJ_id_ppl_inheritAll 1 3 6 1 5 5 7 21 1 */ | ||
| 3464 | &(nid_objs[667]),/* OBJ_Independent 1 3 6 1 5 5 7 21 2 */ | ||
| 3396 | &(nid_objs[178]),/* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */ | 3465 | &(nid_objs[178]),/* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */ |
| 3397 | &(nid_objs[179]),/* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */ | 3466 | &(nid_objs[179]),/* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */ |
| 3398 | &(nid_objs[363]),/* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */ | 3467 | &(nid_objs[363]),/* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */ |
diff --git a/src/lib/libcrypto/objects/obj_mac.h b/src/lib/libcrypto/objects/obj_mac.h index 7645012298..d28894cf41 100644 --- a/src/lib/libcrypto/objects/obj_mac.h +++ b/src/lib/libcrypto/objects/obj_mac.h | |||
| @@ -950,6 +950,10 @@ | |||
| 950 | #define NID_id_cct 268 | 950 | #define NID_id_cct 268 |
| 951 | #define OBJ_id_cct OBJ_id_pkix,12L | 951 | #define OBJ_id_cct OBJ_id_pkix,12L |
| 952 | 952 | ||
| 953 | #define SN_id_ppl "id-ppl" | ||
| 954 | #define NID_id_ppl 662 | ||
| 955 | #define OBJ_id_ppl OBJ_id_pkix,21L | ||
| 956 | |||
| 953 | #define SN_id_ad "id-ad" | 957 | #define SN_id_ad "id-ad" |
| 954 | #define NID_id_ad 176 | 958 | #define NID_id_ad 176 |
| 955 | #define OBJ_id_ad OBJ_id_pkix,48L | 959 | #define OBJ_id_ad OBJ_id_pkix,48L |
| @@ -1065,6 +1069,11 @@ | |||
| 1065 | #define NID_sinfo_access 398 | 1069 | #define NID_sinfo_access 398 |
| 1066 | #define OBJ_sinfo_access OBJ_id_pe,11L | 1070 | #define OBJ_sinfo_access OBJ_id_pe,11L |
| 1067 | 1071 | ||
| 1072 | #define SN_proxyCertInfo "proxyCertInfo" | ||
| 1073 | #define LN_proxyCertInfo "Proxy Certificate Information" | ||
| 1074 | #define NID_proxyCertInfo 663 | ||
| 1075 | #define OBJ_proxyCertInfo OBJ_id_pe,14L | ||
| 1076 | |||
| 1068 | #define SN_id_qt_cps "id-qt-cps" | 1077 | #define SN_id_qt_cps "id-qt-cps" |
| 1069 | #define LN_id_qt_cps "Policy Qualifier CPS" | 1078 | #define LN_id_qt_cps "Policy Qualifier CPS" |
| 1070 | #define NID_id_qt_cps 164 | 1079 | #define NID_id_qt_cps 164 |
| @@ -1389,6 +1398,21 @@ | |||
| 1389 | #define NID_id_cct_PKIResponse 362 | 1398 | #define NID_id_cct_PKIResponse 362 |
| 1390 | #define OBJ_id_cct_PKIResponse OBJ_id_cct,3L | 1399 | #define OBJ_id_cct_PKIResponse OBJ_id_cct,3L |
| 1391 | 1400 | ||
| 1401 | #define SN_id_ppl_anyLanguage "id-ppl-anyLanguage" | ||
| 1402 | #define LN_id_ppl_anyLanguage "Any language" | ||
| 1403 | #define NID_id_ppl_anyLanguage 664 | ||
| 1404 | #define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L | ||
| 1405 | |||
| 1406 | #define SN_id_ppl_inheritAll "id-ppl-inheritAll" | ||
| 1407 | #define LN_id_ppl_inheritAll "Inherit all" | ||
| 1408 | #define NID_id_ppl_inheritAll 665 | ||
| 1409 | #define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L | ||
| 1410 | |||
| 1411 | #define SN_Independent "id-ppl-independent" | ||
| 1412 | #define LN_Independent "Independent" | ||
| 1413 | #define NID_Independent 667 | ||
| 1414 | #define OBJ_Independent OBJ_id_ppl,2L | ||
| 1415 | |||
| 1392 | #define SN_ad_OCSP "OCSP" | 1416 | #define SN_ad_OCSP "OCSP" |
| 1393 | #define LN_ad_OCSP "OCSP" | 1417 | #define LN_ad_OCSP "OCSP" |
| 1394 | #define NID_ad_OCSP 178 | 1418 | #define NID_ad_OCSP 178 |
| @@ -1619,6 +1643,10 @@ | |||
| 1619 | #define NID_stateOrProvinceName 16 | 1643 | #define NID_stateOrProvinceName 16 |
| 1620 | #define OBJ_stateOrProvinceName OBJ_X509,8L | 1644 | #define OBJ_stateOrProvinceName OBJ_X509,8L |
| 1621 | 1645 | ||
| 1646 | #define LN_streetAddress "streetAddress" | ||
| 1647 | #define NID_streetAddress 660 | ||
| 1648 | #define OBJ_streetAddress OBJ_X509,9L | ||
| 1649 | |||
| 1622 | #define SN_organizationName "O" | 1650 | #define SN_organizationName "O" |
| 1623 | #define LN_organizationName "organizationName" | 1651 | #define LN_organizationName "organizationName" |
| 1624 | #define NID_organizationName 17 | 1652 | #define NID_organizationName 17 |
| @@ -1637,6 +1665,10 @@ | |||
| 1637 | #define NID_description 107 | 1665 | #define NID_description 107 |
| 1638 | #define OBJ_description OBJ_X509,13L | 1666 | #define OBJ_description OBJ_X509,13L |
| 1639 | 1667 | ||
| 1668 | #define LN_postalCode "postalCode" | ||
| 1669 | #define NID_postalCode 661 | ||
| 1670 | #define OBJ_postalCode OBJ_X509,17L | ||
| 1671 | |||
| 1640 | #define SN_name "name" | 1672 | #define SN_name "name" |
| 1641 | #define LN_name "name" | 1673 | #define LN_name "name" |
| 1642 | #define NID_name 173 | 1674 | #define NID_name 173 |
| @@ -2009,6 +2041,46 @@ | |||
| 2009 | #define NID_aes_256_cfb128 429 | 2041 | #define NID_aes_256_cfb128 429 |
| 2010 | #define OBJ_aes_256_cfb128 OBJ_aes,44L | 2042 | #define OBJ_aes_256_cfb128 OBJ_aes,44L |
| 2011 | 2043 | ||
| 2044 | #define SN_aes_128_cfb1 "AES-128-CFB1" | ||
| 2045 | #define LN_aes_128_cfb1 "aes-128-cfb1" | ||
| 2046 | #define NID_aes_128_cfb1 650 | ||
| 2047 | |||
| 2048 | #define SN_aes_192_cfb1 "AES-192-CFB1" | ||
| 2049 | #define LN_aes_192_cfb1 "aes-192-cfb1" | ||
| 2050 | #define NID_aes_192_cfb1 651 | ||
| 2051 | |||
| 2052 | #define SN_aes_256_cfb1 "AES-256-CFB1" | ||
| 2053 | #define LN_aes_256_cfb1 "aes-256-cfb1" | ||
| 2054 | #define NID_aes_256_cfb1 652 | ||
| 2055 | |||
| 2056 | #define SN_aes_128_cfb8 "AES-128-CFB8" | ||
| 2057 | #define LN_aes_128_cfb8 "aes-128-cfb8" | ||
| 2058 | #define NID_aes_128_cfb8 653 | ||
| 2059 | |||
| 2060 | #define SN_aes_192_cfb8 "AES-192-CFB8" | ||
| 2061 | #define LN_aes_192_cfb8 "aes-192-cfb8" | ||
| 2062 | #define NID_aes_192_cfb8 654 | ||
| 2063 | |||
| 2064 | #define SN_aes_256_cfb8 "AES-256-CFB8" | ||
| 2065 | #define LN_aes_256_cfb8 "aes-256-cfb8" | ||
| 2066 | #define NID_aes_256_cfb8 655 | ||
| 2067 | |||
| 2068 | #define SN_des_cfb1 "DES-CFB1" | ||
| 2069 | #define LN_des_cfb1 "des-cfb1" | ||
| 2070 | #define NID_des_cfb1 656 | ||
| 2071 | |||
| 2072 | #define SN_des_cfb8 "DES-CFB8" | ||
| 2073 | #define LN_des_cfb8 "des-cfb8" | ||
| 2074 | #define NID_des_cfb8 657 | ||
| 2075 | |||
| 2076 | #define SN_des_ede3_cfb1 "DES-EDE3-CFB1" | ||
| 2077 | #define LN_des_ede3_cfb1 "des-ede3-cfb1" | ||
| 2078 | #define NID_des_ede3_cfb1 658 | ||
| 2079 | |||
| 2080 | #define SN_des_ede3_cfb8 "DES-EDE3-CFB8" | ||
| 2081 | #define LN_des_ede3_cfb8 "des-ede3-cfb8" | ||
| 2082 | #define NID_des_ede3_cfb8 659 | ||
| 2083 | |||
| 2012 | #define SN_hold_instruction_code "holdInstructionCode" | 2084 | #define SN_hold_instruction_code "holdInstructionCode" |
| 2013 | #define LN_hold_instruction_code "Hold Instruction Code" | 2085 | #define LN_hold_instruction_code "Hold Instruction Code" |
| 2014 | #define NID_hold_instruction_code 430 | 2086 | #define NID_hold_instruction_code 430 |
diff --git a/src/lib/libcrypto/ocsp/Makefile b/src/lib/libcrypto/ocsp/Makefile new file mode 100644 index 0000000000..59f7098d9e --- /dev/null +++ b/src/lib/libcrypto/ocsp/Makefile | |||
| @@ -0,0 +1,291 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/ocsp/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= ocsp | ||
| 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 README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \ | ||
| 26 | ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c | ||
| 27 | |||
| 28 | LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \ | ||
| 29 | ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= ocsp.h | ||
| 34 | HEADER= $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 55 | |||
| 56 | install: | ||
| 57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 58 | do \ | ||
| 59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 61 | done; | ||
| 62 | |||
| 63 | tags: | ||
| 64 | ctags $(SRC) | ||
| 65 | |||
| 66 | tests: | ||
| 67 | |||
| 68 | lint: | ||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 70 | |||
| 71 | depend: | ||
| 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 73 | |||
| 74 | dclean: | ||
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 76 | mv -f Makefile.new $(MAKEFILE) | ||
| 77 | |||
| 78 | clean: | ||
| 79 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 80 | |||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 82 | |||
| 83 | ocsp_asn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 84 | ocsp_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 85 | ocsp_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 86 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 87 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 88 | ocsp_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 89 | ocsp_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 90 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 91 | ocsp_asn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 92 | ocsp_asn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 93 | ocsp_asn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 94 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 95 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 96 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 97 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 98 | ocsp_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 99 | ocsp_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 100 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 101 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 102 | ocsp_asn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 103 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 104 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c | ||
| 105 | ocsp_cl.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 106 | ocsp_cl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 107 | ocsp_cl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 108 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 109 | ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 110 | ocsp_cl.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 111 | ocsp_cl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 112 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 113 | ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 114 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 115 | ocsp_cl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 116 | ocsp_cl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 117 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 118 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 119 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 120 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 121 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 122 | ocsp_cl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 123 | ocsp_cl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 124 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 125 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 126 | ocsp_cl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 127 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 128 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c | ||
| 129 | ocsp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 130 | ocsp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 131 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 132 | ocsp_err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 133 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 134 | ocsp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 135 | ocsp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 136 | ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 137 | ocsp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 138 | ocsp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 139 | ocsp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 140 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 141 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 142 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 143 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 144 | ocsp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 145 | ocsp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 146 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 147 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 148 | ocsp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 149 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 150 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c | ||
| 151 | ocsp_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 152 | ocsp_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 153 | ocsp_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 154 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 155 | ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 156 | ocsp_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 157 | ocsp_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 158 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 159 | ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 160 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 161 | ocsp_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 162 | ocsp_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 163 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 164 | ocsp_ext.o: ../../include/openssl/opensslconf.h | ||
| 165 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 166 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 167 | ocsp_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 168 | ocsp_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 169 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 170 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 171 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 172 | ocsp_ext.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 173 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 174 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c | ||
| 175 | ocsp_ht.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 176 | ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 177 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 178 | ocsp_ht.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 179 | ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 180 | ocsp_ht.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 181 | ocsp_ht.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 182 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 183 | ocsp_ht.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 184 | ocsp_ht.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 185 | ocsp_ht.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 186 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 187 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 188 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 189 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 190 | ocsp_ht.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 191 | ocsp_ht.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 192 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 193 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 194 | ocsp_ht.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 195 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 196 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c | ||
| 197 | ocsp_lib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 198 | ocsp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 199 | ocsp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 200 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 201 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 202 | ocsp_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 203 | ocsp_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 204 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 205 | ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 206 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 207 | ocsp_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 208 | ocsp_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 209 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 210 | ocsp_lib.o: ../../include/openssl/opensslconf.h | ||
| 211 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 212 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 213 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 214 | ocsp_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 215 | ocsp_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 216 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 217 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 218 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 219 | ocsp_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 220 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 221 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c | ||
| 222 | ocsp_prn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 223 | ocsp_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 224 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 225 | ocsp_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 226 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 227 | ocsp_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 228 | ocsp_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 229 | ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 230 | ocsp_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 231 | ocsp_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 232 | ocsp_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 233 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 234 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 235 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 236 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 237 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 238 | ocsp_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 239 | ocsp_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 240 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 241 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 242 | ocsp_prn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 243 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 244 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c | ||
| 245 | ocsp_srv.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 246 | ocsp_srv.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 247 | ocsp_srv.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 248 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 249 | ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 250 | ocsp_srv.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 251 | ocsp_srv.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 252 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 253 | ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 254 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 255 | ocsp_srv.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 256 | ocsp_srv.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 257 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 258 | ocsp_srv.o: ../../include/openssl/opensslconf.h | ||
| 259 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 260 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 261 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 262 | ocsp_srv.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 263 | ocsp_srv.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 264 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 265 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 266 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 267 | ocsp_srv.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 268 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 269 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c | ||
| 270 | ocsp_vfy.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 271 | ocsp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 272 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 273 | ocsp_vfy.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 274 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 275 | ocsp_vfy.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 276 | ocsp_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 277 | ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 278 | ocsp_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 279 | ocsp_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 280 | ocsp_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 281 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 282 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | ||
| 283 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 284 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 285 | ocsp_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 286 | ocsp_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 287 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 288 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 289 | ocsp_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 290 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 291 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c | ||
diff --git a/src/lib/libcrypto/pem/Makefile b/src/lib/libcrypto/pem/Makefile new file mode 100644 index 0000000000..f3dfea2ac8 --- /dev/null +++ b/src/lib/libcrypto/pem/Makefile | |||
| @@ -0,0 +1,335 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/pem/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= pem | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ | ||
| 26 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | ||
| 27 | |||
| 28 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ | ||
| 29 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= pem.h pem2.h | ||
| 34 | HEADER= $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: $(EXHEADER) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 55 | |||
| 56 | install: | ||
| 57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 58 | do \ | ||
| 59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 60 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 61 | done; | ||
| 62 | |||
| 63 | tags: | ||
| 64 | ctags $(SRC) | ||
| 65 | |||
| 66 | tests: | ||
| 67 | |||
| 68 | lint: | ||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 70 | |||
| 71 | depend: | ||
| 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
| 73 | |||
| 74 | dclean: | ||
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 76 | mv -f Makefile.new $(MAKEFILE) | ||
| 77 | |||
| 78 | clean: | ||
| 79 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 80 | |||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 82 | |||
| 83 | pem_all.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 84 | pem_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 85 | pem_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 86 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 87 | pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 88 | pem_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 89 | pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 90 | pem_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 91 | pem_all.o: ../../include/openssl/fips.h ../../include/openssl/idea.h | ||
| 92 | pem_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 93 | pem_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 94 | pem_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 95 | pem_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 96 | pem_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 97 | pem_all.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 98 | pem_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 99 | pem_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 100 | pem_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | pem_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 102 | pem_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | pem_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 104 | pem_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 105 | pem_all.o: ../cryptlib.h pem_all.c | ||
| 106 | pem_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 107 | pem_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 108 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 109 | pem_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 110 | pem_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 111 | pem_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 112 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 113 | pem_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 114 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 115 | pem_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 116 | pem_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 117 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 118 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 119 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 120 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 121 | pem_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 122 | pem_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 123 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 124 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 125 | pem_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 126 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 127 | pem_err.o: pem_err.c | ||
| 128 | pem_info.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 129 | pem_info.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 130 | pem_info.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 131 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 132 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 133 | pem_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 134 | pem_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 135 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 136 | pem_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 137 | pem_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 138 | pem_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 139 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 140 | pem_info.o: ../../include/openssl/opensslconf.h | ||
| 141 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 142 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 143 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 144 | pem_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 145 | pem_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 146 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 147 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 148 | pem_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 149 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 150 | pem_info.o: ../cryptlib.h pem_info.c | ||
| 151 | pem_lib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 152 | pem_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 153 | pem_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 154 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 155 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 156 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 157 | pem_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 158 | pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 159 | pem_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 160 | pem_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 161 | pem_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 162 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 163 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 164 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 165 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 166 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 167 | pem_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 168 | pem_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 169 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 170 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 171 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 172 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 173 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | ||
| 174 | pem_oth.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 175 | pem_oth.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 176 | pem_oth.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 177 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 178 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 179 | pem_oth.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 180 | pem_oth.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 181 | pem_oth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 182 | pem_oth.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 183 | pem_oth.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 184 | pem_oth.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 185 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 186 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 187 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 188 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 189 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 190 | pem_oth.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 191 | pem_oth.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 192 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 193 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 194 | pem_oth.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 195 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 196 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
| 197 | pem_pk8.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 198 | pem_pk8.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 199 | pem_pk8.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 200 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 201 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 202 | pem_pk8.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 203 | pem_pk8.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 204 | pem_pk8.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 205 | pem_pk8.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 206 | pem_pk8.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 207 | pem_pk8.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 208 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 209 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 210 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 211 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 212 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 213 | pem_pk8.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 214 | pem_pk8.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 215 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 216 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 217 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 218 | pem_pk8.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 219 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | ||
| 220 | pem_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 221 | pem_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 222 | pem_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 223 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 224 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 225 | pem_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 226 | pem_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 227 | pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 228 | pem_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 229 | pem_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 230 | pem_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 231 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 232 | pem_pkey.o: ../../include/openssl/opensslconf.h | ||
| 233 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 234 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 235 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 236 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 237 | pem_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 238 | pem_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 239 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 240 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 241 | pem_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 242 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 243 | pem_pkey.o: ../cryptlib.h pem_pkey.c | ||
| 244 | pem_seal.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 245 | pem_seal.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 246 | pem_seal.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 247 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 248 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 249 | pem_seal.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 250 | pem_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 251 | pem_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 252 | pem_seal.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 253 | pem_seal.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 254 | pem_seal.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 255 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 256 | pem_seal.o: ../../include/openssl/opensslconf.h | ||
| 257 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 258 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 259 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 260 | pem_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 261 | pem_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 262 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 263 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 264 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 265 | pem_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 266 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | ||
| 267 | pem_sign.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 268 | pem_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 269 | pem_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 270 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 271 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 272 | pem_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 273 | pem_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 274 | pem_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 275 | pem_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 276 | pem_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 277 | pem_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 278 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 279 | pem_sign.o: ../../include/openssl/opensslconf.h | ||
| 280 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 282 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 283 | pem_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 284 | pem_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 285 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 286 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 287 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 288 | pem_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 289 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | ||
| 290 | pem_x509.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 291 | pem_x509.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 292 | pem_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 293 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 294 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 295 | pem_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 296 | pem_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 297 | pem_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 298 | pem_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 299 | pem_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 300 | pem_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 301 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 302 | pem_x509.o: ../../include/openssl/opensslconf.h | ||
| 303 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 304 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 305 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 306 | pem_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 307 | pem_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 308 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 309 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 310 | pem_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 311 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 312 | pem_x509.o: ../cryptlib.h pem_x509.c | ||
| 313 | pem_xaux.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 314 | pem_xaux.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 315 | pem_xaux.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 316 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 317 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 318 | pem_xaux.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 319 | pem_xaux.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 320 | pem_xaux.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 321 | pem_xaux.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 322 | pem_xaux.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 323 | pem_xaux.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 324 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 325 | pem_xaux.o: ../../include/openssl/opensslconf.h | ||
| 326 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 327 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 328 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 329 | pem_xaux.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 330 | pem_xaux.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 331 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 332 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 333 | pem_xaux.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 334 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 335 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||
diff --git a/src/lib/libcrypto/perlasm/x86ms.pl b/src/lib/libcrypto/perlasm/x86ms.pl index fbb4afb9bd..b6bd744057 100644 --- a/src/lib/libcrypto/perlasm/x86ms.pl +++ b/src/lib/libcrypto/perlasm/x86ms.pl | |||
| @@ -160,6 +160,7 @@ sub main'not { &out1("not",@_); } | |||
| 160 | sub main'call { &out1("call",($_[0]=~/^\$L/?'':'_').$_[0]); } | 160 | sub main'call { &out1("call",($_[0]=~/^\$L/?'':'_').$_[0]); } |
| 161 | sub main'ret { &out0("ret"); } | 161 | sub main'ret { &out0("ret"); } |
| 162 | sub main'nop { &out0("nop"); } | 162 | sub main'nop { &out0("nop"); } |
| 163 | sub main'movz { &out2("movzx",@_); } | ||
| 163 | 164 | ||
| 164 | sub out2 | 165 | sub out2 |
| 165 | { | 166 | { |
diff --git a/src/lib/libcrypto/perlasm/x86nasm.pl b/src/lib/libcrypto/perlasm/x86nasm.pl index 30346af4ea..5009acb4b3 100644 --- a/src/lib/libcrypto/perlasm/x86nasm.pl +++ b/src/lib/libcrypto/perlasm/x86nasm.pl | |||
| @@ -86,7 +86,7 @@ sub get_mem | |||
| 86 | { | 86 | { |
| 87 | my($size,$addr,$reg1,$reg2,$idx)=@_; | 87 | my($size,$addr,$reg1,$reg2,$idx)=@_; |
| 88 | my($t,$post); | 88 | my($t,$post); |
| 89 | my($ret)="["; | 89 | my($ret)="$size ["; |
| 90 | $addr =~ s/^\s+//; | 90 | $addr =~ s/^\s+//; |
| 91 | if ($addr =~ /^(.+)\+(.+)$/) | 91 | if ($addr =~ /^(.+)\+(.+)$/) |
| 92 | { | 92 | { |
| @@ -169,6 +169,7 @@ sub main'not { &out1("not",@_); } | |||
| 169 | sub main'call { &out1("call",($_[0]=~/^\$L/?'':'_').$_[0]); } | 169 | sub main'call { &out1("call",($_[0]=~/^\$L/?'':'_').$_[0]); } |
| 170 | sub main'ret { &out0("ret"); } | 170 | sub main'ret { &out0("ret"); } |
| 171 | sub main'nop { &out0("nop"); } | 171 | sub main'nop { &out0("nop"); } |
| 172 | sub main'movz { &out2("movzx",@_); } | ||
| 172 | 173 | ||
| 173 | sub out2 | 174 | sub out2 |
| 174 | { | 175 | { |
| @@ -176,6 +177,11 @@ sub out2 | |||
| 176 | my($l,$t); | 177 | my($l,$t); |
| 177 | 178 | ||
| 178 | push(@out,"\t$name\t"); | 179 | push(@out,"\t$name\t"); |
| 180 | if ($name eq "lea") | ||
| 181 | { | ||
| 182 | $p1 =~ s/^[^\[]*\[/\[/; | ||
| 183 | $p2 =~ s/^[^\[]*\[/\[/; | ||
| 184 | } | ||
| 179 | $t=&conv($p1).","; | 185 | $t=&conv($p1).","; |
| 180 | $l=length($t); | 186 | $l=length($t); |
| 181 | push(@out,$t); | 187 | push(@out,$t); |
diff --git a/src/lib/libcrypto/perlasm/x86unix.pl b/src/lib/libcrypto/perlasm/x86unix.pl index 10b669bf04..a31a25c12b 100644 --- a/src/lib/libcrypto/perlasm/x86unix.pl +++ b/src/lib/libcrypto/perlasm/x86unix.pl | |||
| @@ -137,12 +137,12 @@ sub main'shl { &out2("sall",@_); } | |||
| 137 | sub main'shr { &out2("shrl",@_); } | 137 | sub main'shr { &out2("shrl",@_); } |
| 138 | sub main'xor { &out2("xorl",@_); } | 138 | sub main'xor { &out2("xorl",@_); } |
| 139 | sub main'xorb { &out2("xorb",@_); } | 139 | sub main'xorb { &out2("xorb",@_); } |
| 140 | sub main'add { &out2("addl",@_); } | 140 | sub main'add { &out2($_[0]=~/%[a-d][lh]/?"addb":"addl",@_); } |
| 141 | sub main'adc { &out2("adcl",@_); } | 141 | sub main'adc { &out2("adcl",@_); } |
| 142 | sub main'sub { &out2("subl",@_); } | 142 | sub main'sub { &out2("subl",@_); } |
| 143 | sub main'rotl { &out2("roll",@_); } | 143 | sub main'rotl { &out2("roll",@_); } |
| 144 | sub main'rotr { &out2("rorl",@_); } | 144 | sub main'rotr { &out2("rorl",@_); } |
| 145 | sub main'exch { &out2("xchg",@_); } | 145 | sub main'exch { &out2($_[0]=~/%[a-d][lh]/?"xchgb":"xchgl",@_); } |
| 146 | sub main'cmp { &out2("cmpl",@_); } | 146 | sub main'cmp { &out2("cmpl",@_); } |
| 147 | sub main'lea { &out2("leal",@_); } | 147 | sub main'lea { &out2("leal",@_); } |
| 148 | sub main'mul { &out1("mull",@_); } | 148 | sub main'mul { &out1("mull",@_); } |
| @@ -164,7 +164,7 @@ sub main'jc { &out1("jc",@_); } | |||
| 164 | sub main'jnc { &out1("jnc",@_); } | 164 | sub main'jnc { &out1("jnc",@_); } |
| 165 | sub main'jno { &out1("jno",@_); } | 165 | sub main'jno { &out1("jno",@_); } |
| 166 | sub main'dec { &out1("decl",@_); } | 166 | sub main'dec { &out1("decl",@_); } |
| 167 | sub main'inc { &out1("incl",@_); } | 167 | sub main'inc { &out1($_[0]=~/%[a-d][hl]/?"incb":"incl",@_); } |
| 168 | sub main'push { &out1("pushl",@_); $stack+=4; } | 168 | sub main'push { &out1("pushl",@_); $stack+=4; } |
| 169 | sub main'pop { &out1("popl",@_); $stack-=4; } | 169 | sub main'pop { &out1("popl",@_); $stack-=4; } |
| 170 | sub main'pushf { &out0("pushf"); $stack+=4; } | 170 | sub main'pushf { &out0("pushf"); $stack+=4; } |
| @@ -173,6 +173,7 @@ sub main'not { &out1("notl",@_); } | |||
| 173 | sub main'call { &out1("call",($_[0]=~/^\.L/?'':$under).$_[0]); } | 173 | sub main'call { &out1("call",($_[0]=~/^\.L/?'':$under).$_[0]); } |
| 174 | sub main'ret { &out0("ret"); } | 174 | sub main'ret { &out0("ret"); } |
| 175 | sub main'nop { &out0("nop"); } | 175 | sub main'nop { &out0("nop"); } |
| 176 | sub main'movz { &out2("movzbl",@_); } | ||
| 176 | 177 | ||
| 177 | # The bswapl instruction is new for the 486. Emulate if i386. | 178 | # The bswapl instruction is new for the 486. Emulate if i386. |
| 178 | sub main'bswap | 179 | sub main'bswap |
diff --git a/src/lib/libcrypto/pkcs12/Makefile b/src/lib/libcrypto/pkcs12/Makefile new file mode 100644 index 0000000000..854b641f7c --- /dev/null +++ b/src/lib/libcrypto/pkcs12/Makefile | |||
| @@ -0,0 +1,415 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/pkcs12/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= pkcs12 | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ | ||
| 26 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ | ||
| 27 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c | ||
| 28 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ | ||
| 29 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ | ||
| 30 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= pkcs12.h | ||
| 35 | HEADER= $(EXHEADER) | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | test: | ||
| 43 | |||
| 44 | all: lib | ||
| 45 | |||
| 46 | lib: $(LIBOBJ) | ||
| 47 | $(AR) $(LIB) $(LIBOBJ) | ||
| 48 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 49 | @touch lib | ||
| 50 | |||
| 51 | files: | ||
| 52 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 53 | |||
| 54 | links: | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 58 | |||
| 59 | install: | ||
| 60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 61 | do \ | ||
| 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 64 | done; | ||
| 65 | |||
| 66 | tags: | ||
| 67 | ctags $(SRC) | ||
| 68 | |||
| 69 | tests: | ||
| 70 | |||
| 71 | lint: | ||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 73 | |||
| 74 | depend: | ||
| 75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 76 | |||
| 77 | dclean: | ||
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 79 | mv -f Makefile.new $(MAKEFILE) | ||
| 80 | |||
| 81 | clean: | ||
| 82 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 83 | |||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 85 | |||
| 86 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 91 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 92 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 95 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 96 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 97 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 98 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 99 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 100 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 101 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 102 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 103 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 104 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 105 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 106 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 107 | p12_add.o: ../cryptlib.h p12_add.c | ||
| 108 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 109 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 110 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 111 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 112 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 113 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 114 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 115 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 116 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 117 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 118 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 119 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 120 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 121 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 123 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 124 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 125 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 126 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 127 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 128 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 129 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
| 130 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 131 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 132 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 133 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 134 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 135 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 136 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 137 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 138 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 139 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 140 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 141 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 142 | p12_attr.o: ../../include/openssl/opensslconf.h | ||
| 143 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 144 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 145 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 146 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 147 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 148 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 149 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 150 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 151 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | ||
| 152 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 153 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 154 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 155 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 156 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 157 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 158 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 159 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 160 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 161 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 162 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 163 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 164 | p12_crpt.o: ../../include/openssl/opensslconf.h | ||
| 165 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 166 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 167 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 168 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 169 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 170 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 171 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 172 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 173 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | ||
| 174 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 175 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 176 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 177 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 178 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 179 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 180 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 181 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 182 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 183 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 184 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 185 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 186 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 187 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 188 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 189 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 190 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 191 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 192 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 193 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 194 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 195 | p12_crt.o: ../cryptlib.h p12_crt.c | ||
| 196 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 197 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 198 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 199 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 200 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 201 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 202 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 203 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 204 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 205 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 206 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 207 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 208 | p12_decr.o: ../../include/openssl/opensslconf.h | ||
| 209 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 210 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 211 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 212 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 213 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 214 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 215 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 216 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 217 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | ||
| 218 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 219 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 220 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 221 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 222 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 223 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 224 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 225 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 226 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 227 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 228 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 229 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 230 | p12_init.o: ../../include/openssl/opensslconf.h | ||
| 231 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 232 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 233 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 234 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 235 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 236 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 237 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 238 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 239 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | ||
| 240 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 241 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 242 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 243 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 244 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 245 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 246 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 247 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 248 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 249 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 250 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 251 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 252 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 253 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 254 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 255 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 256 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 257 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 258 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 259 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 260 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 261 | p12_key.o: ../cryptlib.h p12_key.c | ||
| 262 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 263 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 264 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 265 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 266 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 267 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 268 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 269 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 270 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 271 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 272 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 273 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 274 | p12_kiss.o: ../../include/openssl/opensslconf.h | ||
| 275 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 276 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 277 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 278 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 279 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 280 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 281 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 282 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 283 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | ||
| 284 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 285 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 286 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 287 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 288 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 289 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 290 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 291 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 292 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 293 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 294 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 295 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 296 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 297 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 298 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 299 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 300 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 301 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 302 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 303 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 304 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 305 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 306 | p12_mutl.o: ../cryptlib.h p12_mutl.c | ||
| 307 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 308 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 309 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 310 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 311 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 312 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 313 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 314 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 315 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 316 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 317 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 318 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 319 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 320 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 321 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 322 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 323 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 324 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 325 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 326 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 327 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 328 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | ||
| 329 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 330 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 331 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 332 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 333 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 334 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 335 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 336 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 337 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 338 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 339 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 340 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 341 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 342 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 343 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 344 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 345 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 346 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 347 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 348 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 349 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 350 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
| 351 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 352 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 353 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 354 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 355 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 356 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 357 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 358 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 359 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 360 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 361 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 362 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 363 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 364 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 365 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 366 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 367 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 368 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 369 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 370 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 371 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 372 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
| 373 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 374 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 375 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 376 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 377 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 378 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 379 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 380 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 381 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 382 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 383 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 384 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 385 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 386 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 387 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 388 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 389 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 390 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 391 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 392 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 393 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 394 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
| 395 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 396 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 397 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 398 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 399 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 400 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 401 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 402 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 403 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 404 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 405 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 406 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 407 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 408 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 409 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 410 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 411 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 412 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 413 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 414 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 415 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | ||
diff --git a/src/lib/libcrypto/pkcs7/Makefile b/src/lib/libcrypto/pkcs7/Makefile new file mode 100644 index 0000000000..f15c65f690 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/Makefile | |||
| @@ -0,0 +1,241 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/pkcs7/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= pkcs7 | ||
| 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 | PEX_LIBS= | ||
| 19 | EX_LIBS= | ||
| 20 | |||
| 21 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 22 | |||
| 23 | GENERAL=Makefile README | ||
| 24 | TEST= | ||
| 25 | APPS= | ||
| 26 | |||
| 27 | LIB=$(TOP)/libcrypto.a | ||
| 28 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ | ||
| 29 | pk7_mime.c | ||
| 30 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ | ||
| 31 | pk7_mime.o | ||
| 32 | |||
| 33 | SRC= $(LIBSRC) | ||
| 34 | |||
| 35 | EXHEADER= pkcs7.h | ||
| 36 | HEADER= $(EXHEADER) | ||
| 37 | |||
| 38 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 39 | |||
| 40 | top: | ||
| 41 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 42 | |||
| 43 | test: | ||
| 44 | |||
| 45 | all: lib | ||
| 46 | |||
| 47 | testapps: enc dec sign verify | ||
| 48 | |||
| 49 | enc: enc.o lib | ||
| 50 | $(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 51 | |||
| 52 | dec: dec.o lib | ||
| 53 | $(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 54 | |||
| 55 | sign: sign.o lib | ||
| 56 | $(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 57 | |||
| 58 | verify: verify.o example.o lib | ||
| 59 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) | ||
| 60 | |||
| 61 | lib: $(LIBOBJ) | ||
| 62 | $(AR) $(LIB) $(LIBOBJ) | ||
| 63 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 64 | @touch lib | ||
| 65 | |||
| 66 | files: | ||
| 67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 68 | |||
| 69 | links: | ||
| 70 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 71 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 73 | |||
| 74 | install: | ||
| 75 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 76 | do \ | ||
| 77 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 78 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 79 | done; | ||
| 80 | |||
| 81 | tags: | ||
| 82 | ctags $(SRC) | ||
| 83 | |||
| 84 | tests: | ||
| 85 | |||
| 86 | lint: | ||
| 87 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 88 | |||
| 89 | depend: | ||
| 90 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 91 | |||
| 92 | dclean: | ||
| 93 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 94 | mv -f Makefile.new $(MAKEFILE) | ||
| 95 | |||
| 96 | clean: | ||
| 97 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify | ||
| 98 | |||
| 99 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 100 | |||
| 101 | pk7_asn1.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 102 | pk7_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 103 | pk7_asn1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 104 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 105 | pk7_asn1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 106 | pk7_asn1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 107 | pk7_asn1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | pk7_asn1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 110 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 111 | pk7_asn1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 112 | pk7_asn1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 114 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 115 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 116 | pk7_asn1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 117 | pk7_asn1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 118 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 119 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 120 | pk7_asn1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 121 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 122 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | ||
| 123 | pk7_attr.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 124 | pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 125 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 126 | pk7_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 127 | pk7_attr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 128 | pk7_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 129 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 130 | pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 131 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 132 | pk7_attr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 133 | pk7_attr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 134 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 135 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 137 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 138 | pk7_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 139 | pk7_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 140 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 141 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 142 | pk7_attr.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 143 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 144 | pk7_attr.o: pk7_attr.c | ||
| 145 | pk7_doit.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 146 | pk7_doit.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 147 | pk7_doit.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 148 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 149 | pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 150 | pk7_doit.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 151 | pk7_doit.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 152 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 153 | pk7_doit.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 154 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 155 | pk7_doit.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 156 | pk7_doit.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 157 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 158 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 159 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 160 | pk7_doit.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 161 | pk7_doit.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 162 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 163 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 164 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 165 | pk7_doit.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 166 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 167 | pk7_doit.o: ../cryptlib.h pk7_doit.c | ||
| 168 | pk7_lib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 169 | pk7_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 170 | pk7_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 171 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 172 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | pk7_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 174 | pk7_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 175 | pk7_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 176 | pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 177 | pk7_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 178 | pk7_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 179 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 180 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 181 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 182 | pk7_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 183 | pk7_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 184 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 185 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 186 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 187 | pk7_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 188 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | ||
| 189 | pk7_mime.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 190 | pk7_mime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 191 | pk7_mime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 192 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 193 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 194 | pk7_mime.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 195 | pk7_mime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 196 | pk7_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 197 | pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 198 | pk7_mime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 199 | pk7_mime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 200 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 201 | pk7_mime.o: ../../include/openssl/opensslconf.h | ||
| 202 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 203 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 204 | pk7_mime.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 205 | pk7_mime.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 206 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 207 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 208 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 209 | pk7_mime.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 210 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | ||
| 211 | pk7_smime.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 212 | pk7_smime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 213 | pk7_smime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 214 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 215 | pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 216 | pk7_smime.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 217 | pk7_smime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 218 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 219 | pk7_smime.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 220 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 221 | pk7_smime.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 222 | pk7_smime.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 223 | pk7_smime.o: ../../include/openssl/objects.h | ||
| 224 | pk7_smime.o: ../../include/openssl/opensslconf.h | ||
| 225 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 226 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 227 | pk7_smime.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 228 | pk7_smime.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 229 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 230 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 231 | pk7_smime.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 232 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 233 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | ||
| 234 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 235 | pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 236 | pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 237 | pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 238 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 239 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 240 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 241 | pkcs7err.o: pkcs7err.c | ||
diff --git a/src/lib/libcrypto/rand/Makefile b/src/lib/libcrypto/rand/Makefile new file mode 100644 index 0000000000..665eaa18e5 --- /dev/null +++ b/src/lib/libcrypto/rand/Makefile | |||
| @@ -0,0 +1,196 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rand/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rand | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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= randtest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ | ||
| 26 | rand_win.c rand_unix.c rand_os2.c | ||
| 27 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ | ||
| 28 | rand_win.o rand_unix.o rand_os2.o | ||
| 29 | |||
| 30 | SRC= $(LIBSRC) | ||
| 31 | |||
| 32 | EXHEADER= rand.h | ||
| 33 | HEADER= $(EXHEADER) | ||
| 34 | |||
| 35 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 36 | |||
| 37 | top: | ||
| 38 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 39 | |||
| 40 | all: lib | ||
| 41 | |||
| 42 | lib: $(LIBOBJ) | ||
| 43 | $(AR) $(LIB) $(LIBOBJ) | ||
| 44 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 45 | @touch lib | ||
| 46 | |||
| 47 | files: | ||
| 48 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 49 | |||
| 50 | links: | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 54 | |||
| 55 | install: | ||
| 56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 57 | do \ | ||
| 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 60 | done; | ||
| 61 | |||
| 62 | tags: | ||
| 63 | ctags $(SRC) | ||
| 64 | |||
| 65 | tests: | ||
| 66 | |||
| 67 | lint: | ||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 69 | |||
| 70 | depend: | ||
| 71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 72 | |||
| 73 | dclean: | ||
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 75 | mv -f Makefile.new $(MAKEFILE) | ||
| 76 | |||
| 77 | clean: | ||
| 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 79 | |||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 81 | |||
| 82 | md_rand.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 83 | md_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 84 | md_rand.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 85 | md_rand.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 86 | md_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 87 | md_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 88 | md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 89 | md_rand.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 90 | md_rand.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 91 | md_rand.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 92 | md_rand.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 93 | md_rand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 94 | md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 95 | md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 96 | md_rand.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 97 | md_rand.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 98 | md_rand.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 99 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 100 | md_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 101 | md_rand.o: ../../include/openssl/ui_compat.h md_rand.c rand_lcl.h | ||
| 102 | rand_egd.o: ../../include/openssl/buffer.h ../../include/openssl/e_os2.h | ||
| 103 | rand_egd.o: ../../include/openssl/opensslconf.h | ||
| 104 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 105 | rand_egd.o: rand_egd.c | ||
| 106 | rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 107 | rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 108 | rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 109 | rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 110 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 111 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | rand_err.o: rand_err.c | ||
| 113 | rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | rand_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 117 | rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 118 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 119 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/fips.h | ||
| 120 | rand_lib.o: ../../include/openssl/fips_rand.h ../../include/openssl/lhash.h | ||
| 121 | rand_lib.o: ../../include/openssl/opensslconf.h | ||
| 122 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 123 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 124 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 125 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 126 | rand_lib.o: ../../include/openssl/ui_compat.h ../cryptlib.h rand_lib.c | ||
| 127 | rand_os2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 128 | rand_os2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 129 | rand_os2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 130 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 131 | rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 132 | rand_os2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 133 | rand_os2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 134 | rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 135 | rand_os2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 136 | rand_os2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 137 | rand_os2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 138 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 139 | rand_os2.o: ../../include/openssl/opensslconf.h | ||
| 140 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 141 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 142 | rand_os2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 143 | rand_os2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 144 | rand_os2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 145 | rand_os2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 146 | rand_os2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 147 | rand_os2.o: ../cryptlib.h rand_lcl.h rand_os2.c | ||
| 148 | rand_unix.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 149 | rand_unix.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 150 | rand_unix.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 151 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 152 | rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 153 | rand_unix.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 154 | rand_unix.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 155 | rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 156 | rand_unix.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 157 | rand_unix.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 158 | rand_unix.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 159 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 160 | rand_unix.o: ../../include/openssl/opensslconf.h | ||
| 161 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 162 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 163 | rand_unix.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 164 | rand_unix.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 165 | rand_unix.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 166 | rand_unix.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 167 | rand_unix.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 168 | rand_unix.o: ../cryptlib.h rand_lcl.h rand_unix.c | ||
| 169 | rand_win.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 170 | rand_win.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 171 | rand_win.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 172 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 173 | rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 174 | rand_win.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 175 | rand_win.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 176 | rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 177 | rand_win.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 178 | rand_win.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 179 | rand_win.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 180 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 181 | rand_win.o: ../../include/openssl/opensslconf.h | ||
| 182 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 184 | rand_win.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 185 | rand_win.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 186 | rand_win.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 187 | rand_win.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | rand_win.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 189 | rand_win.o: ../cryptlib.h rand_lcl.h rand_win.c | ||
| 190 | randfile.o: ../../e_os.h ../../include/openssl/buffer.h | ||
| 191 | randfile.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 192 | randfile.o: ../../include/openssl/opensslconf.h | ||
| 193 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 194 | randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 195 | randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 196 | randfile.o: randfile.c | ||
diff --git a/src/lib/libcrypto/rand/md_rand.c b/src/lib/libcrypto/rand/md_rand.c index eeffc0df4c..c84968df88 100644 --- a/src/lib/libcrypto/rand/md_rand.c +++ b/src/lib/libcrypto/rand/md_rand.c | |||
| @@ -126,6 +126,7 @@ | |||
| 126 | 126 | ||
| 127 | #include <openssl/crypto.h> | 127 | #include <openssl/crypto.h> |
| 128 | #include <openssl/err.h> | 128 | #include <openssl/err.h> |
| 129 | #include <openssl/fips.h> | ||
| 129 | 130 | ||
| 130 | #ifdef BN_DEBUG | 131 | #ifdef BN_DEBUG |
| 131 | # define PREDICT | 132 | # define PREDICT |
| @@ -332,6 +333,14 @@ static int ssleay_rand_bytes(unsigned char *buf, int num) | |||
| 332 | #endif | 333 | #endif |
| 333 | int do_stir_pool = 0; | 334 | int do_stir_pool = 0; |
| 334 | 335 | ||
| 336 | #ifdef OPENSSL_FIPS | ||
| 337 | if(FIPS_mode()) | ||
| 338 | { | ||
| 339 | FIPSerr(FIPS_F_SSLEAY_RAND_BYTES,FIPS_R_NON_FIPS_METHOD); | ||
| 340 | return 0; | ||
| 341 | } | ||
| 342 | #endif | ||
| 343 | |||
| 335 | #ifdef PREDICT | 344 | #ifdef PREDICT |
| 336 | if (rand_predictable) | 345 | if (rand_predictable) |
| 337 | { | 346 | { |
diff --git a/src/lib/libcrypto/rand/rand_egd.c b/src/lib/libcrypto/rand/rand_egd.c index 6f742900a0..cd666abfcb 100644 --- a/src/lib/libcrypto/rand/rand_egd.c +++ b/src/lib/libcrypto/rand/rand_egd.c | |||
| @@ -95,7 +95,7 @@ | |||
| 95 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. | 95 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. |
| 96 | */ | 96 | */ |
| 97 | 97 | ||
| 98 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VXWORKS) | 98 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_VOS) |
| 99 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) | 99 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) |
| 100 | { | 100 | { |
| 101 | return(-1); | 101 | return(-1); |
| @@ -216,7 +216,9 @@ int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) | |||
| 216 | while (numbytes != 1) | 216 | while (numbytes != 1) |
| 217 | { | 217 | { |
| 218 | num = read(fd, egdbuf, 1); | 218 | num = read(fd, egdbuf, 1); |
| 219 | if (num >= 0) | 219 | if (num == 0) |
| 220 | goto err; /* descriptor closed */ | ||
| 221 | else if (num > 0) | ||
| 220 | numbytes += num; | 222 | numbytes += num; |
| 221 | else | 223 | else |
| 222 | { | 224 | { |
| @@ -246,7 +248,9 @@ int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) | |||
| 246 | while (numbytes != egdbuf[0]) | 248 | while (numbytes != egdbuf[0]) |
| 247 | { | 249 | { |
| 248 | num = read(fd, retrievebuf + numbytes, egdbuf[0] - numbytes); | 250 | num = read(fd, retrievebuf + numbytes, egdbuf[0] - numbytes); |
| 249 | if (num >= 0) | 251 | if (num == 0) |
| 252 | goto err; /* descriptor closed */ | ||
| 253 | else if (num > 0) | ||
| 250 | numbytes += num; | 254 | numbytes += num; |
| 251 | else | 255 | else |
| 252 | { | 256 | { |
diff --git a/src/lib/libcrypto/rand/rand_unix.c b/src/lib/libcrypto/rand/rand_unix.c index 0599719dd1..9376554fae 100644 --- a/src/lib/libcrypto/rand/rand_unix.c +++ b/src/lib/libcrypto/rand/rand_unix.c | |||
| @@ -120,6 +120,7 @@ | |||
| 120 | #include <sys/types.h> | 120 | #include <sys/types.h> |
| 121 | #include <sys/time.h> | 121 | #include <sys/time.h> |
| 122 | #include <sys/times.h> | 122 | #include <sys/times.h> |
| 123 | #include <sys/stat.h> | ||
| 123 | #include <fcntl.h> | 124 | #include <fcntl.h> |
| 124 | #include <unistd.h> | 125 | #include <unistd.h> |
| 125 | #include <time.h> | 126 | #include <time.h> |
| @@ -151,9 +152,9 @@ int RAND_poll(void) | |||
| 151 | int n = 0; | 152 | int n = 0; |
| 152 | #endif | 153 | #endif |
| 153 | #ifdef DEVRANDOM | 154 | #ifdef DEVRANDOM |
| 154 | static const char *randomfiles[] = { DEVRANDOM, NULL }; | 155 | static const char *randomfiles[] = { DEVRANDOM }; |
| 155 | const char **randomfile = NULL; | 156 | struct stat randomstats[sizeof(randomfiles)/sizeof(randomfiles[0])]; |
| 156 | int fd; | 157 | int fd,i; |
| 157 | #endif | 158 | #endif |
| 158 | #ifdef DEVRANDOM_EGD | 159 | #ifdef DEVRANDOM_EGD |
| 159 | static const char *egdsockets[] = { DEVRANDOM_EGD, NULL }; | 160 | static const char *egdsockets[] = { DEVRANDOM_EGD, NULL }; |
| @@ -161,26 +162,42 @@ int RAND_poll(void) | |||
| 161 | #endif | 162 | #endif |
| 162 | 163 | ||
| 163 | #ifdef DEVRANDOM | 164 | #ifdef DEVRANDOM |
| 165 | memset(randomstats,0,sizeof(randomstats)); | ||
| 164 | /* Use a random entropy pool device. Linux, FreeBSD and OpenBSD | 166 | /* Use a random entropy pool device. Linux, FreeBSD and OpenBSD |
| 165 | * have this. Use /dev/urandom if you can as /dev/random may block | 167 | * have this. Use /dev/urandom if you can as /dev/random may block |
| 166 | * if it runs out of random entries. */ | 168 | * if it runs out of random entries. */ |
| 167 | 169 | ||
| 168 | for (randomfile = randomfiles; *randomfile && n < ENTROPY_NEEDED; randomfile++) | 170 | for (i=0; i<sizeof(randomfiles)/sizeof(randomfiles[0]) && n < ENTROPY_NEEDED; i++) |
| 169 | { | 171 | { |
| 170 | if ((fd = open(*randomfile, O_RDONLY|O_NONBLOCK | 172 | if ((fd = open(randomfiles[i], O_RDONLY |
| 173 | #ifdef O_NONBLOCK | ||
| 174 | |O_NONBLOCK | ||
| 175 | #endif | ||
| 176 | #ifdef O_BINARY | ||
| 177 | |O_BINARY | ||
| 178 | #endif | ||
| 171 | #ifdef O_NOCTTY /* If it happens to be a TTY (god forbid), do not make it | 179 | #ifdef O_NOCTTY /* If it happens to be a TTY (god forbid), do not make it |
| 172 | our controlling tty */ | 180 | our controlling tty */ |
| 173 | |O_NOCTTY | 181 | |O_NOCTTY |
| 174 | #endif | 182 | #endif |
| 175 | #ifdef O_NOFOLLOW /* Fail if the file is a symbolic link */ | ||
| 176 | |O_NOFOLLOW | ||
| 177 | #endif | ||
| 178 | )) >= 0) | 183 | )) >= 0) |
| 179 | { | 184 | { |
| 180 | struct timeval t = { 0, 10*1000 }; /* Spend 10ms on | 185 | struct timeval t = { 0, 10*1000 }; /* Spend 10ms on |
| 181 | each file. */ | 186 | each file. */ |
| 182 | int r; | 187 | int r,j; |
| 183 | fd_set fset; | 188 | fd_set fset; |
| 189 | struct stat *st=&randomstats[i]; | ||
| 190 | |||
| 191 | /* Avoid using same input... Used to be O_NOFOLLOW | ||
| 192 | * above, but it's not universally appropriate... */ | ||
| 193 | if (fstat(fd,st) != 0) { close(fd); continue; } | ||
| 194 | for (j=0;j<i;j++) | ||
| 195 | { | ||
| 196 | if (randomstats[j].st_ino==st->st_ino && | ||
| 197 | randomstats[j].st_dev==st->st_dev) | ||
| 198 | break; | ||
| 199 | } | ||
| 200 | if (j<i) { close(fd); continue; } | ||
| 184 | 201 | ||
| 185 | do | 202 | do |
| 186 | { | 203 | { |
diff --git a/src/lib/libcrypto/rand/rand_vms.c b/src/lib/libcrypto/rand/rand_vms.c index 29b2d7af0b..1267a3acae 100644 --- a/src/lib/libcrypto/rand/rand_vms.c +++ b/src/lib/libcrypto/rand/rand_vms.c | |||
| @@ -101,11 +101,12 @@ int RAND_poll(void) | |||
| 101 | pitem = item; | 101 | pitem = item; |
| 102 | 102 | ||
| 103 | /* Setup */ | 103 | /* Setup */ |
| 104 | while (pitems_data->length) | 104 | while (pitems_data->length |
| 105 | && (total_length + pitems_data->length <= 256)) | ||
| 105 | { | 106 | { |
| 106 | pitem->length = pitems_data->length; | 107 | pitem->length = pitems_data->length; |
| 107 | pitem->code = pitems_data->code; | 108 | pitem->code = pitems_data->code; |
| 108 | pitem->buffer = (long *)data_buffer[total_length]; | 109 | pitem->buffer = (long *)&data_buffer[total_length]; |
| 109 | pitem->retlen = 0; | 110 | pitem->retlen = 0; |
| 110 | total_length += pitems_data->length; | 111 | total_length += pitems_data->length; |
| 111 | pitems_data++; | 112 | pitems_data++; |
diff --git a/src/lib/libcrypto/rand/rand_win.c b/src/lib/libcrypto/rand/rand_win.c index 3584842224..30c69161ef 100644 --- a/src/lib/libcrypto/rand/rand_win.c +++ b/src/lib/libcrypto/rand/rand_win.c | |||
| @@ -125,7 +125,7 @@ | |||
| 125 | * http://developer.intel.com/design/security/rng/redist_license.htm | 125 | * http://developer.intel.com/design/security/rng/redist_license.htm |
| 126 | */ | 126 | */ |
| 127 | #define PROV_INTEL_SEC 22 | 127 | #define PROV_INTEL_SEC 22 |
| 128 | #define INTEL_DEF_PROV TEXT("Intel Hardware Cryptographic Service Provider") | 128 | #define INTEL_DEF_PROV L"Intel Hardware Cryptographic Service Provider" |
| 129 | 129 | ||
| 130 | static void readtimer(void); | 130 | static void readtimer(void); |
| 131 | static void readscreen(void); | 131 | static void readscreen(void); |
| @@ -152,7 +152,7 @@ typedef struct tagCURSORINFO | |||
| 152 | #define CURSOR_SHOWING 0x00000001 | 152 | #define CURSOR_SHOWING 0x00000001 |
| 153 | #endif /* CURSOR_SHOWING */ | 153 | #endif /* CURSOR_SHOWING */ |
| 154 | 154 | ||
| 155 | typedef BOOL (WINAPI *CRYPTACQUIRECONTEXT)(HCRYPTPROV *, LPCTSTR, LPCTSTR, | 155 | typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTW)(HCRYPTPROV *, LPCWSTR, LPCWSTR, |
| 156 | DWORD, DWORD); | 156 | DWORD, DWORD); |
| 157 | typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV, DWORD, BYTE *); | 157 | typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV, DWORD, BYTE *); |
| 158 | typedef BOOL (WINAPI *CRYPTRELEASECONTEXT)(HCRYPTPROV, DWORD); | 158 | typedef BOOL (WINAPI *CRYPTRELEASECONTEXT)(HCRYPTPROV, DWORD); |
| @@ -194,7 +194,7 @@ int RAND_poll(void) | |||
| 194 | HWND h; | 194 | HWND h; |
| 195 | 195 | ||
| 196 | HMODULE advapi, kernel, user, netapi; | 196 | HMODULE advapi, kernel, user, netapi; |
| 197 | CRYPTACQUIRECONTEXT acquire = 0; | 197 | CRYPTACQUIRECONTEXTW acquire = 0; |
| 198 | CRYPTGENRANDOM gen = 0; | 198 | CRYPTGENRANDOM gen = 0; |
| 199 | CRYPTRELEASECONTEXT release = 0; | 199 | CRYPTRELEASECONTEXT release = 0; |
| 200 | #if 1 /* There was previously a problem with NETSTATGET. Currently, this | 200 | #if 1 /* There was previously a problem with NETSTATGET. Currently, this |
| @@ -213,6 +213,9 @@ int RAND_poll(void) | |||
| 213 | GetVersionEx( &osverinfo ) ; | 213 | GetVersionEx( &osverinfo ) ; |
| 214 | 214 | ||
| 215 | #if defined(OPENSSL_SYS_WINCE) && WCEPLATFORM!=MS_HPC_PRO | 215 | #if defined(OPENSSL_SYS_WINCE) && WCEPLATFORM!=MS_HPC_PRO |
| 216 | #ifndef CryptAcquireContext | ||
| 217 | #define CryptAcquireContext CryptAcquireContextW | ||
| 218 | #endif | ||
| 216 | /* poll the CryptoAPI PRNG */ | 219 | /* poll the CryptoAPI PRNG */ |
| 217 | /* The CryptoAPI returns sizeof(buf) bytes of randomness */ | 220 | /* The CryptoAPI returns sizeof(buf) bytes of randomness */ |
| 218 | if (CryptAcquireContext(&hProvider, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) | 221 | if (CryptAcquireContext(&hProvider, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) |
| @@ -223,21 +226,35 @@ int RAND_poll(void) | |||
| 223 | } | 226 | } |
| 224 | #endif | 227 | #endif |
| 225 | 228 | ||
| 229 | #ifndef OPENSSL_SYS_WINCE | ||
| 230 | /* | ||
| 231 | * None of below libraries are present on Windows CE, which is | ||
| 232 | * why we #ifndef the whole section. This also excuses us from | ||
| 233 | * handling the GetProcAddress issue. The trouble is that in | ||
| 234 | * real Win32 API GetProcAddress is available in ANSI flavor | ||
| 235 | * only. In WinCE on the other hand GetProcAddress is a macro | ||
| 236 | * most commonly defined as GetProcAddressW, which accepts | ||
| 237 | * Unicode argument. If we were to call GetProcAddress under | ||
| 238 | * WinCE, I'd recommend to either redefine GetProcAddress as | ||
| 239 | * GetProcAddressA (there seem to be one in common CE spec) or | ||
| 240 | * implement own shim routine, which would accept ANSI argument | ||
| 241 | * and expand it to Unicode. | ||
| 242 | */ | ||
| 243 | |||
| 226 | /* load functions dynamically - not available on all systems */ | 244 | /* load functions dynamically - not available on all systems */ |
| 227 | advapi = LoadLibrary(TEXT("ADVAPI32.DLL")); | 245 | advapi = LoadLibrary(TEXT("ADVAPI32.DLL")); |
| 228 | kernel = LoadLibrary(TEXT("KERNEL32.DLL")); | 246 | kernel = LoadLibrary(TEXT("KERNEL32.DLL")); |
| 229 | user = LoadLibrary(TEXT("USER32.DLL")); | 247 | user = LoadLibrary(TEXT("USER32.DLL")); |
| 230 | netapi = LoadLibrary(TEXT("NETAPI32.DLL")); | 248 | netapi = LoadLibrary(TEXT("NETAPI32.DLL")); |
| 231 | 249 | ||
| 232 | #ifndef OPENSSL_SYS_WINCE | ||
| 233 | #if 1 /* There was previously a problem with NETSTATGET. Currently, this | 250 | #if 1 /* There was previously a problem with NETSTATGET. Currently, this |
| 234 | * section is still experimental, but if all goes well, this conditional | 251 | * section is still experimental, but if all goes well, this conditional |
| 235 | * will be removed | 252 | * will be removed |
| 236 | */ | 253 | */ |
| 237 | if (netapi) | 254 | if (netapi) |
| 238 | { | 255 | { |
| 239 | netstatget = (NETSTATGET) GetProcAddress(netapi,TEXT("NetStatisticsGet")); | 256 | netstatget = (NETSTATGET) GetProcAddress(netapi,"NetStatisticsGet"); |
| 240 | netfree = (NETFREE) GetProcAddress(netapi,TEXT("NetApiBufferFree")); | 257 | netfree = (NETFREE) GetProcAddress(netapi,"NetApiBufferFree"); |
| 241 | } | 258 | } |
| 242 | 259 | ||
| 243 | if (netstatget && netfree) | 260 | if (netstatget && netfree) |
| @@ -264,9 +281,7 @@ int RAND_poll(void) | |||
| 264 | if (netapi) | 281 | if (netapi) |
| 265 | FreeLibrary(netapi); | 282 | FreeLibrary(netapi); |
| 266 | #endif /* 1 */ | 283 | #endif /* 1 */ |
| 267 | #endif /* !OPENSSL_SYS_WINCE */ | 284 | |
| 268 | |||
| 269 | #ifndef OPENSSL_SYS_WINCE | ||
| 270 | /* It appears like this can cause an exception deep within ADVAPI32.DLL | 285 | /* It appears like this can cause an exception deep within ADVAPI32.DLL |
| 271 | * at random times on Windows 2000. Reported by Jeffrey Altman. | 286 | * at random times on Windows 2000. Reported by Jeffrey Altman. |
| 272 | * Only use it on NT. | 287 | * Only use it on NT. |
| @@ -321,16 +336,20 @@ int RAND_poll(void) | |||
| 321 | free(buf); | 336 | free(buf); |
| 322 | } | 337 | } |
| 323 | #endif | 338 | #endif |
| 324 | #endif /* !OPENSSL_SYS_WINCE */ | ||
| 325 | 339 | ||
| 326 | if (advapi) | 340 | if (advapi) |
| 327 | { | 341 | { |
| 328 | acquire = (CRYPTACQUIRECONTEXT) GetProcAddress(advapi, | 342 | /* |
| 329 | TEXT("CryptAcquireContextA")); | 343 | * If it's available, then it's available in both ANSI |
| 344 | * and UNICODE flavors even in Win9x, documentation says. | ||
| 345 | * We favor Unicode... | ||
| 346 | */ | ||
| 347 | acquire = (CRYPTACQUIRECONTEXTW) GetProcAddress(advapi, | ||
| 348 | "CryptAcquireContextW"); | ||
| 330 | gen = (CRYPTGENRANDOM) GetProcAddress(advapi, | 349 | gen = (CRYPTGENRANDOM) GetProcAddress(advapi, |
| 331 | TEXT("CryptGenRandom")); | 350 | "CryptGenRandom"); |
| 332 | release = (CRYPTRELEASECONTEXT) GetProcAddress(advapi, | 351 | release = (CRYPTRELEASECONTEXT) GetProcAddress(advapi, |
| 333 | TEXT("CryptReleaseContext")); | 352 | "CryptReleaseContext"); |
| 334 | } | 353 | } |
| 335 | 354 | ||
| 336 | if (acquire && gen && release) | 355 | if (acquire && gen && release) |
| @@ -367,26 +386,15 @@ int RAND_poll(void) | |||
| 367 | if (advapi) | 386 | if (advapi) |
| 368 | FreeLibrary(advapi); | 387 | FreeLibrary(advapi); |
| 369 | 388 | ||
| 370 | /* timer data */ | ||
| 371 | readtimer(); | ||
| 372 | |||
| 373 | /* memory usage statistics */ | ||
| 374 | GlobalMemoryStatus(&m); | ||
| 375 | RAND_add(&m, sizeof(m), 1); | ||
| 376 | |||
| 377 | /* process ID */ | ||
| 378 | w = GetCurrentProcessId(); | ||
| 379 | RAND_add(&w, sizeof(w), 1); | ||
| 380 | |||
| 381 | if (user) | 389 | if (user) |
| 382 | { | 390 | { |
| 383 | GETCURSORINFO cursor; | 391 | GETCURSORINFO cursor; |
| 384 | GETFOREGROUNDWINDOW win; | 392 | GETFOREGROUNDWINDOW win; |
| 385 | GETQUEUESTATUS queue; | 393 | GETQUEUESTATUS queue; |
| 386 | 394 | ||
| 387 | win = (GETFOREGROUNDWINDOW) GetProcAddress(user, TEXT("GetForegroundWindow")); | 395 | win = (GETFOREGROUNDWINDOW) GetProcAddress(user, "GetForegroundWindow"); |
| 388 | cursor = (GETCURSORINFO) GetProcAddress(user, TEXT("GetCursorInfo")); | 396 | cursor = (GETCURSORINFO) GetProcAddress(user, "GetCursorInfo"); |
| 389 | queue = (GETQUEUESTATUS) GetProcAddress(user, TEXT("GetQueueStatus")); | 397 | queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus"); |
| 390 | 398 | ||
| 391 | if (win) | 399 | if (win) |
| 392 | { | 400 | { |
| @@ -458,19 +466,19 @@ int RAND_poll(void) | |||
| 458 | MODULEENTRY32 m; | 466 | MODULEENTRY32 m; |
| 459 | 467 | ||
| 460 | snap = (CREATETOOLHELP32SNAPSHOT) | 468 | snap = (CREATETOOLHELP32SNAPSHOT) |
| 461 | GetProcAddress(kernel, TEXT("CreateToolhelp32Snapshot")); | 469 | GetProcAddress(kernel, "CreateToolhelp32Snapshot"); |
| 462 | close_snap = (CLOSETOOLHELP32SNAPSHOT) | 470 | close_snap = (CLOSETOOLHELP32SNAPSHOT) |
| 463 | GetProcAddress(kernel, TEXT("CloseToolhelp32Snapshot")); | 471 | GetProcAddress(kernel, "CloseToolhelp32Snapshot"); |
| 464 | heap_first = (HEAP32FIRST) GetProcAddress(kernel, TEXT("Heap32First")); | 472 | heap_first = (HEAP32FIRST) GetProcAddress(kernel, "Heap32First"); |
| 465 | heap_next = (HEAP32NEXT) GetProcAddress(kernel, TEXT("Heap32Next")); | 473 | heap_next = (HEAP32NEXT) GetProcAddress(kernel, "Heap32Next"); |
| 466 | heaplist_first = (HEAP32LIST) GetProcAddress(kernel, TEXT("Heap32ListFirst")); | 474 | heaplist_first = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListFirst"); |
| 467 | heaplist_next = (HEAP32LIST) GetProcAddress(kernel, TEXT("Heap32ListNext")); | 475 | heaplist_next = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListNext"); |
| 468 | process_first = (PROCESS32) GetProcAddress(kernel, TEXT("Process32First")); | 476 | process_first = (PROCESS32) GetProcAddress(kernel, "Process32First"); |
| 469 | process_next = (PROCESS32) GetProcAddress(kernel, TEXT("Process32Next")); | 477 | process_next = (PROCESS32) GetProcAddress(kernel, "Process32Next"); |
| 470 | thread_first = (THREAD32) GetProcAddress(kernel, TEXT("Thread32First")); | 478 | thread_first = (THREAD32) GetProcAddress(kernel, "Thread32First"); |
| 471 | thread_next = (THREAD32) GetProcAddress(kernel, TEXT("Thread32Next")); | 479 | thread_next = (THREAD32) GetProcAddress(kernel, "Thread32Next"); |
| 472 | module_first = (MODULE32) GetProcAddress(kernel, TEXT("Module32First")); | 480 | module_first = (MODULE32) GetProcAddress(kernel, "Module32First"); |
| 473 | module_next = (MODULE32) GetProcAddress(kernel, TEXT("Module32Next")); | 481 | module_next = (MODULE32) GetProcAddress(kernel, "Module32Next"); |
| 474 | 482 | ||
| 475 | if (snap && heap_first && heap_next && heaplist_first && | 483 | if (snap && heap_first && heap_next && heaplist_first && |
| 476 | heaplist_next && process_first && process_next && | 484 | heaplist_next && process_first && process_next && |
| @@ -546,6 +554,18 @@ int RAND_poll(void) | |||
| 546 | 554 | ||
| 547 | FreeLibrary(kernel); | 555 | FreeLibrary(kernel); |
| 548 | } | 556 | } |
| 557 | #endif /* !OPENSSL_SYS_WINCE */ | ||
| 558 | |||
| 559 | /* timer data */ | ||
| 560 | readtimer(); | ||
| 561 | |||
| 562 | /* memory usage statistics */ | ||
| 563 | GlobalMemoryStatus(&m); | ||
| 564 | RAND_add(&m, sizeof(m), 1); | ||
| 565 | |||
| 566 | /* process ID */ | ||
| 567 | w = GetCurrentProcessId(); | ||
| 568 | RAND_add(&w, sizeof(w), 1); | ||
| 549 | 569 | ||
| 550 | #if 0 | 570 | #if 0 |
| 551 | printf("Exiting RAND_poll\n"); | 571 | printf("Exiting RAND_poll\n"); |
| @@ -607,7 +627,7 @@ static void readtimer(void) | |||
| 607 | DWORD w; | 627 | DWORD w; |
| 608 | LARGE_INTEGER l; | 628 | LARGE_INTEGER l; |
| 609 | static int have_perfc = 1; | 629 | static int have_perfc = 1; |
| 610 | #if defined(_MSC_VER) && !defined(OPENSSL_SYS_WINCE) | 630 | #if defined(_MSC_VER) && defined(_M_X86) |
| 611 | static int have_tsc = 1; | 631 | static int have_tsc = 1; |
| 612 | DWORD cyclecount; | 632 | DWORD cyclecount; |
| 613 | 633 | ||
| @@ -660,7 +680,7 @@ static void readtimer(void) | |||
| 660 | 680 | ||
| 661 | static void readscreen(void) | 681 | static void readscreen(void) |
| 662 | { | 682 | { |
| 663 | #ifndef OPENSSL_SYS_WINCE | 683 | #if !defined(OPENSSL_SYS_WINCE) && !defined(OPENSSL_SYS_WIN32_CYGWIN) |
| 664 | HDC hScrDC; /* screen DC */ | 684 | HDC hScrDC; /* screen DC */ |
| 665 | HDC hMemDC; /* memory DC */ | 685 | HDC hMemDC; /* memory DC */ |
| 666 | HBITMAP hBitmap; /* handle for our bitmap */ | 686 | HBITMAP hBitmap; /* handle for our bitmap */ |
diff --git a/src/lib/libcrypto/rc2/Makefile b/src/lib/libcrypto/rc2/Makefile new file mode 100644 index 0000000000..18edaca6c6 --- /dev/null +++ b/src/lib/libcrypto/rc2/Makefile | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rc2/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rc2 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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=rc2test.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c | ||
| 26 | LIBOBJ=rc2_ecb.o rc2_skey.o rc2_cbc.o rc2cfb64.o rc2ofb64.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= rc2.h | ||
| 31 | HEADER= rc2_locl.h $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 81 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | ||
| 82 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 83 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h | ||
| 84 | rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 85 | rc2_skey.o: ../../include/openssl/opensslconf.h | ||
| 86 | rc2_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc2.h | ||
| 87 | rc2_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 88 | rc2_skey.o: ../../include/openssl/symhacks.h rc2_locl.h rc2_skey.c | ||
| 89 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 90 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | ||
| 91 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 92 | rc2ofb64.o: rc2_locl.h rc2ofb64.c | ||
diff --git a/src/lib/libcrypto/rc4/Makefile b/src/lib/libcrypto/rc4/Makefile new file mode 100644 index 0000000000..64e06924f4 --- /dev/null +++ b/src/lib/libcrypto/rc4/Makefile | |||
| @@ -0,0 +1,123 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rc4/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rc4 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | RC4_ENC=rc4_enc.o | ||
| 20 | # or use | ||
| 21 | #RC4_ENC=asm/rx86-elf.o | ||
| 22 | #RC4_ENC=asm/rx86-out.o | ||
| 23 | #RC4_ENC=asm/rx86-sol.o | ||
| 24 | #RC4_ENC=asm/rx86bdsi.o | ||
| 25 | |||
| 26 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 27 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 28 | |||
| 29 | GENERAL=Makefile | ||
| 30 | TEST=rc4test.c | ||
| 31 | APPS= | ||
| 32 | |||
| 33 | LIB=$(TOP)/libcrypto.a | ||
| 34 | LIBSRC=rc4_skey.c rc4_enc.c | ||
| 35 | LIBOBJ=rc4_skey.o $(RC4_ENC) | ||
| 36 | |||
| 37 | SRC= $(LIBSRC) | ||
| 38 | |||
| 39 | EXHEADER= rc4.h | ||
| 40 | HEADER= $(EXHEADER) rc4_locl.h | ||
| 41 | |||
| 42 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 43 | |||
| 44 | top: | ||
| 45 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 46 | |||
| 47 | all: lib | ||
| 48 | |||
| 49 | lib: $(LIBOBJ) | ||
| 50 | $(AR) $(LIB) $(LIBOBJ) | ||
| 51 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 52 | @touch lib | ||
| 53 | |||
| 54 | # elf | ||
| 55 | asm/rx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
| 56 | (cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > rx86-elf.s) | ||
| 57 | |||
| 58 | # a.out | ||
| 59 | asm/rx86-out.o: asm/rx86unix.cpp | ||
| 60 | $(CPP) -DOUT asm/rx86unix.cpp | as -o asm/rx86-out.o | ||
| 61 | |||
| 62 | # bsdi | ||
| 63 | asm/rx86bsdi.o: asm/rx86unix.cpp | ||
| 64 | $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o | ||
| 65 | |||
| 66 | asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
| 67 | (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp) | ||
| 68 | |||
| 69 | asm/rc4-amd64.s: asm/rc4-amd64.pl; $(PERL) asm/rc4-amd64.pl $@ | ||
| 70 | |||
| 71 | asm/rc4-ia64.s: asm/rc4-ia64.S | ||
| 72 | $(CC) $(CFLAGS) -E asm/rc4-ia64.S > $@ | ||
| 73 | |||
| 74 | files: | ||
| 75 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 76 | |||
| 77 | links: | ||
| 78 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 79 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 80 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 81 | |||
| 82 | install: | ||
| 83 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 84 | do \ | ||
| 85 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 86 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 87 | done; | ||
| 88 | |||
| 89 | tags: | ||
| 90 | ctags $(SRC) | ||
| 91 | |||
| 92 | tests: | ||
| 93 | |||
| 94 | lint: | ||
| 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 96 | |||
| 97 | depend: | ||
| 98 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 99 | |||
| 100 | dclean: | ||
| 101 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 102 | mv -f Makefile.new $(MAKEFILE) | ||
| 103 | |||
| 104 | clean: | ||
| 105 | rm -f asm/rx86unix.cpp asm/*-elf.* *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | ||
| 106 | |||
| 107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 108 | |||
| 109 | rc4_enc.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 110 | rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 111 | rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 112 | rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 113 | rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | ||
| 114 | rc4_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 115 | rc4_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h rc4_enc.c rc4_locl.h | ||
| 116 | rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 117 | rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 118 | rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 119 | rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 120 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | ||
| 121 | rc4_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 122 | rc4_skey.o: ../../include/openssl/symhacks.h ../cryptlib.h rc4_locl.h | ||
| 123 | rc4_skey.o: rc4_skey.c | ||
diff --git a/src/lib/libcrypto/rc4/asm/rc4-ia64.S b/src/lib/libcrypto/rc4/asm/rc4-ia64.S new file mode 100644 index 0000000000..b517d2e88f --- /dev/null +++ b/src/lib/libcrypto/rc4/asm/rc4-ia64.S | |||
| @@ -0,0 +1,157 @@ | |||
| 1 | // ==================================================================== | ||
| 2 | // Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL | ||
| 3 | // project. | ||
| 4 | // | ||
| 5 | // Rights for redistribution and usage in source and binary forms are | ||
| 6 | // granted according to the OpenSSL license. Warranty of any kind is | ||
| 7 | // disclaimed. | ||
| 8 | // ==================================================================== | ||
| 9 | |||
| 10 | .ident "rc4-ia64.S, Version 1.1" | ||
| 11 | .ident "IA-64 ISA artwork by Andy Polyakov <appro@fy.chalmers.se>" | ||
| 12 | |||
| 13 | // What's wrong with compiler generated code? Because of the nature of | ||
| 14 | // C language, compiler doesn't [dare to] reorder load and stores. But | ||
| 15 | // being memory-bound, RC4 should benefit from reorder [on in-order- | ||
| 16 | // execution core such as IA-64]. But what can we reorder? At the very | ||
| 17 | // least we can safely reorder references to key schedule in respect | ||
| 18 | // to input and output streams. Secondly, from the first [close] glance | ||
| 19 | // it appeared that it's possible to pull up some references to | ||
| 20 | // elements of the key schedule itself. Original rationale ["prior | ||
| 21 | // loads are not safe only for "degenerated" key schedule, when some | ||
| 22 | // elements equal to the same value"] was kind of sloppy. I should have | ||
| 23 | // formulated as it really was: if we assume that pulling up reference | ||
| 24 | // to key[x+1] is not safe, then it would mean that key schedule would | ||
| 25 | // "degenerate," which is never the case. The problem is that this | ||
| 26 | // holds true in respect to references to key[x], but not to key[y]. | ||
| 27 | // Legitimate "collisions" do occur within every 256^2 bytes window. | ||
| 28 | // Fortunately there're enough free instruction slots to keep prior | ||
| 29 | // reference to key[x+1], detect "collision" and compensate for it. | ||
| 30 | // All this without sacrificing a single clock cycle:-) | ||
| 31 | // Furthermore. In order to compress loop body to the minimum, I chose | ||
| 32 | // to deploy deposit instruction, which substitutes for the whole | ||
| 33 | // key->data+((x&255)<<log2(sizeof(key->data[0]))). This unfortunately | ||
| 34 | // requires key->data to be aligned at sizeof(key->data) boundary. | ||
| 35 | // This is why you'll find "RC4_INT pad[512-256-2];" addenum to RC4_KEY | ||
| 36 | // and "d=(RC4_INT *)(((size_t)(d+255))&~(sizeof(key->data)-1));" in | ||
| 37 | // rc4_skey.c [and rc4_enc.c, where it's retained for debugging | ||
| 38 | // purposes]. Throughput is ~210MBps on 900MHz CPU, which is is >3x | ||
| 39 | // faster than gcc generated code and +30% - if compared to HP-UX C. | ||
| 40 | // Unrolling loop below should give >30% on top of that... | ||
| 41 | |||
| 42 | .text | ||
| 43 | .explicit | ||
| 44 | |||
| 45 | #if defined(_HPUX_SOURCE) && !defined(_LP64) | ||
| 46 | # define ADDP addp4 | ||
| 47 | #else | ||
| 48 | # define ADDP add | ||
| 49 | #endif | ||
| 50 | |||
| 51 | #define SZ 4 // this is set to sizeof(RC4_INT) | ||
| 52 | // SZ==4 seems to be optimal. At least SZ==8 is not any faster, not for | ||
| 53 | // assembler implementation, while SZ==1 code is ~30% slower. | ||
| 54 | #if SZ==1 // RC4_INT is unsigned char | ||
| 55 | # define LDKEY ld1 | ||
| 56 | # define STKEY st1 | ||
| 57 | # define OFF 0 | ||
| 58 | #elif SZ==4 // RC4_INT is unsigned int | ||
| 59 | # define LDKEY ld4 | ||
| 60 | # define STKEY st4 | ||
| 61 | # define OFF 2 | ||
| 62 | #elif SZ==8 // RC4_INT is unsigned long | ||
| 63 | # define LDKEY ld8 | ||
| 64 | # define STKEY st8 | ||
| 65 | # define OFF 3 | ||
| 66 | #endif | ||
| 67 | |||
| 68 | out=r8; // [expanded] output pointer | ||
| 69 | inp=r9; // [expanded] output pointer | ||
| 70 | prsave=r10; | ||
| 71 | key=r28; // [expanded] pointer to RC4_KEY | ||
| 72 | ksch=r29; // (key->data+255)[&~(sizeof(key->data)-1)] | ||
| 73 | xx=r30; | ||
| 74 | yy=r31; | ||
| 75 | |||
| 76 | // void RC4(RC4_KEY *key,size_t len,const void *inp,void *out); | ||
| 77 | .global RC4# | ||
| 78 | .proc RC4# | ||
| 79 | .align 32 | ||
| 80 | .skip 16 | ||
| 81 | RC4: | ||
| 82 | .prologue | ||
| 83 | .fframe 0 | ||
| 84 | .save ar.pfs,r2 | ||
| 85 | .save ar.lc,r3 | ||
| 86 | .save pr,prsave | ||
| 87 | { .mii; alloc r2=ar.pfs,4,12,0,16 | ||
| 88 | mov prsave=pr | ||
| 89 | ADDP key=0,in0 };; | ||
| 90 | { .mib; cmp.eq p6,p0=0,in1 // len==0? | ||
| 91 | mov r3=ar.lc | ||
| 92 | (p6) br.ret.spnt.many b0 };; // emergency exit | ||
| 93 | |||
| 94 | .body | ||
| 95 | .rotr dat[4],key_x[4],tx[2],rnd[2],key_y[2],ty[1]; | ||
| 96 | |||
| 97 | { .mib; LDKEY xx=[key],SZ // load key->x | ||
| 98 | add in1=-1,in1 // adjust len for loop counter | ||
| 99 | nop.b 0 } | ||
| 100 | { .mib; ADDP inp=0,in2 | ||
| 101 | ADDP out=0,in3 | ||
| 102 | brp.loop.imp .Ltop,.Lexit-16 };; | ||
| 103 | { .mmi; LDKEY yy=[key] // load key->y | ||
| 104 | add ksch=(255+1)*SZ,key // as ksch will be used with | ||
| 105 | // deposit instruction only, | ||
| 106 | // I don't have to &~255... | ||
| 107 | mov ar.lc=in1 } | ||
| 108 | { .mmi; mov key_y[1]=r0 // guarantee inequality | ||
| 109 | // in first iteration | ||
| 110 | add xx=1,xx | ||
| 111 | mov pr.rot=1<<16 };; | ||
| 112 | { .mii; nop.m 0 | ||
| 113 | dep key_x[1]=xx,ksch,OFF,8 | ||
| 114 | mov ar.ec=3 };; // note that epilogue counter | ||
| 115 | // is off by 1. I compensate | ||
| 116 | // for this at exit... | ||
| 117 | .Ltop: | ||
| 118 | // The loop is scheduled for 3*(n+2) spin-rate on Itanium 2, which | ||
| 119 | // theoretically gives asymptotic performance of clock frequency | ||
| 120 | // divided by 3 bytes per seconds, or 500MBps on 1.5GHz CPU. Measured | ||
| 121 | // performance however is distinctly lower than 1/4:-( The culplrit | ||
| 122 | // seems to be *(out++)=dat, which inadvertently splits the bundle, | ||
| 123 | // even though there is M-port available... Unrolling is due... | ||
| 124 | // Unrolled loop should collect output with variable shift instruction | ||
| 125 | // in order to avoid starvation for integer shifter... It should be | ||
| 126 | // possible to get pretty close to theoretical peak... | ||
| 127 | { .mmi; (p16) LDKEY tx[0]=[key_x[1]] // tx=key[xx] | ||
| 128 | (p17) LDKEY ty[0]=[key_y[1]] // ty=key[yy] | ||
| 129 | (p18) dep rnd[1]=rnd[1],ksch,OFF,8} // &key[(tx+ty)&255] | ||
| 130 | { .mmi; (p19) st1 [out]=dat[3],1 // *(out++)=dat | ||
| 131 | (p16) add xx=1,xx // x++ | ||
| 132 | (p16) cmp.ne.unc p20,p21=key_x[1],key_y[1] };; | ||
| 133 | { .mmi; (p18) LDKEY rnd[1]=[rnd[1]] // rnd=key[(tx+ty)&255] | ||
| 134 | (p16) ld1 dat[0]=[inp],1 // dat=*(inp++) | ||
| 135 | (p16) dep key_x[0]=xx,ksch,OFF,8 } // &key[xx&255] | ||
| 136 | .pred.rel "mutex",p20,p21 | ||
| 137 | { .mmi; (p21) add yy=yy,tx[1] // (p16) | ||
| 138 | (p20) add yy=yy,tx[0] // (p16) y+=tx | ||
| 139 | (p21) mov tx[0]=tx[1] };; // (p16) | ||
| 140 | { .mmi; (p17) STKEY [key_y[1]]=tx[1] // key[yy]=tx | ||
| 141 | (p17) STKEY [key_x[2]]=ty[0] // key[xx]=ty | ||
| 142 | (p16) dep key_y[0]=yy,ksch,OFF,8 } // &key[yy&255] | ||
| 143 | { .mmb; (p17) add rnd[0]=tx[1],ty[0] // tx+=ty | ||
| 144 | (p18) xor dat[2]=dat[2],rnd[1] // dat^=rnd | ||
| 145 | br.ctop.sptk .Ltop };; | ||
| 146 | .Lexit: | ||
| 147 | { .mib; STKEY [key]=yy,-SZ // save key->y | ||
| 148 | mov pr=prsave,0x1ffff | ||
| 149 | nop.b 0 } | ||
| 150 | { .mib; st1 [out]=dat[3],1 // compensate for truncated | ||
| 151 | // epilogue counter | ||
| 152 | add xx=-1,xx | ||
| 153 | nop.b 0 };; | ||
| 154 | { .mib; STKEY [key]=xx // save key->x | ||
| 155 | mov ar.lc=r3 | ||
| 156 | br.ret.sptk.many b0 };; | ||
| 157 | .endp RC4# | ||
diff --git a/src/lib/libcrypto/rc5/Makefile b/src/lib/libcrypto/rc5/Makefile new file mode 100644 index 0000000000..3a8d309b29 --- /dev/null +++ b/src/lib/libcrypto/rc5/Makefile | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rc5/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rc5 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | RC5_ENC= rc5_enc.o | ||
| 20 | # or use | ||
| 21 | #DES_ENC= r586-elf.o | ||
| 22 | |||
| 23 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 25 | |||
| 26 | GENERAL=Makefile | ||
| 27 | TEST=rc5test.c | ||
| 28 | APPS= | ||
| 29 | |||
| 30 | LIB=$(TOP)/libcrypto.a | ||
| 31 | LIBSRC=rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c | ||
| 32 | LIBOBJ=rc5_skey.o rc5_ecb.o $(RC5_ENC) rc5cfb64.o rc5ofb64.o | ||
| 33 | |||
| 34 | SRC= $(LIBSRC) | ||
| 35 | |||
| 36 | EXHEADER= rc5.h | ||
| 37 | HEADER= rc5_locl.h $(EXHEADER) | ||
| 38 | |||
| 39 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 40 | |||
| 41 | top: | ||
| 42 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 43 | |||
| 44 | all: lib | ||
| 45 | |||
| 46 | lib: $(LIBOBJ) | ||
| 47 | $(AR) $(LIB) $(LIBOBJ) | ||
| 48 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 49 | @touch lib | ||
| 50 | |||
| 51 | # elf | ||
| 52 | asm/r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 53 | (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > r586-elf.s) | ||
| 54 | |||
| 55 | # a.out | ||
| 56 | asm/r586-out.o: asm/r586unix.cpp | ||
| 57 | $(CPP) -DOUT asm/r586unix.cpp | as -o asm/r586-out.o | ||
| 58 | |||
| 59 | # bsdi | ||
| 60 | asm/r586bsdi.o: asm/r586unix.cpp | ||
| 61 | $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o | ||
| 62 | |||
| 63 | asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
| 64 | (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp) | ||
| 65 | |||
| 66 | files: | ||
| 67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 68 | |||
| 69 | links: | ||
| 70 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 71 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 73 | |||
| 74 | install: | ||
| 75 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 76 | do \ | ||
| 77 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 78 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 79 | done; | ||
| 80 | |||
| 81 | tags: | ||
| 82 | ctags $(SRC) | ||
| 83 | |||
| 84 | tests: | ||
| 85 | |||
| 86 | lint: | ||
| 87 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 88 | |||
| 89 | depend: | ||
| 90 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 91 | |||
| 92 | dclean: | ||
| 93 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 94 | mv -f Makefile.new $(MAKEFILE) | ||
| 95 | |||
| 96 | clean: | ||
| 97 | rm -f asm/r586unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 98 | |||
| 99 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 100 | |||
| 101 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | ||
| 102 | rc5_ecb.o: rc5_ecb.c rc5_locl.h | ||
| 103 | rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h | ||
| 104 | rc5_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 105 | rc5_skey.o: ../../include/openssl/opensslconf.h | ||
| 106 | rc5_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | ||
| 107 | rc5_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 108 | rc5_skey.o: ../../include/openssl/symhacks.h rc5_locl.h rc5_skey.c | ||
| 109 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c | ||
| 110 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c | ||
diff --git a/src/lib/libcrypto/rc5/rc5.h b/src/lib/libcrypto/rc5/rc5.h index 4adfd2db5a..aa3f26920b 100644 --- a/src/lib/libcrypto/rc5/rc5.h +++ b/src/lib/libcrypto/rc5/rc5.h | |||
| @@ -92,7 +92,10 @@ typedef struct rc5_key_st | |||
| 92 | RC5_32_INT data[2*(RC5_16_ROUNDS+1)]; | 92 | RC5_32_INT data[2*(RC5_16_ROUNDS+1)]; |
| 93 | } RC5_32_KEY; | 93 | } RC5_32_KEY; |
| 94 | 94 | ||
| 95 | 95 | #ifdef OPENSSL_FIPS | |
| 96 | void private_RC5_32_set_key(RC5_32_KEY *key, int len, const unsigned char *data, | ||
| 97 | int rounds); | ||
| 98 | #endif | ||
| 96 | void RC5_32_set_key(RC5_32_KEY *key, int len, const unsigned char *data, | 99 | void RC5_32_set_key(RC5_32_KEY *key, int len, const unsigned char *data, |
| 97 | int rounds); | 100 | int rounds); |
| 98 | void RC5_32_ecb_encrypt(const unsigned char *in,unsigned char *out,RC5_32_KEY *key, | 101 | void RC5_32_ecb_encrypt(const unsigned char *in,unsigned char *out,RC5_32_KEY *key, |
diff --git a/src/lib/libcrypto/ripemd/Makefile b/src/lib/libcrypto/ripemd/Makefile new file mode 100644 index 0000000000..dc086e3434 --- /dev/null +++ b/src/lib/libcrypto/ripemd/Makefile | |||
| @@ -0,0 +1,111 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/ripemd/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= ripemd | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | RIP_ASM_OBJ= | ||
| 20 | |||
| 21 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 23 | |||
| 24 | GENERAL=Makefile | ||
| 25 | TEST=rmdtest.c | ||
| 26 | APPS= | ||
| 27 | |||
| 28 | LIB=$(TOP)/libcrypto.a | ||
| 29 | LIBSRC=rmd_dgst.c rmd_one.c | ||
| 30 | LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ) | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= ripemd.h | ||
| 35 | HEADER= rmd_locl.h rmdconst.h $(EXHEADER) | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | all: lib | ||
| 43 | |||
| 44 | lib: $(LIBOBJ) | ||
| 45 | $(AR) $(LIB) $(LIBOBJ) | ||
| 46 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 47 | @touch lib | ||
| 48 | |||
| 49 | # elf | ||
| 50 | asm/rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
| 51 | (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > rm86-elf.s) | ||
| 52 | |||
| 53 | # a.out | ||
| 54 | asm/rm86-out.o: asm/rm86unix.cpp | ||
| 55 | $(CPP) -DOUT asm/rm86unix.cpp | as -o asm/rm86-out.o | ||
| 56 | |||
| 57 | # bsdi | ||
| 58 | asm/rm86bsdi.o: asm/rm86unix.cpp | ||
| 59 | $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o | ||
| 60 | |||
| 61 | asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
| 62 | (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp) | ||
| 63 | |||
| 64 | files: | ||
| 65 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 66 | |||
| 67 | links: | ||
| 68 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 69 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 70 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 71 | |||
| 72 | install: | ||
| 73 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 74 | do \ | ||
| 75 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 76 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 77 | done; | ||
| 78 | |||
| 79 | tags: | ||
| 80 | ctags $(SRC) | ||
| 81 | |||
| 82 | tests: | ||
| 83 | |||
| 84 | lint: | ||
| 85 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 86 | |||
| 87 | depend: | ||
| 88 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 89 | |||
| 90 | dclean: | ||
| 91 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 92 | mv -f Makefile.new $(MAKEFILE) | ||
| 93 | |||
| 94 | clean: | ||
| 95 | rm -f asm/rm86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 96 | |||
| 97 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 98 | |||
| 99 | rmd_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 100 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 101 | rmd_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 102 | rmd_dgst.o: ../../include/openssl/opensslconf.h | ||
| 103 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | ||
| 104 | rmd_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 105 | rmd_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h rmd_dgst.c | ||
| 106 | rmd_dgst.o: rmd_locl.h rmdconst.h | ||
| 107 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 108 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 109 | rmd_one.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h | ||
| 110 | rmd_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 111 | rmd_one.o: rmd_one.c | ||
diff --git a/src/lib/libcrypto/rsa/Makefile b/src/lib/libcrypto/rsa/Makefile new file mode 100644 index 0000000000..5748b0d3d0 --- /dev/null +++ b/src/lib/libcrypto/rsa/Makefile | |||
| @@ -0,0 +1,239 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rsa/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rsa | ||
| 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=rsa_test.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ | ||
| 26 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ | ||
| 27 | rsa_asn1.c | ||
| 28 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ | ||
| 29 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | ||
| 30 | rsa_asn1.o | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= rsa.h | ||
| 35 | HEADER= $(EXHEADER) | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | all: lib | ||
| 43 | |||
| 44 | lib: $(LIBOBJ) | ||
| 45 | $(AR) $(LIB) $(LIBOBJ) | ||
| 46 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 47 | @touch lib | ||
| 48 | |||
| 49 | files: | ||
| 50 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 51 | |||
| 52 | links: | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 56 | |||
| 57 | install: | ||
| 58 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 59 | do \ | ||
| 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 62 | done; | ||
| 63 | |||
| 64 | tags: | ||
| 65 | ctags $(SRC) | ||
| 66 | |||
| 67 | tests: | ||
| 68 | |||
| 69 | lint: | ||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 71 | |||
| 72 | depend: | ||
| 73 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 74 | |||
| 75 | dclean: | ||
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 77 | mv -f Makefile.new $(MAKEFILE) | ||
| 78 | |||
| 79 | clean: | ||
| 80 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 81 | |||
| 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 83 | |||
| 84 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 85 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 86 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 87 | rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 88 | rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 89 | rsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 90 | rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 91 | rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 92 | rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 93 | rsa_asn1.o: ../cryptlib.h rsa_asn1.c | ||
| 94 | rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 95 | rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 96 | rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 97 | rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 98 | rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 99 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 100 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 101 | rsa_chk.o: rsa_chk.c | ||
| 102 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 103 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 104 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 105 | rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 106 | rsa_eay.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 107 | rsa_eay.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 108 | rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 109 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 110 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c | ||
| 111 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 112 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 113 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 114 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 115 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 116 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 117 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 118 | rsa_err.o: rsa_err.c | ||
| 119 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 120 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 121 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 122 | rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 123 | rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 124 | rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 126 | rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 127 | rsa_gen.o: ../cryptlib.h rsa_gen.c | ||
| 128 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 132 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 133 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 134 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 135 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 136 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 137 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 138 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | ||
| 139 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 140 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 141 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 142 | rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 143 | rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 144 | rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 145 | rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 146 | rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 147 | rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c | ||
| 148 | rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 149 | rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 150 | rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 151 | rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 152 | rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 153 | rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 154 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 155 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | ||
| 157 | rsa_oaep.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 158 | rsa_oaep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 159 | rsa_oaep.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 160 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 161 | rsa_oaep.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 162 | rsa_oaep.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 163 | rsa_oaep.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 164 | rsa_oaep.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 165 | rsa_oaep.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/opensslconf.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 172 | rsa_oaep.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 173 | rsa_oaep.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 174 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 175 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 176 | rsa_oaep.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 177 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | ||
| 178 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 179 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 180 | rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 181 | rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 182 | rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 183 | rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 184 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 185 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 186 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | ||
| 187 | rsa_saos.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 188 | rsa_saos.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 189 | rsa_saos.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 190 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 191 | rsa_saos.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 192 | rsa_saos.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 193 | rsa_saos.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 194 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 195 | rsa_saos.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 196 | rsa_saos.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 197 | rsa_saos.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 198 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 199 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
| 200 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 201 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 202 | rsa_saos.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 203 | rsa_saos.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 204 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 205 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 206 | rsa_saos.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 207 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 208 | rsa_saos.o: ../cryptlib.h rsa_saos.c | ||
| 209 | rsa_sign.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 210 | rsa_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 211 | rsa_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 212 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 213 | rsa_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 214 | rsa_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 215 | rsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 216 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 217 | rsa_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 218 | rsa_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 219 | rsa_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 220 | rsa_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 221 | rsa_sign.o: ../../include/openssl/opensslconf.h | ||
| 222 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 223 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 224 | rsa_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 225 | rsa_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 226 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 227 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 228 | rsa_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 229 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 230 | rsa_sign.o: ../cryptlib.h rsa_sign.c | ||
| 231 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 232 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 233 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 234 | rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 235 | rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 236 | rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 237 | rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 238 | rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 239 | rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c | ||
diff --git a/src/lib/libcrypto/sha/Makefile b/src/lib/libcrypto/sha/Makefile new file mode 100644 index 0000000000..0426786aa0 --- /dev/null +++ b/src/lib/libcrypto/sha/Makefile | |||
| @@ -0,0 +1,127 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/sha/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= sha | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | CPP= $(CC) -E | ||
| 9 | INCLUDES= | ||
| 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 | SHA1_ASM_OBJ= | ||
| 20 | |||
| 21 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 23 | |||
| 24 | GENERAL=Makefile | ||
| 25 | TEST=shatest.c sha1test.c | ||
| 26 | APPS= | ||
| 27 | |||
| 28 | LIB=$(TOP)/libcrypto.a | ||
| 29 | LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c | ||
| 30 | LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o $(SHA1_ASM_OBJ) | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= sha.h | ||
| 35 | HEADER= sha_locl.h $(EXHEADER) | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | all: lib | ||
| 43 | |||
| 44 | lib: $(LIBOBJ) | ||
| 45 | $(AR) $(LIB) $(LIBOBJ) | ||
| 46 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 47 | @touch lib | ||
| 48 | |||
| 49 | # elf | ||
| 50 | asm/sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl | ||
| 51 | (cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > sx86-elf.s) | ||
| 52 | |||
| 53 | # a.out | ||
| 54 | asm/sx86-out.o: asm/sx86unix.cpp | ||
| 55 | $(CPP) -DOUT asm/sx86unix.cpp | as -o asm/sx86-out.o | ||
| 56 | |||
| 57 | # bsdi | ||
| 58 | asm/sx86bsdi.o: asm/sx86unix.cpp | ||
| 59 | $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o | ||
| 60 | |||
| 61 | asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl | ||
| 62 | (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp) | ||
| 63 | |||
| 64 | asm/sha1-ia64.s: asm/sha1-ia64.pl | ||
| 65 | (cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@ | ||
| 66 | |||
| 67 | files: | ||
| 68 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 69 | |||
| 70 | links: | ||
| 71 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 72 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 73 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 74 | |||
| 75 | install: | ||
| 76 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 77 | do \ | ||
| 78 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 79 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 80 | done; | ||
| 81 | |||
| 82 | tags: | ||
| 83 | ctags $(SRC) | ||
| 84 | |||
| 85 | tests: | ||
| 86 | |||
| 87 | lint: | ||
| 88 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 89 | |||
| 90 | depend: | ||
| 91 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 92 | |||
| 93 | dclean: | ||
| 94 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 95 | mv -f Makefile.new $(MAKEFILE) | ||
| 96 | |||
| 97 | clean: | ||
| 98 | rm -f asm/sx86unix.cpp asm/*-elf.* *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | ||
| 99 | |||
| 100 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 101 | |||
| 102 | sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 103 | sha1_one.o: ../../include/openssl/opensslconf.h | ||
| 104 | sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | sha1_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 106 | sha1_one.o: ../../include/openssl/symhacks.h sha1_one.c | ||
| 107 | sha1dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 108 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | sha1dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 110 | sha1dgst.o: ../../include/openssl/opensslconf.h | ||
| 111 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 112 | sha1dgst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 113 | sha1dgst.o: ../../include/openssl/symhacks.h ../md32_common.h sha1dgst.c | ||
| 114 | sha1dgst.o: sha_locl.h | ||
| 115 | sha_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 116 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | sha_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 118 | sha_dgst.o: ../../include/openssl/opensslconf.h | ||
| 119 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 120 | sha_dgst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 121 | sha_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h sha_dgst.c | ||
| 122 | sha_dgst.o: sha_locl.h | ||
| 123 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 124 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 125 | sha_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 126 | sha_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 127 | sha_one.o: sha_one.c | ||
diff --git a/src/lib/libcrypto/sha/shatest.c b/src/lib/libcrypto/sha/shatest.c index 5d2b1d3b1a..ff702aa53e 100644 --- a/src/lib/libcrypto/sha/shatest.c +++ b/src/lib/libcrypto/sha/shatest.c | |||
| @@ -62,10 +62,10 @@ | |||
| 62 | 62 | ||
| 63 | #include "../e_os.h" | 63 | #include "../e_os.h" |
| 64 | 64 | ||
| 65 | #ifdef OPENSSL_NO_SHA | 65 | #if defined(OPENSSL_NO_SHA) || defined(OPENSSL_NO_SHA0) |
| 66 | int main(int argc, char *argv[]) | 66 | int main(int argc, char *argv[]) |
| 67 | { | 67 | { |
| 68 | printf("No SHA support\n"); | 68 | printf("No SHA0 support\n"); |
| 69 | return(0); | 69 | return(0); |
| 70 | } | 70 | } |
| 71 | #else | 71 | #else |
diff --git a/src/lib/libcrypto/stack/Makefile b/src/lib/libcrypto/stack/Makefile new file mode 100644 index 0000000000..4d5199a000 --- /dev/null +++ b/src/lib/libcrypto/stack/Makefile | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/stack/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= stack | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=stack.c | ||
| 26 | LIBOBJ=stack.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= stack.h safestack.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | stack.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 81 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 82 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 83 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 84 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 85 | stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 86 | stack.o: ../cryptlib.h stack.c | ||
diff --git a/src/lib/libcrypto/txt_db/Makefile b/src/lib/libcrypto/txt_db/Makefile new file mode 100644 index 0000000000..f91a08f006 --- /dev/null +++ b/src/lib/libcrypto/txt_db/Makefile | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/txt_db/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= txt_db | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= | ||
| 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= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC=txt_db.c | ||
| 26 | LIBOBJ=txt_db.o | ||
| 27 | |||
| 28 | SRC= $(LIBSRC) | ||
| 29 | |||
| 30 | EXHEADER= txt_db.h | ||
| 31 | HEADER= $(EXHEADER) | ||
| 32 | |||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 34 | |||
| 35 | top: | ||
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 37 | |||
| 38 | all: lib | ||
| 39 | |||
| 40 | lib: $(LIBOBJ) | ||
| 41 | $(AR) $(LIB) $(LIBOBJ) | ||
| 42 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 43 | @touch lib | ||
| 44 | |||
| 45 | files: | ||
| 46 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 47 | |||
| 48 | links: | ||
| 49 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 50 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 52 | |||
| 53 | install: | ||
| 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 55 | do \ | ||
| 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 57 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 58 | done; | ||
| 59 | |||
| 60 | tags: | ||
| 61 | ctags $(SRC) | ||
| 62 | |||
| 63 | tests: | ||
| 64 | |||
| 65 | lint: | ||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 67 | |||
| 68 | depend: | ||
| 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 70 | |||
| 71 | dclean: | ||
| 72 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 73 | mv -f Makefile.new $(MAKEFILE) | ||
| 74 | |||
| 75 | clean: | ||
| 76 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 77 | |||
| 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 79 | |||
| 80 | txt_db.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 81 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 82 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 83 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 84 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 85 | txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 86 | txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c | ||
diff --git a/src/lib/libcrypto/ui/Makefile b/src/lib/libcrypto/ui/Makefile new file mode 100644 index 0000000000..fcb2a66a39 --- /dev/null +++ b/src/lib/libcrypto/ui/Makefile | |||
| @@ -0,0 +1,115 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/crypto/ui/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= ui | ||
| 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= uitest.c | ||
| 22 | TEST= | ||
| 23 | APPS= | ||
| 24 | |||
| 25 | COMPATSRC= ui_compat.c | ||
| 26 | COMPATOBJ= ui_compat.o | ||
| 27 | |||
| 28 | LIB=$(TOP)/libcrypto.a | ||
| 29 | LIBSRC= ui_err.c ui_lib.c ui_openssl.c ui_util.c $(COMPATSRC) | ||
| 30 | LIBOBJ= ui_err.o ui_lib.o ui_openssl.o ui_util.o $(COMPATOBJ) | ||
| 31 | |||
| 32 | SRC= $(LIBSRC) | ||
| 33 | |||
| 34 | EXHEADER= ui.h ui_compat.h | ||
| 35 | HEADER= $(EXHEADER) ui_locl.h | ||
| 36 | |||
| 37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 38 | |||
| 39 | top: | ||
| 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 41 | |||
| 42 | all: lib | ||
| 43 | |||
| 44 | lib: $(LIBOBJ) | ||
| 45 | $(AR) $(LIB) $(LIBOBJ) | ||
| 46 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 47 | @touch lib | ||
| 48 | |||
| 49 | files: | ||
| 50 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 51 | |||
| 52 | links: | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 56 | |||
| 57 | install: | ||
| 58 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 59 | do \ | ||
| 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 62 | done; | ||
| 63 | |||
| 64 | tags: | ||
| 65 | ctags $(SRC) | ||
| 66 | |||
| 67 | tests: | ||
| 68 | |||
| 69 | lint: | ||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 71 | |||
| 72 | depend: | ||
| 73 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 74 | |||
| 75 | dclean: | ||
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 77 | mv -f Makefile.new $(MAKEFILE) | ||
| 78 | |||
| 79 | clean: | ||
| 80 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 81 | |||
| 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 83 | |||
| 84 | ui_compat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 85 | ui_compat.o: ../../include/openssl/opensslconf.h | ||
| 86 | ui_compat.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | ui_compat.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | ui_compat.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 89 | ui_compat.o: ui_compat.c | ||
| 90 | ui_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 91 | ui_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 92 | ui_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 93 | ui_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 94 | ui_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 95 | ui_err.o: ../../include/openssl/ui.h ui_err.c | ||
| 96 | ui_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 97 | ui_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 98 | ui_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | ui_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | ui_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 101 | ui_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 102 | ui_lib.o: ../../include/openssl/ui.h ../cryptlib.h ui_lib.c ui_locl.h | ||
| 103 | ui_openssl.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 104 | ui_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 105 | ui_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 106 | ui_openssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 107 | ui_openssl.o: ../../include/openssl/opensslv.h | ||
| 108 | ui_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 109 | ui_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 110 | ui_openssl.o: ../cryptlib.h ui_locl.h ui_openssl.c | ||
| 111 | ui_util.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 112 | ui_util.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 113 | ui_util.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | ui_util.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 115 | ui_util.o: ui_util.c | ||
diff --git a/src/lib/libcrypto/util/cygwin.sh b/src/lib/libcrypto/util/cygwin.sh index 930f766b4f..7f791d47f4 100644 --- a/src/lib/libcrypto/util/cygwin.sh +++ b/src/lib/libcrypto/util/cygwin.sh | |||
| @@ -21,11 +21,11 @@ function cleanup() | |||
| 21 | 21 | ||
| 22 | function get_openssl_version() | 22 | function get_openssl_version() |
| 23 | { | 23 | { |
| 24 | eval `grep '^VERSION=' Makefile.ssl` | 24 | eval `grep '^VERSION=' Makefile` |
| 25 | if [ -z "${VERSION}" ] | 25 | if [ -z "${VERSION}" ] |
| 26 | then | 26 | then |
| 27 | echo "Error: Couldn't retrieve OpenSSL version from Makefile.ssl." | 27 | echo "Error: Couldn't retrieve OpenSSL version from Makefile." |
| 28 | echo " Check value of variable VERSION in Makefile.ssl." | 28 | echo " Check value of variable VERSION in Makefile." |
| 29 | exit 1 | 29 | exit 1 |
| 30 | fi | 30 | fi |
| 31 | } | 31 | } |
| @@ -39,7 +39,7 @@ function base_install() | |||
| 39 | 39 | ||
| 40 | function doc_install() | 40 | function doc_install() |
| 41 | { | 41 | { |
| 42 | DOC_DIR=${INSTALL_PREFIX}/usr/doc/openssl | 42 | DOC_DIR=${INSTALL_PREFIX}/usr/share/doc/openssl |
| 43 | 43 | ||
| 44 | mkdir -p ${DOC_DIR} | 44 | mkdir -p ${DOC_DIR} |
| 45 | cp CHANGES CHANGES.SSLeay INSTALL LICENSE NEWS README ${DOC_DIR} | 45 | cp CHANGES CHANGES.SSLeay INSTALL LICENSE NEWS README ${DOC_DIR} |
| @@ -49,7 +49,7 @@ function doc_install() | |||
| 49 | 49 | ||
| 50 | function create_cygwin_readme() | 50 | function create_cygwin_readme() |
| 51 | { | 51 | { |
| 52 | README_DIR=${INSTALL_PREFIX}/usr/doc/Cygwin | 52 | README_DIR=${INSTALL_PREFIX}/usr/share/doc/Cygwin |
| 53 | README_FILE=${README_DIR}/openssl-${VERSION}.README | 53 | README_FILE=${README_DIR}/openssl-${VERSION}.README |
| 54 | 54 | ||
| 55 | mkdir -p ${README_DIR} | 55 | mkdir -p ${README_DIR} |
| @@ -112,8 +112,8 @@ cd ${INSTALL_PREFIX} | |||
| 112 | strip usr/bin/*.exe usr/bin/*.dll | 112 | strip usr/bin/*.exe usr/bin/*.dll |
| 113 | 113 | ||
| 114 | # Runtime package | 114 | # Runtime package |
| 115 | find etc usr/bin usr/doc usr/ssl/certs usr/ssl/man/man[157] usr/ssl/misc \ | 115 | find etc usr/bin usr/share/doc usr/ssl/certs usr/ssl/man/man[157] \ |
| 116 | usr/ssl/openssl.cnf usr/ssl/private -empty -o \! -type d | | 116 | usr/ssl/misc usr/ssl/openssl.cnf usr/ssl/private -empty -o \! -type d | |
| 117 | tar cjfT openssl-${VERSION}-${SUBVERSION}.tar.bz2 - | 117 | tar cjfT openssl-${VERSION}-${SUBVERSION}.tar.bz2 - |
| 118 | # Development package | 118 | # Development package |
| 119 | find usr/include usr/lib usr/ssl/man/man3 -empty -o \! -type d | | 119 | find usr/include usr/lib usr/ssl/man/man3 -empty -o \! -type d | |
diff --git a/src/lib/libcrypto/util/domd b/src/lib/libcrypto/util/domd index 49310bbdd1..5610521f0b 100644 --- a/src/lib/libcrypto/util/domd +++ b/src/lib/libcrypto/util/domd | |||
| @@ -11,7 +11,7 @@ if [ "$1" = "-MD" ]; then | |||
| 11 | fi | 11 | fi |
| 12 | if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi | 12 | if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi |
| 13 | 13 | ||
| 14 | cp Makefile.ssl Makefile.save | 14 | cp Makefile Makefile.save |
| 15 | # fake the presence of Kerberos | 15 | # fake the presence of Kerberos |
| 16 | touch $TOP/krb5.h | 16 | touch $TOP/krb5.h |
| 17 | if [ "$MAKEDEPEND" = "gcc" ]; then | 17 | if [ "$MAKEDEPEND" = "gcc" ]; then |
| @@ -20,15 +20,15 @@ if [ "$MAKEDEPEND" = "gcc" ]; then | |||
| 20 | if [ "$1" != "--" ]; then args="$args $1"; fi | 20 | if [ "$1" != "--" ]; then args="$args $1"; fi |
| 21 | shift | 21 | shift |
| 22 | done | 22 | done |
| 23 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp | 23 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp |
| 24 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp | 24 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp |
| 25 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp | 25 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp |
| 26 | ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new | 26 | ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new |
| 27 | rm -f Makefile.tmp | 27 | rm -f Makefile.tmp |
| 28 | else | 28 | else |
| 29 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ | 29 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile $@ |
| 30 | ${PERL} $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new | 30 | ${PERL} $TOP/util/clean-depend.pl < Makefile > Makefile.new |
| 31 | fi | 31 | fi |
| 32 | mv Makefile.new Makefile.ssl | 32 | mv Makefile.new Makefile |
| 33 | # unfake the presence of Kerberos | 33 | # unfake the presence of Kerberos |
| 34 | rm $TOP/krb5.h | 34 | rm $TOP/krb5.h |
diff --git a/src/lib/libcrypto/util/extract-names.pl b/src/lib/libcrypto/util/extract-names.pl index 744a8e2324..35bd6ed843 100644 --- a/src/lib/libcrypto/util/extract-names.pl +++ b/src/lib/libcrypto/util/extract-names.pl | |||
| @@ -9,9 +9,11 @@ while(<STDIN>) { | |||
| 9 | } elsif ($name) { | 9 | } elsif ($name) { |
| 10 | if (/ - /) { | 10 | if (/ - /) { |
| 11 | s/ - .*//; | 11 | s/ - .*//; |
| 12 | s/,[ \t]+/,/g; | 12 | s/,\s+/,/g; |
| 13 | s/^[ \t]+//g; | 13 | s/\s+,/,/g; |
| 14 | s/[ \t]+$//g; | 14 | s/^\s+//g; |
| 15 | s/\s+$//g; | ||
| 16 | s/\s/_/g; | ||
| 15 | push @words, split ','; | 17 | push @words, split ','; |
| 16 | } | 18 | } |
| 17 | } | 19 | } |
diff --git a/src/lib/libcrypto/util/fixNT.sh b/src/lib/libcrypto/util/fixNT.sh index ce4f19299b..ab9e766b86 100644 --- a/src/lib/libcrypto/util/fixNT.sh +++ b/src/lib/libcrypto/util/fixNT.sh | |||
| @@ -3,12 +3,12 @@ | |||
| 3 | # clean up the mess that NT makes of my source tree | 3 | # clean up the mess that NT makes of my source tree |
| 4 | # | 4 | # |
| 5 | 5 | ||
| 6 | if [ -f makefile.ssl -a ! -f Makefile.ssl ]; then | 6 | if [ -f makefile -a ! -f Makefile ]; then |
| 7 | /bin/mv makefile.ssl Makefile.ssl | 7 | /bin/mv makefile Makefile |
| 8 | fi | 8 | fi |
| 9 | chmod +x Configure util/* | 9 | chmod +x Configure util/* |
| 10 | echo cleaning | 10 | echo cleaning |
| 11 | /bin/rm -f `find . -name '*.$$$' -print` 2>/dev/null >/dev/null | 11 | /bin/rm -f `find . -name '*.$$$' -print` 2>/dev/null >/dev/null |
| 12 | echo 'removing those damn ^M' | 12 | echo 'removing those damn ^M' |
| 13 | perl -pi -e 's/\015//' `find . -type 'f' -print |grep -v '.obj$' |grep -v '.der$' |grep -v '.gz'` | 13 | perl -pi -e 's/\015//' `find . -type 'f' -print |grep -v '.obj$' |grep -v '.der$' |grep -v '.gz'` |
| 14 | make -f Makefile.ssl links | 14 | make -f Makefile links |
diff --git a/src/lib/libcrypto/util/libeay.num b/src/lib/libcrypto/util/libeay.num index 203c7713e7..56fb7446e0 100644 --- a/src/lib/libcrypto/util/libeay.num +++ b/src/lib/libcrypto/util/libeay.num | |||
| @@ -284,20 +284,20 @@ EVP_add_alias 291 NOEXIST::FUNCTION: | |||
| 284 | EVP_add_cipher 292 EXIST::FUNCTION: | 284 | EVP_add_cipher 292 EXIST::FUNCTION: |
| 285 | EVP_add_digest 293 EXIST::FUNCTION: | 285 | EVP_add_digest 293 EXIST::FUNCTION: |
| 286 | EVP_bf_cbc 294 EXIST::FUNCTION:BF | 286 | EVP_bf_cbc 294 EXIST::FUNCTION:BF |
| 287 | EVP_bf_cfb 295 EXIST::FUNCTION:BF | 287 | EVP_bf_cfb64 295 EXIST::FUNCTION:BF |
| 288 | EVP_bf_ecb 296 EXIST::FUNCTION:BF | 288 | EVP_bf_ecb 296 EXIST::FUNCTION:BF |
| 289 | EVP_bf_ofb 297 EXIST::FUNCTION:BF | 289 | EVP_bf_ofb 297 EXIST::FUNCTION:BF |
| 290 | EVP_cleanup 298 EXIST::FUNCTION: | 290 | EVP_cleanup 298 EXIST::FUNCTION: |
| 291 | EVP_des_cbc 299 EXIST::FUNCTION:DES | 291 | EVP_des_cbc 299 EXIST::FUNCTION:DES |
| 292 | EVP_des_cfb 300 EXIST::FUNCTION:DES | 292 | EVP_des_cfb64 300 EXIST::FUNCTION:DES |
| 293 | EVP_des_ecb 301 EXIST::FUNCTION:DES | 293 | EVP_des_ecb 301 EXIST::FUNCTION:DES |
| 294 | EVP_des_ede 302 EXIST::FUNCTION:DES | 294 | EVP_des_ede 302 EXIST::FUNCTION:DES |
| 295 | EVP_des_ede3 303 EXIST::FUNCTION:DES | 295 | EVP_des_ede3 303 EXIST::FUNCTION:DES |
| 296 | EVP_des_ede3_cbc 304 EXIST::FUNCTION:DES | 296 | EVP_des_ede3_cbc 304 EXIST::FUNCTION:DES |
| 297 | EVP_des_ede3_cfb 305 EXIST::FUNCTION:DES | 297 | EVP_des_ede3_cfb64 305 EXIST::FUNCTION:DES |
| 298 | EVP_des_ede3_ofb 306 EXIST::FUNCTION:DES | 298 | EVP_des_ede3_ofb 306 EXIST::FUNCTION:DES |
| 299 | EVP_des_ede_cbc 307 EXIST::FUNCTION:DES | 299 | EVP_des_ede_cbc 307 EXIST::FUNCTION:DES |
| 300 | EVP_des_ede_cfb 308 EXIST::FUNCTION:DES | 300 | EVP_des_ede_cfb64 308 EXIST::FUNCTION:DES |
| 301 | EVP_des_ede_ofb 309 EXIST::FUNCTION:DES | 301 | EVP_des_ede_ofb 309 EXIST::FUNCTION:DES |
| 302 | EVP_des_ofb 310 EXIST::FUNCTION:DES | 302 | EVP_des_ofb 310 EXIST::FUNCTION:DES |
| 303 | EVP_desx_cbc 311 EXIST::FUNCTION:DES | 303 | EVP_desx_cbc 311 EXIST::FUNCTION:DES |
| @@ -308,14 +308,14 @@ EVP_get_cipherbyname 315 EXIST::FUNCTION: | |||
| 308 | EVP_get_digestbyname 316 EXIST::FUNCTION: | 308 | EVP_get_digestbyname 316 EXIST::FUNCTION: |
| 309 | EVP_get_pw_prompt 317 EXIST::FUNCTION: | 309 | EVP_get_pw_prompt 317 EXIST::FUNCTION: |
| 310 | EVP_idea_cbc 318 EXIST::FUNCTION:IDEA | 310 | EVP_idea_cbc 318 EXIST::FUNCTION:IDEA |
| 311 | EVP_idea_cfb 319 EXIST::FUNCTION:IDEA | 311 | EVP_idea_cfb64 319 EXIST::FUNCTION:IDEA |
| 312 | EVP_idea_ecb 320 EXIST::FUNCTION:IDEA | 312 | EVP_idea_ecb 320 EXIST::FUNCTION:IDEA |
| 313 | EVP_idea_ofb 321 EXIST::FUNCTION:IDEA | 313 | EVP_idea_ofb 321 EXIST::FUNCTION:IDEA |
| 314 | EVP_md2 322 EXIST::FUNCTION:MD2 | 314 | EVP_md2 322 EXIST::FUNCTION:MD2 |
| 315 | EVP_md5 323 EXIST::FUNCTION:MD5 | 315 | EVP_md5 323 EXIST::FUNCTION:MD5 |
| 316 | EVP_md_null 324 EXIST::FUNCTION: | 316 | EVP_md_null 324 EXIST::FUNCTION: |
| 317 | EVP_rc2_cbc 325 EXIST::FUNCTION:RC2 | 317 | EVP_rc2_cbc 325 EXIST::FUNCTION:RC2 |
| 318 | EVP_rc2_cfb 326 EXIST::FUNCTION:RC2 | 318 | EVP_rc2_cfb64 326 EXIST::FUNCTION:RC2 |
| 319 | EVP_rc2_ecb 327 EXIST::FUNCTION:RC2 | 319 | EVP_rc2_ecb 327 EXIST::FUNCTION:RC2 |
| 320 | EVP_rc2_ofb 328 EXIST::FUNCTION:RC2 | 320 | EVP_rc2_ofb 328 EXIST::FUNCTION:RC2 |
| 321 | EVP_rc4 329 EXIST::FUNCTION:RC4 | 321 | EVP_rc4 329 EXIST::FUNCTION:RC4 |
| @@ -962,7 +962,7 @@ i2t_ASN1_OBJECT 979 EXIST::FUNCTION: | |||
| 962 | BN_BLINDING_new 980 EXIST::FUNCTION: | 962 | BN_BLINDING_new 980 EXIST::FUNCTION: |
| 963 | BN_BLINDING_free 981 EXIST::FUNCTION: | 963 | BN_BLINDING_free 981 EXIST::FUNCTION: |
| 964 | EVP_cast5_cbc 983 EXIST::FUNCTION:CAST | 964 | EVP_cast5_cbc 983 EXIST::FUNCTION:CAST |
| 965 | EVP_cast5_cfb 984 EXIST::FUNCTION:CAST | 965 | EVP_cast5_cfb64 984 EXIST::FUNCTION:CAST |
| 966 | EVP_cast5_ecb 985 EXIST::FUNCTION:CAST | 966 | EVP_cast5_ecb 985 EXIST::FUNCTION:CAST |
| 967 | EVP_cast5_ofb 986 EXIST::FUNCTION:CAST | 967 | EVP_cast5_ofb 986 EXIST::FUNCTION:CAST |
| 968 | BF_decrypt 987 EXIST::FUNCTION:BF | 968 | BF_decrypt 987 EXIST::FUNCTION:BF |
| @@ -1057,7 +1057,7 @@ EVP_CIPHER_param_to_asn1 1084 EXIST::FUNCTION: | |||
| 1057 | EVP_CIPHER_get_asn1_iv 1085 EXIST::FUNCTION: | 1057 | EVP_CIPHER_get_asn1_iv 1085 EXIST::FUNCTION: |
| 1058 | EVP_CIPHER_set_asn1_iv 1086 EXIST::FUNCTION: | 1058 | EVP_CIPHER_set_asn1_iv 1086 EXIST::FUNCTION: |
| 1059 | EVP_rc5_32_12_16_cbc 1087 EXIST::FUNCTION:RC5 | 1059 | EVP_rc5_32_12_16_cbc 1087 EXIST::FUNCTION:RC5 |
| 1060 | EVP_rc5_32_12_16_cfb 1088 EXIST::FUNCTION:RC5 | 1060 | EVP_rc5_32_12_16_cfb64 1088 EXIST::FUNCTION:RC5 |
| 1061 | EVP_rc5_32_12_16_ecb 1089 EXIST::FUNCTION:RC5 | 1061 | EVP_rc5_32_12_16_ecb 1089 EXIST::FUNCTION:RC5 |
| 1062 | EVP_rc5_32_12_16_ofb 1090 EXIST::FUNCTION:RC5 | 1062 | EVP_rc5_32_12_16_ofb 1090 EXIST::FUNCTION:RC5 |
| 1063 | asn1_add_error 1091 EXIST::FUNCTION: | 1063 | asn1_add_error 1091 EXIST::FUNCTION: |
| @@ -2776,10 +2776,10 @@ ENGINE_load_4758cca 3218 EXIST::FUNCTION:ENGINE | |||
| 2776 | _ossl_096_des_random_seed 3219 EXIST::FUNCTION:DES | 2776 | _ossl_096_des_random_seed 3219 EXIST::FUNCTION:DES |
| 2777 | EVP_aes_256_ofb 3220 EXIST::FUNCTION:AES | 2777 | EVP_aes_256_ofb 3220 EXIST::FUNCTION:AES |
| 2778 | EVP_aes_192_ofb 3221 EXIST::FUNCTION:AES | 2778 | EVP_aes_192_ofb 3221 EXIST::FUNCTION:AES |
| 2779 | EVP_aes_128_cfb 3222 EXIST::FUNCTION:AES | 2779 | EVP_aes_128_cfb128 3222 EXIST::FUNCTION:AES |
| 2780 | EVP_aes_256_cfb 3223 EXIST::FUNCTION:AES | 2780 | EVP_aes_256_cfb128 3223 EXIST::FUNCTION:AES |
| 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES | 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES |
| 2782 | EVP_aes_192_cfb 3225 EXIST::FUNCTION:AES | 2782 | EVP_aes_192_cfb128 3225 EXIST::FUNCTION:AES |
| 2783 | CONF_modules_free 3226 EXIST::FUNCTION: | 2783 | CONF_modules_free 3226 EXIST::FUNCTION: |
| 2784 | NCONF_default 3227 EXIST::FUNCTION: | 2784 | NCONF_default 3227 EXIST::FUNCTION: |
| 2785 | OPENSSL_no_config 3228 EXIST::FUNCTION: | 2785 | OPENSSL_no_config 3228 EXIST::FUNCTION: |
| @@ -2803,3 +2803,67 @@ OpenSSLDie 3244 EXIST::FUNCTION: | |||
| 2803 | OPENSSL_cleanse 3245 EXIST::FUNCTION: | 2803 | OPENSSL_cleanse 3245 EXIST::FUNCTION: |
| 2804 | ENGINE_setup_bsd_cryptodev 3246 EXIST:__FreeBSD__:FUNCTION:ENGINE | 2804 | ENGINE_setup_bsd_cryptodev 3246 EXIST:__FreeBSD__:FUNCTION:ENGINE |
| 2805 | ERR_release_err_state_table 3247 EXIST::FUNCTION:LHASH | 2805 | ERR_release_err_state_table 3247 EXIST::FUNCTION:LHASH |
| 2806 | EVP_aes_128_cfb8 3248 EXIST::FUNCTION:AES | ||
| 2807 | FIPS_corrupt_rsa 3249 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2808 | FIPS_selftest_des 3250 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2809 | EVP_aes_128_cfb1 3251 EXIST::FUNCTION:AES | ||
| 2810 | EVP_aes_192_cfb8 3252 EXIST::FUNCTION:AES | ||
| 2811 | FIPS_mode_set 3253 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2812 | FIPS_selftest_dsa 3254 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2813 | EVP_aes_256_cfb8 3255 EXIST::FUNCTION:AES | ||
| 2814 | FIPS_allow_md5 3256 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2815 | DES_ede3_cfb_encrypt 3257 EXIST::FUNCTION:DES | ||
| 2816 | EVP_des_ede3_cfb8 3258 EXIST::FUNCTION:DES | ||
| 2817 | FIPS_rand_seeded 3259 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2818 | AES_cfbr_encrypt_block 3260 EXIST::FUNCTION:AES | ||
| 2819 | AES_cfb8_encrypt 3261 EXIST::FUNCTION:AES | ||
| 2820 | FIPS_rand_seed 3262 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2821 | FIPS_corrupt_des 3263 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2822 | EVP_aes_192_cfb1 3264 EXIST::FUNCTION:AES | ||
| 2823 | FIPS_selftest_aes 3265 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2824 | FIPS_set_prng_key 3266 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2825 | EVP_des_cfb8 3267 EXIST::FUNCTION:DES | ||
| 2826 | FIPS_corrupt_dsa 3268 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2827 | FIPS_test_mode 3269 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2828 | FIPS_rand_method 3270 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2829 | EVP_aes_256_cfb1 3271 EXIST::FUNCTION:AES | ||
| 2830 | ERR_load_FIPS_strings 3272 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2831 | FIPS_corrupt_aes 3273 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2832 | FIPS_selftest_sha1 3274 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2833 | FIPS_selftest_rsa 3275 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2834 | FIPS_corrupt_sha1 3276 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2835 | EVP_des_cfb1 3277 EXIST::FUNCTION:DES | ||
| 2836 | FIPS_dsa_check 3278 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2837 | AES_cfb1_encrypt 3279 EXIST::FUNCTION:AES | ||
| 2838 | EVP_des_ede3_cfb1 3280 EXIST::FUNCTION:DES | ||
| 2839 | FIPS_rand_check 3281 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2840 | FIPS_md5_allowed 3282 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2841 | FIPS_mode 3283 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2842 | FIPS_selftest_failed 3284 EXIST:OPENSSL_FIPS:FUNCTION: | ||
| 2843 | sk_is_sorted 3285 EXIST::FUNCTION: | ||
| 2844 | X509_check_ca 3286 EXIST::FUNCTION: | ||
| 2845 | private_idea_set_encrypt_key 3287 EXIST:OPENSSL_FIPS:FUNCTION:IDEA | ||
| 2846 | HMAC_CTX_set_flags 3288 EXIST::FUNCTION:HMAC | ||
| 2847 | private_SHA_Init 3289 EXIST:OPENSSL_FIPS:FUNCTION:SHA,SHA0 | ||
| 2848 | private_CAST_set_key 3290 EXIST:OPENSSL_FIPS:FUNCTION:CAST | ||
| 2849 | private_RIPEMD160_Init 3291 EXIST:OPENSSL_FIPS:FUNCTION:RIPEMD | ||
| 2850 | private_RC5_32_set_key 3292 EXIST:OPENSSL_FIPS:FUNCTION:RC5 | ||
| 2851 | private_MD5_Init 3293 EXIST:OPENSSL_FIPS:FUNCTION:MD5 | ||
| 2852 | private_RC4_set_key 3294 EXIST:OPENSSL_FIPS:FUNCTION:RC4 | ||
| 2853 | private_MDC2_Init 3295 EXIST:OPENSSL_FIPS:FUNCTION:MDC2 | ||
| 2854 | private_RC2_set_key 3296 EXIST:OPENSSL_FIPS:FUNCTION:RC2 | ||
| 2855 | private_MD4_Init 3297 EXIST:OPENSSL_FIPS:FUNCTION:MD4 | ||
| 2856 | private_BF_set_key 3298 EXIST:OPENSSL_FIPS:FUNCTION:BF | ||
| 2857 | private_MD2_Init 3299 EXIST:OPENSSL_FIPS:FUNCTION:MD2 | ||
| 2858 | d2i_PROXY_CERT_INFO_EXTENSION 3300 EXIST::FUNCTION: | ||
| 2859 | PROXY_POLICY_it 3301 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | ||
| 2860 | PROXY_POLICY_it 3301 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | ||
| 2861 | i2d_PROXY_POLICY 3302 EXIST::FUNCTION: | ||
| 2862 | i2d_PROXY_CERT_INFO_EXTENSION 3303 EXIST::FUNCTION: | ||
| 2863 | d2i_PROXY_POLICY 3304 EXIST::FUNCTION: | ||
| 2864 | PROXY_CERT_INFO_EXTENSION_new 3305 EXIST::FUNCTION: | ||
| 2865 | PROXY_CERT_INFO_EXTENSION_free 3306 EXIST::FUNCTION: | ||
| 2866 | PROXY_CERT_INFO_EXTENSION_it 3307 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | ||
| 2867 | PROXY_CERT_INFO_EXTENSION_it 3307 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | ||
| 2868 | PROXY_POLICY_free 3308 EXIST::FUNCTION: | ||
| 2869 | PROXY_POLICY_new 3309 EXIST::FUNCTION: | ||
diff --git a/src/lib/libcrypto/util/mk1mf.pl b/src/lib/libcrypto/util/mk1mf.pl index b4bc0457e5..957264c6b5 100644 --- a/src/lib/libcrypto/util/mk1mf.pl +++ b/src/lib/libcrypto/util/mk1mf.pl | |||
| @@ -10,7 +10,7 @@ $OPTIONS=""; | |||
| 10 | $ssl_version=""; | 10 | $ssl_version=""; |
| 11 | $banner="\t\@echo Building OpenSSL"; | 11 | $banner="\t\@echo Building OpenSSL"; |
| 12 | 12 | ||
| 13 | open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n"; | 13 | open(IN,"<Makefile") || die "unable to open Makefile!\n"; |
| 14 | while(<IN>) { | 14 | while(<IN>) { |
| 15 | $ssl_version=$1 if (/^VERSION=(.*)$/); | 15 | $ssl_version=$1 if (/^VERSION=(.*)$/); |
| 16 | $OPTIONS=$1 if (/^OPTIONS=(.*)$/); | 16 | $OPTIONS=$1 if (/^OPTIONS=(.*)$/); |
| @@ -18,7 +18,7 @@ while(<IN>) { | |||
| 18 | } | 18 | } |
| 19 | close(IN); | 19 | close(IN); |
| 20 | 20 | ||
| 21 | die "Makefile.ssl is not the toplevel Makefile!\n" if $ssl_version eq ""; | 21 | die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq ""; |
| 22 | 22 | ||
| 23 | $infile="MINFO"; | 23 | $infile="MINFO"; |
| 24 | 24 | ||
| @@ -222,7 +222,7 @@ $cflags.=" -DOPENSSL_NO_SHA" if $no_sha; | |||
| 222 | $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1; | 222 | $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1; |
| 223 | $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd; | 223 | $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd; |
| 224 | $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2; | 224 | $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2; |
| 225 | $cflags.=" -DOPENSSL_NO_BF" if $no_bf; | 225 | $cflags.=" -DOPENSSL_NO_BF" if $no_bf; |
| 226 | $cflags.=" -DOPENSSL_NO_CAST" if $no_cast; | 226 | $cflags.=" -DOPENSSL_NO_CAST" if $no_cast; |
| 227 | $cflags.=" -DOPENSSL_NO_DES" if $no_des; | 227 | $cflags.=" -DOPENSSL_NO_DES" if $no_des; |
| 228 | $cflags.=" -DOPENSSL_NO_RSA" if $no_rsa; | 228 | $cflags.=" -DOPENSSL_NO_RSA" if $no_rsa; |
| @@ -236,6 +236,7 @@ $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5; | |||
| 236 | $cflags.=" -DOPENSSL_NO_EC" if $no_ec; | 236 | $cflags.=" -DOPENSSL_NO_EC" if $no_ec; |
| 237 | $cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine; | 237 | $cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine; |
| 238 | $cflags.=" -DOPENSSL_NO_HW" if $no_hw; | 238 | $cflags.=" -DOPENSSL_NO_HW" if $no_hw; |
| 239 | $cflags.=" -DOPENSSL_FIPS" if $fips; | ||
| 239 | #$cflags.=" -DRSAref" if $rsaref ne ""; | 240 | #$cflags.=" -DRSAref" if $rsaref ne ""; |
| 240 | 241 | ||
| 241 | ## if ($unix) | 242 | ## if ($unix) |
| @@ -631,15 +632,21 @@ foreach (split(/\s+/,$test)) | |||
| 631 | $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)"); | 632 | $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)"); |
| 632 | $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)"); | 633 | $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)"); |
| 633 | 634 | ||
| 634 | $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)"); | 635 | if ($fips) |
| 635 | 636 | { | |
| 637 | $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)","\$(BIN_D)$o.sha1","\$(BIN_D)$o\$(E_EXE)$exep"); | ||
| 638 | } | ||
| 639 | else | ||
| 640 | { | ||
| 641 | $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)"); | ||
| 642 | } | ||
| 636 | print $defs; | 643 | print $defs; |
| 637 | 644 | ||
| 638 | if ($platform eq "linux-elf") { | 645 | if ($platform eq "linux-elf") { |
| 639 | print <<"EOF"; | 646 | print <<"EOF"; |
| 640 | # Generate perlasm output files | 647 | # Generate perlasm output files |
| 641 | %.cpp: | 648 | %.cpp: |
| 642 | (cd \$(\@D)/..; PERL=perl make -f Makefile.ssl asm/\$(\@F)) | 649 | (cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F)) |
| 643 | EOF | 650 | EOF |
| 644 | } | 651 | } |
| 645 | print "###################################################################\n"; | 652 | print "###################################################################\n"; |
| @@ -921,6 +928,7 @@ sub read_options | |||
| 921 | $no_aes=1; } | 928 | $no_aes=1; } |
| 922 | 929 | ||
| 923 | elsif (/^rsaref$/) { } | 930 | elsif (/^rsaref$/) { } |
| 931 | elsif (/^fips$/) { $fips=1; } | ||
| 924 | elsif (/^gcc$/) { $gcc=1; } | 932 | elsif (/^gcc$/) { $gcc=1; } |
| 925 | elsif (/^debug$/) { $debug=1; } | 933 | elsif (/^debug$/) { $debug=1; } |
| 926 | elsif (/^profile$/) { $profile=1; } | 934 | elsif (/^profile$/) { $profile=1; } |
diff --git a/src/lib/libcrypto/util/mkdef.pl b/src/lib/libcrypto/util/mkdef.pl index 01a1bfda19..9918c3d549 100644 --- a/src/lib/libcrypto/util/mkdef.pl +++ b/src/lib/libcrypto/util/mkdef.pl | |||
| @@ -79,7 +79,7 @@ my $OS2=0; | |||
| 79 | my $safe_stack_def = 0; | 79 | my $safe_stack_def = 0; |
| 80 | 80 | ||
| 81 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", | 81 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", |
| 82 | "EXPORT_VAR_AS_FUNCTION" ); | 82 | "EXPORT_VAR_AS_FUNCTION", "OPENSSL_FIPS" ); |
| 83 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" ); | 83 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" ); |
| 84 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", | 84 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", |
| 85 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", | 85 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", |
| @@ -94,7 +94,7 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", | |||
| 94 | "FP_API", "STDIO", "SOCK", "KRB5", "ENGINE", "HW" ); | 94 | "FP_API", "STDIO", "SOCK", "KRB5", "ENGINE", "HW" ); |
| 95 | 95 | ||
| 96 | my $options=""; | 96 | my $options=""; |
| 97 | open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n"; | 97 | open(IN,"<Makefile") || die "unable to open Makefile!\n"; |
| 98 | while(<IN>) { | 98 | while(<IN>) { |
| 99 | $options=$1 if (/^OPTIONS=(.*)$/); | 99 | $options=$1 if (/^OPTIONS=(.*)$/); |
| 100 | } | 100 | } |
| @@ -109,6 +109,7 @@ my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2; | |||
| 109 | my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5; | 109 | my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5; |
| 110 | my $no_ec; my $no_engine; my $no_hw; | 110 | my $no_ec; my $no_engine; my $no_hw; |
| 111 | my $no_fp_api; | 111 | my $no_fp_api; |
| 112 | my $fips; | ||
| 112 | 113 | ||
| 113 | foreach (@ARGV, split(/ /, $options)) | 114 | foreach (@ARGV, split(/ /, $options)) |
| 114 | { | 115 | { |
| @@ -129,6 +130,7 @@ foreach (@ARGV, split(/ /, $options)) | |||
| 129 | } | 130 | } |
| 130 | $VMS=1 if $_ eq "VMS"; | 131 | $VMS=1 if $_ eq "VMS"; |
| 131 | $OS2=1 if $_ eq "OS2"; | 132 | $OS2=1 if $_ eq "OS2"; |
| 133 | $fips=1 if $_ eq "fips"; | ||
| 132 | 134 | ||
| 133 | $do_ssl=1 if $_ eq "ssleay"; | 135 | $do_ssl=1 if $_ eq "ssleay"; |
| 134 | if ($_ eq "ssl") { | 136 | if ($_ eq "ssl") { |
| @@ -265,6 +267,7 @@ $crypto.=" crypto/ocsp/ocsp.h"; | |||
| 265 | $crypto.=" crypto/ui/ui.h crypto/ui/ui_compat.h"; | 267 | $crypto.=" crypto/ui/ui.h crypto/ui/ui_compat.h"; |
| 266 | $crypto.=" crypto/krb5/krb5_asn.h"; | 268 | $crypto.=" crypto/krb5/krb5_asn.h"; |
| 267 | $crypto.=" crypto/tmdiff.h"; | 269 | $crypto.=" crypto/tmdiff.h"; |
| 270 | $crypto.=" fips/fips.h fips/rand/fips_rand.h"; | ||
| 268 | 271 | ||
| 269 | my $symhacks="crypto/symhacks.h"; | 272 | my $symhacks="crypto/symhacks.h"; |
| 270 | 273 | ||
| @@ -469,7 +472,7 @@ sub do_defs | |||
| 469 | push(@tag,$1); | 472 | push(@tag,$1); |
| 470 | $tag{$1}=-1; | 473 | $tag{$1}=-1; |
| 471 | } | 474 | } |
| 472 | } elsif (/^\#\s*ifdef\s+(.*)/) { | 475 | } elsif (/^\#\s*ifdef\s+(\S*)/) { |
| 473 | push(@tag,"-"); | 476 | push(@tag,"-"); |
| 474 | push(@tag,$1); | 477 | push(@tag,$1); |
| 475 | $tag{$1}=1; | 478 | $tag{$1}=1; |
| @@ -794,7 +797,7 @@ sub do_defs | |||
| 794 | } | 797 | } |
| 795 | close(IN); | 798 | close(IN); |
| 796 | 799 | ||
| 797 | my $algs; | 800 | my $algs = ''; |
| 798 | my $plays; | 801 | my $plays; |
| 799 | 802 | ||
| 800 | print STDERR "DEBUG: postprocessing ----------\n" if $debug; | 803 | print STDERR "DEBUG: postprocessing ----------\n" if $debug; |
| @@ -864,6 +867,7 @@ sub do_defs | |||
| 864 | 867 | ||
| 865 | $platform{$s} = | 868 | $platform{$s} = |
| 866 | &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p); | 869 | &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p); |
| 870 | $algorithm{$s} = '' if !defined $algorithm{$s}; | ||
| 867 | $algorithm{$s} .= ','.$a; | 871 | $algorithm{$s} .= ','.$a; |
| 868 | 872 | ||
| 869 | if (defined($variant{$s})) { | 873 | if (defined($variant{$s})) { |
| @@ -1028,6 +1032,9 @@ sub is_valid | |||
| 1028 | if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32 || $W16)) { | 1032 | if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32 || $W16)) { |
| 1029 | return 1; | 1033 | return 1; |
| 1030 | } | 1034 | } |
| 1035 | if ($keyword eq "OPENSSL_FIPS" && $fips) { | ||
| 1036 | return 1; | ||
| 1037 | } | ||
| 1031 | return 0; | 1038 | return 0; |
| 1032 | } else { | 1039 | } else { |
| 1033 | # algorithms | 1040 | # algorithms |
| @@ -1119,7 +1126,7 @@ sub print_test_file | |||
| 1119 | sub get_version { | 1126 | sub get_version { |
| 1120 | local *MF; | 1127 | local *MF; |
| 1121 | my $v = '?'; | 1128 | my $v = '?'; |
| 1122 | open MF, 'Makefile.ssl' or return $v; | 1129 | open MF, 'Makefile' or return $v; |
| 1123 | while (<MF>) { | 1130 | while (<MF>) { |
| 1124 | $v = $1, last if /^VERSION=(.*?)\s*$/; | 1131 | $v = $1, last if /^VERSION=(.*?)\s*$/; |
| 1125 | } | 1132 | } |
diff --git a/src/lib/libcrypto/util/mkfiles.pl b/src/lib/libcrypto/util/mkfiles.pl index 29e1404c69..928a274303 100644 --- a/src/lib/libcrypto/util/mkfiles.pl +++ b/src/lib/libcrypto/util/mkfiles.pl | |||
| @@ -51,6 +51,14 @@ my @dirs = ( | |||
| 51 | "crypto/ocsp", | 51 | "crypto/ocsp", |
| 52 | "crypto/ui", | 52 | "crypto/ui", |
| 53 | "crypto/krb5", | 53 | "crypto/krb5", |
| 54 | "fips", | ||
| 55 | "fips/aes", | ||
| 56 | "fips/des", | ||
| 57 | "fips/dsa", | ||
| 58 | "fips/dh", | ||
| 59 | "fips/rand", | ||
| 60 | "fips/rsa", | ||
| 61 | "fips/sha1", | ||
| 54 | "ssl", | 62 | "ssl", |
| 55 | "apps", | 63 | "apps", |
| 56 | "test", | 64 | "test", |
| @@ -58,7 +66,7 @@ my @dirs = ( | |||
| 58 | ); | 66 | ); |
| 59 | 67 | ||
| 60 | foreach (@dirs) { | 68 | foreach (@dirs) { |
| 61 | &files_dir ($_, "Makefile.ssl"); | 69 | &files_dir ($_, "Makefile"); |
| 62 | } | 70 | } |
| 63 | 71 | ||
| 64 | exit(0); | 72 | exit(0); |
diff --git a/src/lib/libcrypto/util/mklink.pl b/src/lib/libcrypto/util/mklink.pl index 9386da7aa4..c8653cecc3 100644 --- a/src/lib/libcrypto/util/mklink.pl +++ b/src/lib/libcrypto/util/mklink.pl | |||
| @@ -52,6 +52,7 @@ $symlink_exists=eval {symlink("",""); 1}; | |||
| 52 | foreach $file (@files) { | 52 | foreach $file (@files) { |
| 53 | my $err = ""; | 53 | my $err = ""; |
| 54 | if ($symlink_exists) { | 54 | if ($symlink_exists) { |
| 55 | unlink "$from/$file"; | ||
| 55 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; | 56 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; |
| 56 | } else { | 57 | } else { |
| 57 | unlink "$from/$file"; | 58 | unlink "$from/$file"; |
diff --git a/src/lib/libcrypto/util/opensslwrap.sh b/src/lib/libcrypto/util/opensslwrap.sh new file mode 100755 index 0000000000..91d29e2b87 --- /dev/null +++ b/src/lib/libcrypto/util/opensslwrap.sh | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | HERE="`echo $0 | sed -e 's|[^/]*$||'`" | ||
| 4 | OPENSSL="${HERE}../apps/openssl" | ||
| 5 | |||
| 6 | if [ -x "${OPENSSL}.exe" ]; then | ||
| 7 | # The original reason for this script existence is to work around | ||
| 8 | # certain caveats in run-time linker behaviour. On Windows platforms | ||
| 9 | # adjusting $PATH used to be sufficient, but with introduction of | ||
| 10 | # SafeDllSearchMode in XP/2003 the only way to get it right in | ||
| 11 | # *all* possible situations is to copy newly built .DLLs to apps/ | ||
| 12 | # and test/, which is now done elsewhere... The $PATH is adjusted | ||
| 13 | # for backward compatibility (and nostagical reasons:-). | ||
| 14 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
| 15 | PATH="${HERE}..:$PATH"; export PATH | ||
| 16 | fi | ||
| 17 | exec "${OPENSSL}.exe" "$@" | ||
| 18 | elif [ -x "${OPENSSL}" -a -x "${HERE}shlib_wrap.sh" ]; then | ||
| 19 | exec "${HERE}shlib_wrap.sh" "${OPENSSL}" "$@" | ||
| 20 | else | ||
| 21 | exec "${OPENSSL}" "$@" # hope for the best... | ||
| 22 | fi | ||
diff --git a/src/lib/libcrypto/util/pl/BC-16.pl b/src/lib/libcrypto/util/pl/BC-16.pl index 2033f524ca..8030653daa 100644 --- a/src/lib/libcrypto/util/pl/BC-16.pl +++ b/src/lib/libcrypto/util/pl/BC-16.pl | |||
| @@ -64,7 +64,7 @@ $lfile=''; | |||
| 64 | 64 | ||
| 65 | $asm='bcc -c -B -Tml'; | 65 | $asm='bcc -c -B -Tml'; |
| 66 | $afile='/o'; | 66 | $afile='/o'; |
| 67 | if ($no_asm) | 67 | if ($no_asm || $fips) |
| 68 | { | 68 | { |
| 69 | $bn_asm_obj=''; | 69 | $bn_asm_obj=''; |
| 70 | $bn_asm_src=''; | 70 | $bn_asm_src=''; |
| @@ -119,11 +119,11 @@ sub do_lib_rule | |||
| 119 | 119 | ||
| 120 | sub do_link_rule | 120 | sub do_link_rule |
| 121 | { | 121 | { |
| 122 | local($target,$files,$dep_libs,$libs)=@_; | 122 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 123 | local($ret,$f,$_,@f); | 123 | local($ret,$f,$_,@f); |
| 124 | 124 | ||
| 125 | $file =~ s/\//$o/g if $o ne '/'; | 125 | $file =~ s/\//$o/g if $o ne '/'; |
| 126 | $n=&bname($targer); | 126 | $n=&bname($target); |
| 127 | $ret.="$target: $files $dep_libs\n"; | 127 | $ret.="$target: $files $dep_libs\n"; |
| 128 | $ret.=" \$(LINK) @&&|"; | 128 | $ret.=" \$(LINK) @&&|"; |
| 129 | 129 | ||
| @@ -139,7 +139,12 @@ sub do_link_rule | |||
| 139 | } | 139 | } |
| 140 | else | 140 | else |
| 141 | { $ret.="\n $r \$(APP_EX_OBJ) $files\n"; } | 141 | { $ret.="\n $r \$(APP_EX_OBJ) $files\n"; } |
| 142 | $ret.=" $target\n\n $libs\n\n|\n\n"; | 142 | $ret.=" $target\n\n $libs\n\n|\n"; |
| 143 | if (defined $sha1file) | ||
| 144 | { | ||
| 145 | $ret.=" $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 146 | } | ||
| 147 | $ret.="\n"; | ||
| 143 | return($ret); | 148 | return($ret); |
| 144 | } | 149 | } |
| 145 | 150 | ||
diff --git a/src/lib/libcrypto/util/pl/BC-32.pl b/src/lib/libcrypto/util/pl/BC-32.pl index e83b336190..897ae9d824 100644 --- a/src/lib/libcrypto/util/pl/BC-32.pl +++ b/src/lib/libcrypto/util/pl/BC-32.pl | |||
| @@ -62,7 +62,7 @@ $des_enc_src=''; | |||
| 62 | $bf_enc_obj=''; | 62 | $bf_enc_obj=''; |
| 63 | $bf_enc_src=''; | 63 | $bf_enc_src=''; |
| 64 | 64 | ||
| 65 | if (!$no_asm) | 65 | if (!$no_asm && !$fips) |
| 66 | { | 66 | { |
| 67 | $bn_mulw_obj='crypto\bn\asm\bn_win32.obj'; | 67 | $bn_mulw_obj='crypto\bn\asm\bn_win32.obj'; |
| 68 | $bn_mulw_src='crypto\bn\asm\bn_win32.asm'; | 68 | $bn_mulw_src='crypto\bn\asm\bn_win32.asm'; |
| @@ -122,13 +122,18 @@ sub do_lib_rule | |||
| 122 | 122 | ||
| 123 | sub do_link_rule | 123 | sub do_link_rule |
| 124 | { | 124 | { |
| 125 | local($target,$files,$dep_libs,$libs)=@_; | 125 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 126 | local($ret,$_); | 126 | local($ret,$_); |
| 127 | 127 | ||
| 128 | $file =~ s/\//$o/g if $o ne '/'; | 128 | $file =~ s/\//$o/g if $o ne '/'; |
| 129 | $n=&bname($targer); | 129 | $n=&bname($targer); |
| 130 | $ret.="$target: $files $dep_libs\n"; | 130 | $ret.="$target: $files $dep_libs\n"; |
| 131 | $ret.="\t\$(LINK) \$(LFLAGS) $files \$(APP_EX_OBJ), $target,, $libs\n\n"; | 131 | $ret.="\t\$(LINK) \$(LFLAGS) $files \$(APP_EX_OBJ), $target,, $libs\n"; |
| 132 | if (defined $sha1file) | ||
| 133 | { | ||
| 134 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 135 | } | ||
| 136 | $ret.="\n"; | ||
| 132 | return($ret); | 137 | return($ret); |
| 133 | } | 138 | } |
| 134 | 139 | ||
diff --git a/src/lib/libcrypto/util/pl/Mingw32.pl b/src/lib/libcrypto/util/pl/Mingw32.pl index 4bee638c4a..b9bb24d21d 100644 --- a/src/lib/libcrypto/util/pl/Mingw32.pl +++ b/src/lib/libcrypto/util/pl/Mingw32.pl | |||
| @@ -21,7 +21,7 @@ if ($debug) | |||
| 21 | else | 21 | else |
| 22 | { $cflags="-DL_ENDIAN -DDSO_WIN32 -fomit-frame-pointer -O3 -mcpu=i486 -Wall"; } | 22 | { $cflags="-DL_ENDIAN -DDSO_WIN32 -fomit-frame-pointer -O3 -mcpu=i486 -Wall"; } |
| 23 | 23 | ||
| 24 | if ($gaswin and !$no_asm) | 24 | if ($gaswin and !$no_asm and !$fips) |
| 25 | { | 25 | { |
| 26 | $bn_asm_obj='$(OBJ_D)\bn-win32.o'; | 26 | $bn_asm_obj='$(OBJ_D)\bn-win32.o'; |
| 27 | $bn_asm_src='crypto/bn/asm/bn-win32.s'; | 27 | $bn_asm_src='crypto/bn/asm/bn-win32.s'; |
| @@ -92,13 +92,18 @@ sub do_lib_rule | |||
| 92 | 92 | ||
| 93 | sub do_link_rule | 93 | sub do_link_rule |
| 94 | { | 94 | { |
| 95 | local($target,$files,$dep_libs,$libs)=@_; | 95 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 96 | local($ret,$_); | 96 | local($ret,$_); |
| 97 | 97 | ||
| 98 | $file =~ s/\//$o/g if $o ne '/'; | 98 | $file =~ s/\//$o/g if $o ne '/'; |
| 99 | $n=&bname($target); | 99 | $n=&bname($target); |
| 100 | $ret.="$target: $files $dep_libs\n"; | 100 | $ret.="$target: $files $dep_libs\n"; |
| 101 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 101 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n"; |
| 102 | if (defined $sha1file) | ||
| 103 | { | ||
| 104 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 105 | } | ||
| 106 | $ret.="\n"; | ||
| 102 | return($ret); | 107 | return($ret); |
| 103 | } | 108 | } |
| 104 | 1; | 109 | 1; |
diff --git a/src/lib/libcrypto/util/pl/OS2-EMX.pl b/src/lib/libcrypto/util/pl/OS2-EMX.pl index ddb3524210..75d72ebbcb 100644 --- a/src/lib/libcrypto/util/pl/OS2-EMX.pl +++ b/src/lib/libcrypto/util/pl/OS2-EMX.pl | |||
| @@ -48,7 +48,7 @@ $des_enc_src=""; | |||
| 48 | $bf_enc_obj=""; | 48 | $bf_enc_obj=""; |
| 49 | $bf_enc_src=""; | 49 | $bf_enc_src=""; |
| 50 | 50 | ||
| 51 | if (!$no_asm) | 51 | if (!$no_asm && !$fips) |
| 52 | { | 52 | { |
| 53 | $bn_asm_obj="crypto/bn/asm/bn-os2$obj crypto/bn/asm/co-os2$obj"; | 53 | $bn_asm_obj="crypto/bn/asm/bn-os2$obj crypto/bn/asm/co-os2$obj"; |
| 54 | $bn_asm_src="crypto/bn/asm/bn-os2.asm crypto/bn/asm/co-os2.asm"; | 54 | $bn_asm_src="crypto/bn/asm/bn-os2.asm crypto/bn/asm/co-os2.asm"; |
| @@ -106,13 +106,18 @@ sub do_lib_rule | |||
| 106 | 106 | ||
| 107 | sub do_link_rule | 107 | sub do_link_rule |
| 108 | { | 108 | { |
| 109 | local($target,$files,$dep_libs,$libs)=@_; | 109 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 110 | local($ret,$_); | 110 | local($ret,$_); |
| 111 | 111 | ||
| 112 | $file =~ s/\//$o/g if $o ne '/'; | 112 | $file =~ s/\//$o/g if $o ne '/'; |
| 113 | $n=&bname($target); | 113 | $n=&bname($target); |
| 114 | $ret.="$target: $files $dep_libs\n"; | 114 | $ret.="$target: $files $dep_libs\n"; |
| 115 | $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n\n"; | 115 | $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n"; |
| 116 | if (defined $sha1file) | ||
| 117 | { | ||
| 118 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 119 | } | ||
| 120 | $ret.="\n"; | ||
| 116 | return($ret); | 121 | return($ret); |
| 117 | } | 122 | } |
| 118 | 123 | ||
diff --git a/src/lib/libcrypto/util/pl/VC-16.pl b/src/lib/libcrypto/util/pl/VC-16.pl index 7cda5e67a9..564ba3fd08 100644 --- a/src/lib/libcrypto/util/pl/VC-16.pl +++ b/src/lib/libcrypto/util/pl/VC-16.pl | |||
| @@ -61,7 +61,7 @@ if ($shlib) | |||
| 61 | else | 61 | else |
| 62 | { $mlflags=''; } | 62 | { $mlflags=''; } |
| 63 | 63 | ||
| 64 | $app_ex_obj="setargv.obj"; | 64 | $app_ex_obj=""; |
| 65 | 65 | ||
| 66 | $obj='.obj'; | 66 | $obj='.obj'; |
| 67 | $ofile="/Fo"; | 67 | $ofile="/Fo"; |
| @@ -90,7 +90,7 @@ $des_enc_src=''; | |||
| 90 | $bf_enc_obj=''; | 90 | $bf_enc_obj=''; |
| 91 | $bf_enc_src=''; | 91 | $bf_enc_src=''; |
| 92 | 92 | ||
| 93 | if (!$no_asm) | 93 | if (!$no_asm && !$fips) |
| 94 | { | 94 | { |
| 95 | if ($asmbits == 32) | 95 | if ($asmbits == 32) |
| 96 | { | 96 | { |
| @@ -147,7 +147,7 @@ sub do_lib_rule | |||
| 147 | 147 | ||
| 148 | sub do_link_rule | 148 | sub do_link_rule |
| 149 | { | 149 | { |
| 150 | local($target,$files,$dep_libs,$libs)=@_; | 150 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 151 | local($ret,$f,$_,@f); | 151 | local($ret,$f,$_,@f); |
| 152 | 152 | ||
| 153 | $file =~ s/\//$o/g if $o ne '/'; | 153 | $file =~ s/\//$o/g if $o ne '/'; |
| @@ -165,7 +165,12 @@ sub do_link_rule | |||
| 165 | } | 165 | } |
| 166 | else | 166 | else |
| 167 | { $ret.=" \$(APP_EX_OBJ) $files"; } | 167 | { $ret.=" \$(APP_EX_OBJ) $files"; } |
| 168 | $ret.="\n $target\n\n $libs\n\n<<\n\n"; | 168 | $ret.="\n $target\n\n $libs\n\n<<\n"; |
| 169 | if (defined $sha1file) | ||
| 170 | { | ||
| 171 | $ret.=" $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 172 | } | ||
| 173 | $ret.="\n"; | ||
| 169 | return($ret); | 174 | return($ret); |
| 170 | } | 175 | } |
| 171 | 176 | ||
diff --git a/src/lib/libcrypto/util/pl/VC-32.pl b/src/lib/libcrypto/util/pl/VC-32.pl index 285990c589..cf689b9feb 100644 --- a/src/lib/libcrypto/util/pl/VC-32.pl +++ b/src/lib/libcrypto/util/pl/VC-32.pl | |||
| @@ -64,7 +64,7 @@ $des_enc_src=''; | |||
| 64 | $bf_enc_obj=''; | 64 | $bf_enc_obj=''; |
| 65 | $bf_enc_src=''; | 65 | $bf_enc_src=''; |
| 66 | 66 | ||
| 67 | if (!$no_asm) | 67 | if (!$no_asm && !$fips) |
| 68 | { | 68 | { |
| 69 | $bn_asm_obj='crypto\bn\asm\bn_win32.obj'; | 69 | $bn_asm_obj='crypto\bn\asm\bn_win32.obj'; |
| 70 | $bn_asm_src='crypto\bn\asm\bn_win32.asm'; | 70 | $bn_asm_src='crypto\bn\asm\bn_win32.asm'; |
| @@ -126,14 +126,19 @@ sub do_lib_rule | |||
| 126 | 126 | ||
| 127 | sub do_link_rule | 127 | sub do_link_rule |
| 128 | { | 128 | { |
| 129 | local($target,$files,$dep_libs,$libs)=@_; | 129 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 130 | local($ret,$_); | 130 | local($ret,$_); |
| 131 | 131 | ||
| 132 | $file =~ s/\//$o/g if $o ne '/'; | 132 | $file =~ s/\//$o/g if $o ne '/'; |
| 133 | $n=&bname($targer); | 133 | $n=&bname($targer); |
| 134 | $ret.="$target: $files $dep_libs\n"; | 134 | $ret.="$target: $files $dep_libs\n"; |
| 135 | $ret.=" \$(LINK) \$(LFLAGS) $efile$target @<<\n"; | 135 | $ret.=" \$(LINK) \$(LFLAGS) $efile$target @<<\n"; |
| 136 | $ret.=" \$(APP_EX_OBJ) $files $libs\n<<\n\n"; | 136 | $ret.=" \$(APP_EX_OBJ) $files $libs\n<<\n"; |
| 137 | if (defined $sha1file) | ||
| 138 | { | ||
| 139 | $ret.=" $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 140 | } | ||
| 141 | $ret.="\n"; | ||
| 137 | return($ret); | 142 | return($ret); |
| 138 | } | 143 | } |
| 139 | 144 | ||
diff --git a/src/lib/libcrypto/util/pl/VC-CE.pl b/src/lib/libcrypto/util/pl/VC-CE.pl index 1805ef9d97..2fd0c4dd32 100644 --- a/src/lib/libcrypto/util/pl/VC-CE.pl +++ b/src/lib/libcrypto/util/pl/VC-CE.pl | |||
| @@ -47,7 +47,7 @@ $shlibp=($shlib)?".dll":".lib"; | |||
| 47 | $lfile='/out:'; | 47 | $lfile='/out:'; |
| 48 | 48 | ||
| 49 | $shlib_ex_obj=""; | 49 | $shlib_ex_obj=""; |
| 50 | #$app_ex_obj="setargv.obj"; | 50 | $app_ex_obj=""; |
| 51 | $app_ex_obj=""; | 51 | $app_ex_obj=""; |
| 52 | 52 | ||
| 53 | $bn_asm_obj=''; | 53 | $bn_asm_obj=''; |
| @@ -97,14 +97,19 @@ sub do_lib_rule | |||
| 97 | 97 | ||
| 98 | sub do_link_rule | 98 | sub do_link_rule |
| 99 | { | 99 | { |
| 100 | local($target,$files,$dep_libs,$libs)=@_; | 100 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 101 | local($ret,$_); | 101 | local($ret,$_); |
| 102 | 102 | ||
| 103 | $file =~ s/\//$o/g if $o ne '/'; | 103 | $file =~ s/\//$o/g if $o ne '/'; |
| 104 | $n=&bname($targer); | 104 | $n=&bname($targer); |
| 105 | $ret.="$target: $files $dep_libs\n"; | 105 | $ret.="$target: $files $dep_libs\n"; |
| 106 | $ret.=" \$(LINK) \$(LFLAGS) $efile$target @<<\n"; | 106 | $ret.=" \$(LINK) \$(LFLAGS) $efile$target @<<\n"; |
| 107 | $ret.=" \$(APP_EX_OBJ) $files $libs\n<<\n\n"; | 107 | $ret.=" \$(APP_EX_OBJ) $files $libs\n<<\n"; |
| 108 | if (defined $sha1file) | ||
| 109 | { | ||
| 110 | $ret.=" $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 111 | } | ||
| 112 | $ret.="\n"; | ||
| 108 | return($ret); | 113 | return($ret); |
| 109 | } | 114 | } |
| 110 | 115 | ||
diff --git a/src/lib/libcrypto/util/pl/linux.pl b/src/lib/libcrypto/util/pl/linux.pl index 8924ed5480..df05c40526 100644 --- a/src/lib/libcrypto/util/pl/linux.pl +++ b/src/lib/libcrypto/util/pl/linux.pl | |||
| @@ -72,13 +72,18 @@ sub do_shlib_rule | |||
| 72 | 72 | ||
| 73 | sub do_link_rule | 73 | sub do_link_rule |
| 74 | { | 74 | { |
| 75 | local($target,$files,$dep_libs,$libs)=@_; | 75 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 76 | local($ret,$_); | 76 | local($ret,$_); |
| 77 | 77 | ||
| 78 | $file =~ s/\//$o/g if $o ne '/'; | 78 | $file =~ s/\//$o/g if $o ne '/'; |
| 79 | $n=&bname($target); | 79 | $n=&bname($target); |
| 80 | $ret.="$target: $files $dep_libs\n"; | 80 | $ret.="$target: $files $dep_libs\n"; |
| 81 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 81 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n"; |
| 82 | if (defined $sha1file) | ||
| 83 | { | ||
| 84 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 85 | } | ||
| 86 | $ret.="\n"; | ||
| 82 | return($ret); | 87 | return($ret); |
| 83 | } | 88 | } |
| 84 | 89 | ||
diff --git a/src/lib/libcrypto/util/pl/ultrix.pl b/src/lib/libcrypto/util/pl/ultrix.pl index ea370c71f9..447b854708 100644 --- a/src/lib/libcrypto/util/pl/ultrix.pl +++ b/src/lib/libcrypto/util/pl/ultrix.pl | |||
| @@ -17,7 +17,7 @@ else | |||
| 17 | 17 | ||
| 18 | $cflags.=" -std1 -DL_ENDIAN"; | 18 | $cflags.=" -std1 -DL_ENDIAN"; |
| 19 | 19 | ||
| 20 | if (!$no_asm) | 20 | if (!$no_asm && !$fips) |
| 21 | { | 21 | { |
| 22 | $bn_asm_obj='$(OBJ_D)/mips1.o'; | 22 | $bn_asm_obj='$(OBJ_D)/mips1.o'; |
| 23 | $bn_asm_src='crypto/bn/asm/mips1.s'; | 23 | $bn_asm_src='crypto/bn/asm/mips1.s'; |
| @@ -25,13 +25,18 @@ if (!$no_asm) | |||
| 25 | 25 | ||
| 26 | sub do_link_rule | 26 | sub do_link_rule |
| 27 | { | 27 | { |
| 28 | local($target,$files,$dep_libs,$libs)=@_; | 28 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 29 | local($ret,$_); | 29 | local($ret,$_); |
| 30 | 30 | ||
| 31 | $file =~ s/\//$o/g if $o ne '/'; | 31 | $file =~ s/\//$o/g if $o ne '/'; |
| 32 | $n=&bname($target); | 32 | $n=&bname($target); |
| 33 | $ret.="$target: $files $dep_libs\n"; | 33 | $ret.="$target: $files $dep_libs\n"; |
| 34 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 34 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n"; |
| 35 | if (defined $sha1file) | ||
| 36 | { | ||
| 37 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 38 | } | ||
| 39 | $ret.="\n"; | ||
| 35 | return($ret); | 40 | return($ret); |
| 36 | } | 41 | } |
| 37 | 42 | ||
diff --git a/src/lib/libcrypto/util/pl/unix.pl b/src/lib/libcrypto/util/pl/unix.pl index 146611ad99..bbd1798a2e 100644 --- a/src/lib/libcrypto/util/pl/unix.pl +++ b/src/lib/libcrypto/util/pl/unix.pl | |||
| @@ -70,13 +70,18 @@ sub do_lib_rule | |||
| 70 | 70 | ||
| 71 | sub do_link_rule | 71 | sub do_link_rule |
| 72 | { | 72 | { |
| 73 | local($target,$files,$dep_libs,$libs)=@_; | 73 | local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_; |
| 74 | local($ret,$_); | 74 | local($ret,$_); |
| 75 | 75 | ||
| 76 | $file =~ s/\//$o/g if $o ne '/'; | 76 | $file =~ s/\//$o/g if $o ne '/'; |
| 77 | $n=&bname($target); | 77 | $n=&bname($target); |
| 78 | $ret.="$target: $files $dep_libs\n"; | 78 | $ret.="$target: $files $dep_libs\n"; |
| 79 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 79 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n"; |
| 80 | if (defined $sha1file) | ||
| 81 | { | ||
| 82 | $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file"; | ||
| 83 | } | ||
| 84 | $ret.="\n"; | ||
| 80 | return($ret); | 85 | return($ret); |
| 81 | } | 86 | } |
| 82 | 87 | ||
diff --git a/src/lib/libcrypto/util/pod2mantest b/src/lib/libcrypto/util/pod2mantest index 412ca8d6d8..384e683df4 100644 --- a/src/lib/libcrypto/util/pod2mantest +++ b/src/lib/libcrypto/util/pod2mantest | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | # This script is used by test/Makefile.ssl to check whether a sane 'pod2man' | 3 | # This script is used by test/Makefile to check whether a sane 'pod2man' |
| 4 | # is installed. | 4 | # is installed. |
| 5 | # ('make install' should not try to run 'pod2man' if it does not exist or if | 5 | # ('make install' should not try to run 'pod2man' if it does not exist or if |
| 6 | # it is a broken 'pod2man' version that is known to cause trouble. if we find | 6 | # it is a broken 'pod2man' version that is known to cause trouble. if we find |
diff --git a/src/lib/libcrypto/util/selftest.pl b/src/lib/libcrypto/util/selftest.pl index 276b81183d..e9d5aa8938 100644 --- a/src/lib/libcrypto/util/selftest.pl +++ b/src/lib/libcrypto/util/selftest.pl | |||
| @@ -34,9 +34,9 @@ foreach $_ (split("\n",$c)) { | |||
| 34 | $platform0=$1 if (/Configuring for (.*)$/); | 34 | $platform0=$1 if (/Configuring for (.*)$/); |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | system "sh config" if (! -f "Makefile.ssl"); | 37 | system "sh config" if (! -f "Makefile"); |
| 38 | 38 | ||
| 39 | if (open(IN,"<Makefile.ssl")) { | 39 | if (open(IN,"<Makefile")) { |
| 40 | while (<IN>) { | 40 | while (<IN>) { |
| 41 | $version=$1 if (/^VERSION=(.*)$/); | 41 | $version=$1 if (/^VERSION=(.*)$/); |
| 42 | $platform=$1 if (/^PLATFORM=(.*)$/); | 42 | $platform=$1 if (/^PLATFORM=(.*)$/); |
diff --git a/src/lib/libcrypto/util/shlib_wrap.sh b/src/lib/libcrypto/util/shlib_wrap.sh new file mode 100755 index 0000000000..dc5f5b1ce4 --- /dev/null +++ b/src/lib/libcrypto/util/shlib_wrap.sh | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | [ $# -ne 0 ] || set -x # debug mode without arguments:-) | ||
| 4 | |||
| 5 | THERE="`echo $0 | sed -e 's|[^/]*$||' 2>/dev/null`.." | ||
| 6 | [ -d "${THERE}" ] || exec "$@" # should never happen... | ||
| 7 | |||
| 8 | # Alternative to this is to parse ${THERE}/Makefile... | ||
| 9 | LIBCRYPTOSO="${THERE}/libcrypto.so" | ||
| 10 | if [ -f "$LIBCRYPTOSO" ]; then | ||
| 11 | while [ -h "$LIBCRYPTOSO" ]; do | ||
| 12 | LIBCRYPTOSO="${THERE}/`ls -l "$LIBCRYPTOSO" | sed -e 's|.*\-> ||'`" | ||
| 13 | done | ||
| 14 | SOSUFFIX=`echo ${LIBCRYPTOSO} | sed -e 's|.*\.so||' 2>/dev/null` | ||
| 15 | LIBSSLSO="${THERE}/libssl.so${SOSUFFIX}" | ||
| 16 | fi | ||
| 17 | |||
| 18 | SYSNAME=`(uname -s) 2>/dev/null`; | ||
| 19 | case "$SYSNAME" in | ||
| 20 | SunOS|IRIX*) | ||
| 21 | # SunOS and IRIX run-time linkers evaluate alternative | ||
| 22 | # variables depending on target ABI... | ||
| 23 | rld_var=LD_LIBRARY_PATH | ||
| 24 | case "`(/usr/bin/file "$LIBCRYPTOSO") 2>/dev/null`" in | ||
| 25 | *ELF\ 64*SPARC*) | ||
| 26 | [ -n "$LD_LIBRARY_PATH_64" ] && rld_var=LD_LIBRARY_PATH_64 | ||
| 27 | ;; | ||
| 28 | *ELF\ N32*MIPS*) | ||
| 29 | [ -n "$LD_LIBRARYN32_PATH" ] && rld_var=LD_LIBRARYN32_PATH | ||
| 30 | _RLDN32_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLDN32_LIST | ||
| 31 | ;; | ||
| 32 | *ELF\ 64*MIPS*) | ||
| 33 | [ -n "$LD_LIBRARY64_PATH" ] && rld_var=LD_LIBRARY64_PATH | ||
| 34 | _RLD64_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD64_LIST | ||
| 35 | ;; | ||
| 36 | esac | ||
| 37 | eval $rld_var=\"${THERE}:'$'$rld_var\"; export $rld_var | ||
| 38 | unset rld_var | ||
| 39 | ;; | ||
| 40 | *) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX | ||
| 41 | DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X | ||
| 42 | SHLIB_PATH="${THERE}:$SHLIB_PATH" # legacy HP-UX | ||
| 43 | LIBPATH="${THERE}:$LIBPATH" # AIX, OS/2 | ||
| 44 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | ||
| 45 | # Even though $PATH is adjusted [for Windows sake], it doesn't | ||
| 46 | # necessarily does the trick. Trouble is that with introduction | ||
| 47 | # of SafeDllSearchMode in XP/2003 it's more appropriate to copy | ||
| 48 | # .DLLs in vicinity of executable, which is done elsewhere... | ||
| 49 | if [ "$OSTYPE" != msdosdjgpp ]; then | ||
| 50 | PATH="${THERE}:$PATH"; export PATH | ||
| 51 | fi | ||
| 52 | ;; | ||
| 53 | esac | ||
| 54 | |||
| 55 | if [ -f "$LIBCRYPTOSO" ]; then | ||
| 56 | # Following three lines are major excuse for isolating them into | ||
| 57 | # this wrapper script. Original reason for setting LD_PRELOAD | ||
| 58 | # was to make it possible to pass 'make test' when user linked | ||
| 59 | # with -rpath pointing to previous version installation. Wrapping | ||
| 60 | # it into a script makes it possible to do so on multi-ABI | ||
| 61 | # platforms. | ||
| 62 | case "$SYSNAME" in | ||
| 63 | *BSD) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD | ||
| 64 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX | ||
| 65 | esac | ||
| 66 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX | ||
| 67 | export LD_PRELOAD _RLD_LIST | ||
| 68 | fi | ||
| 69 | |||
| 70 | exec "$@" | ||
diff --git a/src/lib/libcrypto/x509/Makefile b/src/lib/libcrypto/x509/Makefile new file mode 100644 index 0000000000..5fb774f1c7 --- /dev/null +++ b/src/lib/libcrypto/x509/Makefile | |||
| @@ -0,0 +1,592 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/x509/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= x509 | ||
| 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 README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | ||
| 26 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ | ||
| 27 | x509_set.c x509cset.c x509rset.c x509_err.c \ | ||
| 28 | x509name.c x509_v3.c x509_ext.c x509_att.c \ | ||
| 29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | ||
| 30 | x509_trs.c by_file.c by_dir.c | ||
| 31 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | ||
| 32 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ | ||
| 33 | x509_set.o x509cset.o x509rset.o x509_err.o \ | ||
| 34 | x509name.o x509_v3.o x509_ext.o x509_att.o \ | ||
| 35 | x509type.o x509_lu.o x_all.o x509_txt.o \ | ||
| 36 | x509_trs.o by_file.o by_dir.o | ||
| 37 | |||
| 38 | SRC= $(LIBSRC) | ||
| 39 | |||
| 40 | EXHEADER= x509.h x509_vfy.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 | tests: | ||
| 74 | |||
| 75 | lint: | ||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 77 | |||
| 78 | depend: | ||
| 79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 80 | |||
| 81 | dclean: | ||
| 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 83 | mv -f Makefile.new $(MAKEFILE) | ||
| 84 | |||
| 85 | clean: | ||
| 86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 87 | |||
| 88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 89 | |||
| 90 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 91 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 92 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 93 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 94 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 95 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 96 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 97 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 98 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 99 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 100 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 101 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 102 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 103 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 104 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 105 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 106 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 107 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 108 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 109 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 110 | by_dir.o: ../cryptlib.h by_dir.c | ||
| 111 | by_file.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 112 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 113 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 114 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 115 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 116 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 117 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 118 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 119 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 120 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 121 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 122 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 123 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 124 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 125 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 126 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 127 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 128 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 129 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 130 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 131 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 132 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
| 133 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 134 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 135 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 136 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 137 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 138 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 139 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 140 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 141 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 142 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 143 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 144 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 145 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 146 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 147 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 148 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 149 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 150 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 151 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 152 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 153 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 154 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
| 155 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 156 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 157 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 158 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 159 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 160 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 161 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 162 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 163 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 164 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 165 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 166 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 167 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 168 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 170 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 171 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 172 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 173 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 174 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 175 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 176 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
| 177 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 178 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 179 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 180 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 181 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 182 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 183 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 184 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 185 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 186 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 187 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 188 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 189 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 190 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 191 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 192 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 193 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 194 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 195 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 196 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 197 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
| 198 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 199 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 200 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 201 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 202 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 203 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 204 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 205 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 209 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 210 | x509_def.o: ../../include/openssl/opensslconf.h | ||
| 211 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 212 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 213 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 214 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 215 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 216 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 218 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 219 | x509_def.o: ../cryptlib.h x509_def.c | ||
| 220 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 221 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 222 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 223 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 224 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 225 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 226 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 227 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 228 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 229 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 230 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 231 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 232 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 233 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 234 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 235 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 236 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 237 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 238 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 239 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 240 | x509_err.o: x509_err.c | ||
| 241 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 242 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 243 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 244 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 245 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 246 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 247 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 248 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 249 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 250 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 251 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 252 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 253 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 254 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 255 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 256 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 257 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 258 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 259 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 260 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 261 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 262 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
| 263 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 264 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 265 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 266 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 267 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 268 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 269 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 270 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 271 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 272 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 273 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 274 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 275 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 276 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 277 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 278 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 279 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 280 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 281 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 282 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 283 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 284 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
| 285 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 286 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 287 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 288 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 289 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 290 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 291 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 292 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 293 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 294 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 295 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 296 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 297 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
| 298 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 299 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 300 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 301 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 302 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 303 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 304 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 305 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 306 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
| 307 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 308 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 309 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 310 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 311 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 312 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 313 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 314 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 315 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 316 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 317 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 318 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 319 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
| 320 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 321 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 322 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 323 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 324 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 325 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 326 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 327 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 328 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
| 329 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 330 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 331 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 332 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 333 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 334 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 335 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 336 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 337 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 338 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 339 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 340 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 341 | x509_req.o: ../../include/openssl/opensslconf.h | ||
| 342 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 343 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 344 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 345 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 346 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 347 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 348 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 349 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 350 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 351 | x509_req.o: ../cryptlib.h x509_req.c | ||
| 352 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 353 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 354 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 355 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 356 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 357 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 358 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 359 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 360 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 361 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 362 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 363 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 364 | x509_set.o: ../../include/openssl/opensslconf.h | ||
| 365 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 366 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 367 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 368 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 369 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 370 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 371 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 372 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 373 | x509_set.o: ../cryptlib.h x509_set.c | ||
| 374 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 375 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 376 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 377 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 378 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 379 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 380 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 381 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 382 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 383 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 384 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 385 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 386 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 387 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 388 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 389 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 390 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 391 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 392 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 393 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 394 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 395 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
| 396 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 397 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 398 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 399 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 400 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 401 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 402 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 403 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 404 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 405 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 406 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 407 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 408 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
| 409 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 410 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 411 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 412 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 413 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 414 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 415 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 416 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 417 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
| 418 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 419 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 420 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 421 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 422 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 423 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 424 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 425 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 426 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 427 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 428 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 429 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 430 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 431 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 432 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 433 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 434 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 435 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 436 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 437 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 438 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 439 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
| 440 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 441 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 442 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 443 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 444 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 445 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 446 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 447 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 448 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 449 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 450 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 451 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 452 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 453 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 454 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 455 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 456 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 457 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 458 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 459 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 460 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 461 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
| 462 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 463 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 464 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 465 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 466 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 467 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 468 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 469 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 470 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 471 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 472 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 473 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 474 | x509cset.o: ../../include/openssl/opensslconf.h | ||
| 475 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 476 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 477 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 478 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 479 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 480 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 481 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 482 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 483 | x509cset.o: ../cryptlib.h x509cset.c | ||
| 484 | x509name.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 485 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 486 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 487 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 488 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 489 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 490 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 491 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 492 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 493 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 494 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 495 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 496 | x509name.o: ../../include/openssl/opensslconf.h | ||
| 497 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 498 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 499 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 500 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 501 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 502 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 503 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 504 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 505 | x509name.o: ../cryptlib.h x509name.c | ||
| 506 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 507 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 508 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 509 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 510 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 511 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 512 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 513 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 514 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 515 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 516 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 517 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 518 | x509rset.o: ../../include/openssl/opensslconf.h | ||
| 519 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 520 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 521 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 522 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 523 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 524 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 525 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 526 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 527 | x509rset.o: ../cryptlib.h x509rset.c | ||
| 528 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 529 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 530 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 531 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 532 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 533 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 534 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 535 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 536 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 537 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 538 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 539 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 540 | x509spki.o: ../../include/openssl/opensslconf.h | ||
| 541 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 542 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 543 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 544 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 545 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 546 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 547 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 548 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 549 | x509spki.o: ../cryptlib.h x509spki.c | ||
| 550 | x509type.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 551 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 552 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 553 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 554 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 555 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 556 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 557 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 558 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 559 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 560 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 561 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 562 | x509type.o: ../../include/openssl/opensslconf.h | ||
| 563 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 564 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 565 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 566 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 567 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 568 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 569 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 570 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 571 | x509type.o: ../cryptlib.h x509type.c | ||
| 572 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 573 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 574 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 575 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 576 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 577 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 578 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 579 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 580 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 581 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 582 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 583 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 584 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 585 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 586 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 587 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 588 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 589 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 590 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 591 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 592 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509v3/Makefile b/src/lib/libcrypto/x509v3/Makefile new file mode 100644 index 0000000000..ed2f91cbb3 --- /dev/null +++ b/src/lib/libcrypto/x509v3/Makefile | |||
| @@ -0,0 +1,645 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/x509v3/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= x509v3 | ||
| 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 README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ | ||
| 26 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ | ||
| 27 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ | ||
| 28 | v3_ocsp.c v3_akeya.c v3_pcia.c v3_pci.c | ||
| 29 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ | ||
| 30 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ | ||
| 31 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ | ||
| 32 | v3_ocsp.o v3_akeya.o v3_pcia.o v3_pci.o | ||
| 33 | |||
| 34 | SRC= $(LIBSRC) | ||
| 35 | |||
| 36 | EXHEADER= x509v3.h | ||
| 37 | HEADER= $(EXHEADER) | ||
| 38 | |||
| 39 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 40 | |||
| 41 | top: | ||
| 42 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 43 | |||
| 44 | all: lib | ||
| 45 | |||
| 46 | lib: $(LIBOBJ) | ||
| 47 | $(AR) $(LIB) $(LIBOBJ) | ||
| 48 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 49 | @touch lib | ||
| 50 | |||
| 51 | files: | ||
| 52 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 53 | |||
| 54 | links: | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 58 | |||
| 59 | install: | ||
| 60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 61 | do \ | ||
| 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 64 | done; | ||
| 65 | |||
| 66 | tags: | ||
| 67 | ctags $(SRC) | ||
| 68 | |||
| 69 | tests: | ||
| 70 | |||
| 71 | lint: | ||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 73 | |||
| 74 | depend: | ||
| 75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 76 | |||
| 77 | dclean: | ||
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 79 | mv -f Makefile.new $(MAKEFILE) | ||
| 80 | |||
| 81 | clean: | ||
| 82 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 83 | |||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 85 | |||
| 86 | v3_akey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 87 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 88 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 89 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 90 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 91 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 92 | v3_akey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 93 | v3_akey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 94 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 95 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 96 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 97 | v3_akey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 98 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 99 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 100 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 101 | v3_akey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 102 | v3_akey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 103 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 104 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 105 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 106 | v3_akey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 107 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 108 | v3_akey.o: ../cryptlib.h v3_akey.c | ||
| 109 | v3_akeya.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 110 | v3_akeya.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 111 | v3_akeya.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 112 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 113 | v3_akeya.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 114 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 115 | v3_akeya.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 116 | v3_akeya.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 117 | v3_akeya.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 118 | v3_akeya.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 119 | v3_akeya.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 120 | v3_akeya.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 121 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 122 | v3_akeya.o: ../../include/openssl/opensslconf.h | ||
| 123 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 124 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 125 | v3_akeya.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 126 | v3_akeya.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 127 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 128 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | v3_akeya.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 130 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 131 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | ||
| 132 | v3_alt.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 133 | v3_alt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 134 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 135 | v3_alt.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 136 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 137 | v3_alt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 138 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 139 | v3_alt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 140 | v3_alt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 141 | v3_alt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 142 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 143 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 144 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 145 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 146 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 147 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 148 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 149 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 150 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 151 | v3_alt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 152 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 153 | v3_alt.o: ../cryptlib.h v3_alt.c | ||
| 154 | v3_bcons.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 155 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 156 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 157 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 158 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 159 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 160 | v3_bcons.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 161 | v3_bcons.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 162 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 163 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 164 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 165 | v3_bcons.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | v3_bcons.o: ../../include/openssl/opensslconf.h | ||
| 168 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 170 | v3_bcons.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 171 | v3_bcons.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 172 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 173 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 174 | v3_bcons.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 175 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 176 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c | ||
| 177 | v3_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 178 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 179 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 180 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 181 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 182 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 183 | v3_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 184 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 185 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 186 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 187 | v3_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 188 | v3_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 189 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 190 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 191 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 192 | v3_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 193 | v3_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 194 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 195 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 196 | v3_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 197 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 198 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c | ||
| 199 | v3_conf.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 200 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 201 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 202 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 203 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 204 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 205 | v3_conf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 206 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 207 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 208 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 209 | v3_conf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 210 | v3_conf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 211 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 212 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 213 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 214 | v3_conf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 215 | v3_conf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 216 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 217 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 218 | v3_conf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 219 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 220 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c | ||
| 221 | v3_cpols.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 222 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 223 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 224 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 225 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 226 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 227 | v3_cpols.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 228 | v3_cpols.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 229 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 230 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 231 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 232 | v3_cpols.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 233 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 234 | v3_cpols.o: ../../include/openssl/opensslconf.h | ||
| 235 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 236 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 237 | v3_cpols.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 238 | v3_cpols.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 239 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 240 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 241 | v3_cpols.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 242 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 243 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c | ||
| 244 | v3_crld.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 245 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 246 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 247 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 248 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 249 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 250 | v3_crld.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 251 | v3_crld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 252 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 253 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 254 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 255 | v3_crld.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 256 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 257 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 258 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 259 | v3_crld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 260 | v3_crld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 261 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 262 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 263 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 264 | v3_crld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 265 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 266 | v3_crld.o: ../cryptlib.h v3_crld.c | ||
| 267 | v3_enum.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 268 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 269 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 270 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 271 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 272 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 273 | v3_enum.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 274 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 275 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 276 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 277 | v3_enum.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 278 | v3_enum.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 279 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 280 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 282 | v3_enum.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 283 | v3_enum.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 284 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 285 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 286 | v3_enum.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 287 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 288 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c | ||
| 289 | v3_extku.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 290 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 291 | v3_extku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 292 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 293 | v3_extku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 294 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 295 | v3_extku.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 296 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 297 | v3_extku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 298 | v3_extku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 299 | v3_extku.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 300 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 301 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 302 | v3_extku.o: ../../include/openssl/opensslconf.h | ||
| 303 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 304 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 305 | v3_extku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 306 | v3_extku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 307 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 308 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 309 | v3_extku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 310 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 311 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c | ||
| 312 | v3_genn.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 313 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 314 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 315 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 316 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 317 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 318 | v3_genn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 319 | v3_genn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 320 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 321 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 322 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 323 | v3_genn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 324 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 325 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 326 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 327 | v3_genn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 328 | v3_genn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 329 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 330 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 331 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 332 | v3_genn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 333 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 334 | v3_genn.o: ../cryptlib.h v3_genn.c | ||
| 335 | v3_ia5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 336 | v3_ia5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 337 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 338 | v3_ia5.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 339 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 340 | v3_ia5.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 341 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 342 | v3_ia5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 343 | v3_ia5.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 344 | v3_ia5.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 345 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 346 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 347 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 348 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 349 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 350 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 351 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 352 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 353 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 354 | v3_ia5.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 355 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 356 | v3_ia5.o: ../cryptlib.h v3_ia5.c | ||
| 357 | v3_info.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 358 | v3_info.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 359 | v3_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 360 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 361 | v3_info.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 362 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 363 | v3_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 364 | v3_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 365 | v3_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 366 | v3_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 367 | v3_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 368 | v3_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 369 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 370 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 371 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 372 | v3_info.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 373 | v3_info.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 374 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 375 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 376 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 377 | v3_info.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 378 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 379 | v3_info.o: ../cryptlib.h v3_info.c | ||
| 380 | v3_int.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 381 | v3_int.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 382 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 383 | v3_int.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 384 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 385 | v3_int.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 386 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 387 | v3_int.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 388 | v3_int.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 389 | v3_int.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 390 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 391 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 392 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 393 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 394 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 395 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 396 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 397 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 398 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 399 | v3_int.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 400 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 401 | v3_int.o: ../cryptlib.h v3_int.c | ||
| 402 | v3_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 403 | v3_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 404 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 405 | v3_lib.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 406 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 407 | v3_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 408 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 409 | v3_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 410 | v3_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 411 | v3_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 412 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 413 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 414 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 415 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 416 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 417 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 418 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 419 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 420 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 421 | v3_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 422 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 423 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c | ||
| 424 | v3_ocsp.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 425 | v3_ocsp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 426 | v3_ocsp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 427 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 428 | v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 429 | v3_ocsp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 430 | v3_ocsp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 431 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 432 | v3_ocsp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 433 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 434 | v3_ocsp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 435 | v3_ocsp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 436 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 437 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 438 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 439 | v3_ocsp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 440 | v3_ocsp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 441 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 442 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 443 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 444 | v3_ocsp.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 445 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 446 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | ||
| 447 | v3_pci.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 448 | v3_pci.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 449 | v3_pci.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 450 | v3_pci.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 451 | v3_pci.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 452 | v3_pci.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 453 | v3_pci.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 454 | v3_pci.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 455 | v3_pci.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 456 | v3_pci.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 457 | v3_pci.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 458 | v3_pci.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 459 | v3_pci.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 460 | v3_pci.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 461 | v3_pci.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 462 | v3_pci.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 463 | v3_pci.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 464 | v3_pci.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 465 | v3_pci.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 466 | v3_pci.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 467 | v3_pci.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 468 | v3_pci.o: ../cryptlib.h v3_pci.c | ||
| 469 | v3_pcia.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 470 | v3_pcia.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 471 | v3_pcia.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 472 | v3_pcia.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 473 | v3_pcia.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 474 | v3_pcia.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 475 | v3_pcia.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 476 | v3_pcia.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 477 | v3_pcia.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 478 | v3_pcia.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 479 | v3_pcia.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 480 | v3_pcia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 481 | v3_pcia.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 482 | v3_pcia.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 483 | v3_pcia.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 484 | v3_pcia.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 485 | v3_pcia.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 486 | v3_pcia.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 487 | v3_pcia.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 488 | v3_pcia.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 489 | v3_pcia.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 490 | v3_pcia.o: v3_pcia.c | ||
| 491 | v3_pku.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 492 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 493 | v3_pku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 494 | v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 495 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 496 | v3_pku.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 497 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 498 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 499 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 500 | v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 501 | v3_pku.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 502 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 503 | v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 504 | v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 505 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 506 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 507 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 508 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 509 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 510 | v3_pku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 511 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 512 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c | ||
| 513 | v3_prn.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 514 | v3_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 515 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 516 | v3_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 517 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 518 | v3_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 519 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 520 | v3_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 521 | v3_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 522 | v3_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 523 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 524 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 525 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 526 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 527 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 528 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 529 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 530 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 531 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 532 | v3_prn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 533 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 534 | v3_prn.o: ../cryptlib.h v3_prn.c | ||
| 535 | v3_purp.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 536 | v3_purp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 537 | v3_purp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 538 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 539 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 540 | v3_purp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 541 | v3_purp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 542 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 543 | v3_purp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 544 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 545 | v3_purp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 546 | v3_purp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 547 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 548 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 549 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 550 | v3_purp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 551 | v3_purp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 552 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 553 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 554 | v3_purp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 555 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 556 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | ||
| 557 | v3_skey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 558 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 559 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 560 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 561 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 562 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 563 | v3_skey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 564 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 565 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 566 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 567 | v3_skey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 568 | v3_skey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 569 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 570 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 571 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 572 | v3_skey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 573 | v3_skey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 574 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 575 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 576 | v3_skey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 577 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 578 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c | ||
| 579 | v3_sxnet.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 580 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 581 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 582 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 583 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 584 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 585 | v3_sxnet.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 586 | v3_sxnet.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 587 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 588 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 589 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 590 | v3_sxnet.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 591 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 592 | v3_sxnet.o: ../../include/openssl/opensslconf.h | ||
| 593 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 594 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 595 | v3_sxnet.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 596 | v3_sxnet.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 597 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 598 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 599 | v3_sxnet.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 600 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 601 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c | ||
| 602 | v3_utl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 603 | v3_utl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 604 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 605 | v3_utl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 606 | v3_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 607 | v3_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 608 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 609 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 610 | v3_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 611 | v3_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 612 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 613 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 614 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 615 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 616 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 617 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 618 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 619 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 620 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 621 | v3_utl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 622 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 623 | v3_utl.o: ../cryptlib.h v3_utl.c | ||
| 624 | v3err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 625 | v3err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 626 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 627 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 628 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 629 | v3err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 630 | v3err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 631 | v3err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 632 | v3err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 633 | v3err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 634 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 635 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 636 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 637 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 638 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 639 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 640 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 641 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 642 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 643 | v3err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 644 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 645 | v3err.o: v3err.c | ||
