1999-03-28 23:17:34 +00:00
|
|
|
#
|
1999-08-13 19:21:53 +00:00
|
|
|
# SSLeay/crypto/pkcs12/Makefile
|
1999-03-28 23:17:34 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DIR= pkcs12
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
2001-02-22 14:45:02 +00:00
|
|
|
INCLUDES= -I.. -I$(TOP) -I../../include
|
1999-03-28 23:17:34 +00:00
|
|
|
CFLAG=-g
|
1999-04-29 21:52:08 +00:00
|
|
|
INSTALL_PREFIX=
|
|
|
|
OPENSSLDIR= /usr/local/ssl
|
1999-03-28 23:17:34 +00:00
|
|
|
INSTALLTOP=/usr/local/ssl
|
|
|
|
MAKE= make -f Makefile.ssl
|
2001-02-19 16:06:34 +00:00
|
|
|
MAKEDEPPROG= makedepend
|
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
1999-03-28 23:17:34 +00:00
|
|
|
MAKEFILE= Makefile.ssl
|
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
2000-12-08 19:09:35 +00:00
|
|
|
LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \
|
|
|
|
p12_init.c p12_key.c p12_kiss.c p12_mutl.c\
|
2001-07-26 22:34:45 +00:00
|
|
|
p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c
|
2000-12-08 19:09:35 +00:00
|
|
|
LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \
|
|
|
|
p12_init.o p12_key.o p12_kiss.o p12_mutl.o\
|
2001-07-26 22:34:45 +00:00
|
|
|
p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o
|
1999-03-28 23:17:34 +00:00
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= pkcs12.h
|
|
|
|
HEADER= $(EXHEADER)
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
2001-03-09 14:01:42 +00:00
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
1999-03-28 23:17:34 +00:00
|
|
|
@touch lib
|
|
|
|
|
|
|
|
files:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
1999-03-28 23:17:34 +00:00
|
|
|
|
|
|
|
links:
|
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
1999-04-29 12:46:59 +00:00
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
1999-03-28 23:17:34 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
@for i in $(EXHEADER) ; \
|
|
|
|
do \
|
1999-04-29 21:52:08 +00:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1999-03-28 23:17:34 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
1999-04-27 01:14:46 +00:00
|
|
|
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
1999-03-28 23:17:34 +00:00
|
|
|
|
|
|
|
dclean:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1999-03-28 23:17:34 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-04-01 15:51:21 +00:00
|
|
|
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_add.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_add.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_add.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_add.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_add.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
p12_add.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
|
|
|
p12_add.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
|
|
|
p12_add.o: ../../include/openssl/rc5.h ../../include/openssl/rd_fst.h
|
|
|
|
p12_add.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
|
|
|
p12_add.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
|
|
|
p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
|
|
|
p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
|
|
|
p12_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
|
|
|
p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
|
|
|
p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
|
|
|
p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
|
|
|
p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
|
|
|
p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
|
|
|
p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
|
|
|
p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
|
|
p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
|
|
|
p12_asn.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
|
|
|
p12_asn.o: ../cryptlib.h p12_asn.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_attr.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_attr.o: ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_attr.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_attr.o: ../cryptlib.h p12_attr.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_crpt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_crpt.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_crpt.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_crpt.o: ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_crpt.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_crpt.o: ../cryptlib.h p12_crpt.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_crt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_crt.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_crt.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
p12_crt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
|
|
|
p12_crt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
|
|
|
p12_crt.o: ../../include/openssl/rc5.h ../../include/openssl/rd_fst.h
|
|
|
|
p12_crt.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
|
|
|
p12_crt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
|
|
|
p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
|
|
|
p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_decr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_decr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_decr.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_decr.o: ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_decr.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_decr.o: ../cryptlib.h p12_decr.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_init.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_init.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_init.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_init.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_init.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_init.o: ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_init.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_init.o: ../cryptlib.h p12_init.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_key.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_key.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_key.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_key.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
|
|
|
p12_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
|
|
|
p12_key.o: ../../include/openssl/rc5.h ../../include/openssl/rd_fst.h
|
|
|
|
p12_key.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
|
|
|
p12_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
p12_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
|
|
|
p12_key.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
|
|
|
p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_key.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_kiss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_kiss.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_kiss.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_kiss.o: ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_kiss.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_kiss.o: ../cryptlib.h p12_kiss.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_mutl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_mutl.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_mutl.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h
|
|
|
|
p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
|
|
|
p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
|
|
|
p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
|
|
|
p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
|
|
|
p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/rd_fst.h
|
2000-10-14 20:09:54 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
1999-04-23 22:50:50 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
2000-09-07 08:46:51 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c
|
2001-02-26 10:54:08 +00:00
|
|
|
p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
|
|
p12_npas.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
|
|
|
p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
|
|
|
p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
|
|
|
p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
|
|
|
p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
|
|
|
p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
|
|
|
p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
|
|
|
p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
1999-12-03 03:46:18 +00:00
|
|
|
p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
|
|
|
|
p12_npas.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
|
|
|
|
p12_npas.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
p12_npas.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
2000-11-12 22:32:18 +00:00
|
|
|
p12_npas.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
p12_npas.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
p12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
p12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_npas.o: p12_npas.c
|
2001-02-22 14:45:02 +00:00
|
|
|
p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
|
|
|
p12_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
|
|
p12_utl.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
|
|
|
p12_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
|
|
|
p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
2001-02-19 16:06:34 +00:00
|
|
|
p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
|
|
p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
|
|
p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
|
|
p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
|
|
p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
p12_utl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
|
|
|
p12_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
|
|
|
p12_utl.o: ../../include/openssl/rc5.h ../../include/openssl/rd_fst.h
|
|
|
|
p12_utl.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
|
|
|
p12_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
|
|
|
p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
|
|
|
p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c
|
2001-02-26 10:54:08 +00:00
|
|
|
pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
|
|
pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
|
|
|
pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
|
|
|
pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
|
|
|
pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
|
|
|
pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
|
|
|
pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
|
|
|
pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
|
|
|
pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
|
|
pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
|
|
|
pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
|
|
|
pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
|
|
|
pk12err.o: ../../include/openssl/rd_fst.h ../../include/openssl/rijndael.h
|
|
|
|
pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
|
|
|
pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
|
|
|
pk12err.o: pk12err.c
|