diff options
Diffstat (limited to 'src/lib/libcrypto/asn1')
| -rw-r--r-- | src/lib/libcrypto/asn1/Makefile | 904 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/Makefile.ssl | 1152 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_gentm.c | 246 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_hdr.c | 119 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_meth.c | 84 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_utctm.c | 303 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/asn1.h | 3 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/asn1_err.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/asn1_par.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/asn_mime.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/f.c | 80 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/p8_key.c | 131 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/tasn_dec.c | 44 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/x_cinf.c | 201 |
14 files changed, 3233 insertions, 40 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile new file mode 100644 index 0000000000..94a6885804 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile | |||
| @@ -0,0 +1,904 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/crypto/asn1/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= asn1 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 9 | CFLAG=-g | ||
| 10 | MAKEFILE= Makefile | ||
| 11 | AR= ar r | ||
| 12 | |||
| 13 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 14 | |||
| 15 | GENERAL=Makefile README | ||
| 16 | TEST= | ||
| 17 | APPS= | ||
| 18 | |||
| 19 | LIB=$(TOP)/libcrypto.a | ||
| 20 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | ||
| 21 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
| 22 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ | ||
| 23 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ | ||
| 24 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ | ||
| 25 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
| 26 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | ||
| 27 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | ||
| 28 | f_int.c f_string.c n_pkey.c \ | ||
| 29 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c asn_mime.c \ | ||
| 30 | asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | ||
| 31 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
| 32 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
| 33 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
| 34 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | ||
| 35 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | ||
| 36 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | ||
| 37 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
| 38 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
| 39 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
| 40 | f_int.o f_string.o n_pkey.o \ | ||
| 41 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o asn_mime.o \ | ||
| 42 | asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | ||
| 43 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
| 44 | |||
| 45 | SRC= $(LIBSRC) | ||
| 46 | |||
| 47 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
| 48 | HEADER= $(EXHEADER) | ||
| 49 | |||
| 50 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 51 | |||
| 52 | top: | ||
| 53 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 54 | |||
| 55 | test: test.c | ||
| 56 | cc -g -I../../include -c test.c | ||
| 57 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
| 58 | |||
| 59 | pk: pk.c | ||
| 60 | cc -g -I../../include -c pk.c | ||
| 61 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
| 62 | |||
| 63 | all: lib | ||
| 64 | |||
| 65 | lib: $(LIBOBJ) | ||
| 66 | $(ARX) $(LIB) $(LIBOBJ) | ||
| 67 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 68 | @touch lib | ||
| 69 | |||
| 70 | files: | ||
| 71 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 72 | |||
| 73 | links: | ||
| 74 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 75 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 76 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 77 | |||
| 78 | install: | ||
| 79 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
| 80 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 81 | do \ | ||
| 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 84 | done; | ||
| 85 | |||
| 86 | tags: | ||
| 87 | ctags $(SRC) | ||
| 88 | |||
| 89 | tests: | ||
| 90 | |||
| 91 | lint: | ||
| 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 93 | |||
| 94 | depend: | ||
| 95 | @[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile... | ||
| 96 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 97 | |||
| 98 | dclean: | ||
| 99 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 100 | mv -f Makefile.new $(MAKEFILE) | ||
| 101 | |||
| 102 | clean: | ||
| 103 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 104 | |||
| 105 | |||
| 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 107 | |||
| 108 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 109 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 110 | a_bitstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 111 | a_bitstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 112 | a_bitstr.o: ../../include/openssl/opensslconf.h | ||
| 113 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 114 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 115 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 116 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 118 | a_bool.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 119 | a_bool.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 120 | a_bool.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 121 | a_bool.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | a_bool.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 123 | a_bool.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bool.c | ||
| 124 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 125 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 126 | a_bytes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 127 | a_bytes.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 128 | a_bytes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 129 | a_bytes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 130 | a_bytes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 131 | a_bytes.o: ../cryptlib.h a_bytes.c | ||
| 132 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 133 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 134 | a_d2i_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 135 | a_d2i_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 136 | a_d2i_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 137 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 138 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 140 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 141 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 142 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 143 | a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 144 | a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 145 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 146 | a_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 147 | a_digest.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 148 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 149 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 150 | a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 151 | a_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 152 | a_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_digest.c | ||
| 153 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 154 | a_dup.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 155 | a_dup.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 156 | a_dup.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | a_dup.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 158 | a_dup.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 159 | a_dup.o: ../../include/openssl/symhacks.h ../cryptlib.h a_dup.c | ||
| 160 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 161 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 162 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 163 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 164 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 165 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 166 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 167 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 168 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 169 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 170 | a_gentm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 171 | a_gentm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 172 | a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 173 | a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 174 | a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 175 | a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c | ||
| 176 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 177 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 178 | a_hdr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 179 | a_hdr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 180 | a_hdr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 181 | a_hdr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 182 | a_hdr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 183 | a_hdr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_hdr.c | ||
| 184 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 185 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 186 | a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 187 | a_i2d_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 188 | a_i2d_fp.o: ../../include/openssl/opensslconf.h | ||
| 189 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 190 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 191 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 192 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 193 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 194 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 195 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 196 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 197 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 198 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 199 | a_int.o: ../cryptlib.h a_int.c | ||
| 200 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 201 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 202 | a_mbstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 203 | a_mbstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 204 | a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 205 | a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 206 | a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 207 | a_mbstr.o: ../cryptlib.h a_mbstr.c | ||
| 208 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 209 | a_meth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 210 | a_meth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 211 | a_meth.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 212 | a_meth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 213 | a_meth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 214 | a_meth.o: ../../include/openssl/symhacks.h ../cryptlib.h a_meth.c | ||
| 215 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 216 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 217 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 218 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 219 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 220 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 221 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 222 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 223 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 224 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 225 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 226 | a_octet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 227 | a_octet.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 228 | a_octet.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 229 | a_octet.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 230 | a_octet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 231 | a_octet.o: ../cryptlib.h a_octet.c | ||
| 232 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 233 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 234 | a_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 235 | a_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 236 | a_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 237 | a_print.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 238 | a_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 239 | a_print.o: ../cryptlib.h a_print.c | ||
| 240 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 241 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 242 | a_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 243 | a_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 244 | a_set.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 245 | a_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 246 | a_set.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 247 | a_set.o: ../../include/openssl/symhacks.h ../cryptlib.h a_set.c | ||
| 248 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 249 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 250 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 251 | a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 252 | a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 253 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 254 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 255 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 256 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 257 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 258 | a_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 259 | a_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 260 | a_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_sign.c | ||
| 261 | a_strex.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 262 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 263 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 264 | a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 265 | a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 266 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 267 | a_strex.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 268 | a_strex.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 269 | a_strex.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 270 | a_strex.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 271 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 272 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 273 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
| 274 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 275 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 276 | a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 277 | a_strnid.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 278 | a_strnid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 279 | a_strnid.o: ../../include/openssl/opensslconf.h | ||
| 280 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 282 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 283 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 284 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 285 | a_time.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 286 | a_time.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 287 | a_time.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 288 | a_time.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 289 | a_time.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 290 | a_time.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_time.c | ||
| 291 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 292 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 293 | a_type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 294 | a_type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 295 | a_type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 296 | a_type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 297 | a_type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 298 | a_type.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 299 | a_type.o: ../../include/openssl/symhacks.h ../cryptlib.h a_type.c | ||
| 300 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 301 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 302 | a_utctm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 303 | a_utctm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 304 | a_utctm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 305 | a_utctm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 306 | a_utctm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 307 | a_utctm.o: ../cryptlib.h ../o_time.h a_utctm.c | ||
| 308 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 309 | a_utf8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 310 | a_utf8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 311 | a_utf8.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 312 | a_utf8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 313 | a_utf8.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 314 | a_utf8.o: ../../include/openssl/symhacks.h ../cryptlib.h a_utf8.c | ||
| 315 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 316 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 317 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 318 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 319 | a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 320 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 321 | a_verify.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 322 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 323 | a_verify.o: ../../include/openssl/opensslconf.h | ||
| 324 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 325 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 326 | a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 327 | a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 328 | a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c | ||
| 329 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 330 | asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 331 | asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 332 | asn1_err.o: ../../include/openssl/opensslconf.h | ||
| 333 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 334 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 335 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 336 | asn1_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 337 | asn1_gen.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 338 | asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 339 | asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 340 | asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 341 | asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 342 | asn1_gen.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 343 | asn1_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 344 | asn1_gen.o: ../../include/openssl/opensslconf.h | ||
| 345 | asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 346 | asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 347 | asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 348 | asn1_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 349 | asn1_gen.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 350 | asn1_gen.o: ../cryptlib.h asn1_gen.c | ||
| 351 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 352 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 353 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 354 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 355 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 356 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 357 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 358 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 359 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 360 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 361 | asn1_par.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 362 | asn1_par.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 363 | asn1_par.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 364 | asn1_par.o: ../../include/openssl/opensslconf.h | ||
| 365 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 366 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 367 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 368 | asn_mime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 369 | asn_mime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 370 | asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 371 | asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 372 | asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 373 | asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 374 | asn_mime.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 375 | asn_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 376 | asn_mime.o: ../../include/openssl/opensslconf.h | ||
| 377 | asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 378 | asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 379 | asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 380 | asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 381 | asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 382 | asn_mime.o: ../cryptlib.h asn_mime.c | ||
| 383 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 384 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 385 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 386 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 387 | asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 388 | asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 389 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 390 | asn_moid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 391 | asn_moid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 392 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 393 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 394 | asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 395 | asn_moid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 396 | asn_moid.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn_moid.c | ||
| 397 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 398 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 399 | asn_pack.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 400 | asn_pack.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 401 | asn_pack.o: ../../include/openssl/opensslconf.h | ||
| 402 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 403 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 404 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
| 405 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 406 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 407 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 408 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 409 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 410 | d2i_pr.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 411 | d2i_pr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 412 | d2i_pr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 413 | d2i_pr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 414 | d2i_pr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 415 | d2i_pr.o: ../../include/openssl/symhacks.h ../cryptlib.h d2i_pr.c | ||
| 416 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 417 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 418 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 419 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 420 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 421 | d2i_pu.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 422 | d2i_pu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 423 | d2i_pu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 424 | d2i_pu.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 425 | d2i_pu.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 426 | d2i_pu.o: ../../include/openssl/symhacks.h ../cryptlib.h d2i_pu.c | ||
| 427 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 428 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 429 | evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 430 | evp_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 431 | evp_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 432 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 433 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 434 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 435 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 436 | f_enum.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 437 | f_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 438 | f_enum.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 439 | f_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 440 | f_enum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 441 | f_enum.o: ../../include/openssl/symhacks.h ../cryptlib.h f_enum.c | ||
| 442 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 443 | f_int.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 444 | f_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 445 | f_int.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 446 | f_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 447 | f_int.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 448 | f_int.o: ../../include/openssl/symhacks.h ../cryptlib.h f_int.c | ||
| 449 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 450 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 451 | f_string.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 452 | f_string.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 453 | f_string.o: ../../include/openssl/opensslconf.h | ||
| 454 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 455 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 456 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 457 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 458 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 459 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 460 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 461 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 462 | i2d_pr.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 463 | i2d_pr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 464 | i2d_pr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 465 | i2d_pr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 466 | i2d_pr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 467 | i2d_pr.o: ../../include/openssl/symhacks.h ../cryptlib.h i2d_pr.c | ||
| 468 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 469 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 470 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 471 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 472 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 473 | i2d_pu.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 474 | i2d_pu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 475 | i2d_pu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 476 | i2d_pu.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 477 | i2d_pu.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 478 | i2d_pu.o: ../../include/openssl/symhacks.h ../cryptlib.h i2d_pu.c | ||
| 479 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 480 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 481 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 482 | n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 483 | n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 484 | n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 485 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 486 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 487 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 488 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 489 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 490 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 491 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 492 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 493 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
| 494 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 495 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 496 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 497 | nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 498 | nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 499 | nsseq.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 500 | nsseq.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 501 | nsseq.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 502 | nsseq.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 503 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 504 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 505 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
| 506 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 507 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 508 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 509 | p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 510 | p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 511 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 512 | p5_pbe.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 513 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 514 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 515 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 516 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 517 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 518 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 519 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | ||
| 520 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 521 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 522 | p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 523 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 524 | p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 525 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 526 | p5_pbev2.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 527 | p5_pbev2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 528 | p5_pbev2.o: ../../include/openssl/opensslconf.h | ||
| 529 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 530 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 531 | p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 532 | p5_pbev2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 533 | p5_pbev2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 534 | p5_pbev2.o: ../cryptlib.h p5_pbev2.c | ||
| 535 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 536 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 537 | p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 538 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 539 | p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 540 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 541 | p8_pkey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 542 | p8_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 543 | p8_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 544 | p8_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 545 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 546 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 547 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 548 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
| 549 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 550 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 551 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 552 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 553 | t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 554 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 555 | t_bitst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 556 | t_bitst.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 557 | t_bitst.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 558 | t_bitst.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 559 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 560 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 561 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 562 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
| 563 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 564 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 565 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 566 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 567 | t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 568 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 569 | t_crl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 570 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 571 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 572 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 573 | t_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 574 | t_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 575 | t_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 576 | t_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h t_crl.c | ||
| 577 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 578 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 579 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 580 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 581 | t_pkey.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
| 582 | t_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 583 | t_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 584 | t_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 585 | t_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 586 | t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 587 | t_pkey.o: ../cryptlib.h t_pkey.c | ||
| 588 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 589 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 590 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 591 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 592 | t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 593 | t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 594 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 595 | t_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 596 | t_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 597 | t_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 598 | t_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 599 | t_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 600 | t_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 601 | t_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 602 | t_req.o: ../../include/openssl/x509v3.h ../cryptlib.h t_req.c | ||
| 603 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 604 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 605 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 606 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 607 | t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 608 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 609 | t_spki.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 610 | t_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 611 | t_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 612 | t_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 613 | t_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 614 | t_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 615 | t_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 616 | t_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_spki.c | ||
| 617 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 618 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 619 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 620 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 621 | t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 622 | t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 623 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 624 | t_x509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 625 | t_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 626 | t_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 627 | t_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 628 | t_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 629 | t_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 630 | t_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 631 | t_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h t_x509.c | ||
| 632 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 633 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 634 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 635 | t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 636 | t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 637 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 638 | t_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 639 | t_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 640 | t_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 641 | t_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 642 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 643 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 644 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
| 645 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 646 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 647 | tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 648 | tasn_dec.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 649 | tasn_dec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 650 | tasn_dec.o: ../../include/openssl/opensslconf.h | ||
| 651 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 652 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 653 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 654 | tasn_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 655 | tasn_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 656 | tasn_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 657 | tasn_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 658 | tasn_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 659 | tasn_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 660 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 661 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 662 | tasn_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h tasn_enc.c | ||
| 663 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 664 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 665 | tasn_fre.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h | ||
| 666 | tasn_fre.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 667 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 668 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 669 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 670 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 671 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 672 | tasn_new.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 673 | tasn_new.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 674 | tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 675 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 676 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 677 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 678 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 679 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 680 | tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 681 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 682 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 683 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 684 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 685 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 686 | tasn_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 687 | tasn_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 688 | tasn_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 689 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 690 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 691 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 692 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 693 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 694 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 695 | x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 696 | x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 697 | x_algor.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 698 | x_algor.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 699 | x_algor.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 700 | x_algor.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 701 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 702 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 703 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 704 | x_algor.o: x_algor.c | ||
| 705 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 706 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 707 | x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 708 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 709 | x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 710 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 711 | x_attrib.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 712 | x_attrib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 713 | x_attrib.o: ../../include/openssl/opensslconf.h | ||
| 714 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 715 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 716 | x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 717 | x_attrib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 718 | x_attrib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_attrib.c | ||
| 719 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 720 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 721 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 722 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 723 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 724 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 725 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 726 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 727 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 728 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 729 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 730 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 731 | x_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 732 | x_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 733 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 734 | x_crl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 735 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 736 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 737 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 738 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 739 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 740 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 741 | x_crl.o: ../cryptlib.h x_crl.c | ||
| 742 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 743 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 744 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 745 | x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 746 | x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 747 | x_exten.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 748 | x_exten.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 749 | x_exten.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 750 | x_exten.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 751 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 752 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 753 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 754 | x_exten.o: x_exten.c | ||
| 755 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 756 | x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 757 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 758 | x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 759 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 760 | x_info.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 761 | x_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 762 | x_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 763 | x_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 764 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 765 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 766 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 767 | x_info.o: ../cryptlib.h x_info.c | ||
| 768 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 769 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 770 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 771 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 772 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 773 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 774 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 775 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 776 | x_long.o: ../cryptlib.h x_long.c | ||
| 777 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 778 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 779 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 780 | x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 781 | x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 782 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 783 | x_name.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 784 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 785 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 786 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 787 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 788 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 789 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 790 | x_name.o: ../cryptlib.h x_name.c | ||
| 791 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 792 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 793 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 794 | x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 795 | x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 796 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 797 | x_pkey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 798 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 799 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 800 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 801 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 802 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 803 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 804 | x_pkey.o: ../cryptlib.h x_pkey.c | ||
| 805 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 806 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 807 | x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 808 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 809 | x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 810 | x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 811 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 812 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 813 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 814 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 815 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 816 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 817 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 818 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 819 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
| 820 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 821 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 822 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 823 | x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 824 | x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 825 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 826 | x_req.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 827 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 828 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 829 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 830 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 831 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 832 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 833 | x_req.o: ../cryptlib.h x_req.c | ||
| 834 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 835 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 836 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 837 | x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 838 | x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 839 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 840 | x_sig.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 841 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 842 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 843 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 844 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 845 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 846 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 847 | x_sig.o: ../cryptlib.h x_sig.c | ||
| 848 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 849 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 850 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 851 | x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 852 | x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 853 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 854 | x_spki.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 855 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 856 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 857 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 858 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 859 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 860 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 861 | x_spki.o: ../cryptlib.h x_spki.c | ||
| 862 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 863 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 864 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 865 | x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 866 | x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 867 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 868 | x_val.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 869 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 870 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 871 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 872 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 873 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 874 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 875 | x_val.o: ../cryptlib.h x_val.c | ||
| 876 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 877 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 878 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 879 | x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 880 | x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 881 | x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 882 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 883 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 884 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 885 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 886 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 887 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 888 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 889 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 890 | x_x509.o: ../cryptlib.h x_x509.c | ||
| 891 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 892 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 893 | x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 894 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 895 | x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 896 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 897 | x_x509a.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
| 898 | x_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 899 | x_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 900 | x_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 901 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 902 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 903 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 904 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl new file mode 100644 index 0000000000..cb45194d48 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
| @@ -0,0 +1,1152 @@ | |||
| 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 | MAKE= make -f Makefile.ssl | ||
| 14 | MAKEDEPPROG= makedepend | ||
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 16 | MAKEFILE= Makefile.ssl | ||
| 17 | AR= ar r | ||
| 18 | |||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 20 | |||
| 21 | GENERAL=Makefile README | ||
| 22 | TEST= | ||
| 23 | APPS= | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | ||
| 27 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
| 28 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ | ||
| 29 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ | ||
| 30 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ | ||
| 31 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
| 32 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | ||
| 33 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | ||
| 34 | f_int.c f_string.c n_pkey.c \ | ||
| 35 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ | ||
| 36 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | ||
| 37 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
| 38 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
| 39 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
| 40 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | ||
| 41 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | ||
| 42 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | ||
| 43 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
| 44 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
| 45 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
| 46 | f_int.o f_string.o n_pkey.o \ | ||
| 47 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ | ||
| 48 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | ||
| 49 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
| 50 | |||
| 51 | SRC= $(LIBSRC) | ||
| 52 | |||
| 53 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
| 54 | HEADER= $(EXHEADER) | ||
| 55 | |||
| 56 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 57 | |||
| 58 | top: | ||
| 59 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 60 | |||
| 61 | test: test.c | ||
| 62 | cc -g -I../../include -c test.c | ||
| 63 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
| 64 | |||
| 65 | pk: pk.c | ||
| 66 | cc -g -I../../include -c pk.c | ||
| 67 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
| 68 | |||
| 69 | all: lib | ||
| 70 | |||
| 71 | lib: $(LIBOBJ) | ||
| 72 | $(AR) $(LIB) $(LIBOBJ) | ||
| 73 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 74 | @touch lib | ||
| 75 | |||
| 76 | files: | ||
| 77 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 78 | |||
| 79 | links: | ||
| 80 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
| 81 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 82 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 83 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 84 | |||
| 85 | install: | ||
| 86 | @for i in $(EXHEADER) ; \ | ||
| 87 | do \ | ||
| 88 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 89 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 90 | done; | ||
| 91 | |||
| 92 | tags: | ||
| 93 | ctags $(SRC) | ||
| 94 | |||
| 95 | tests: | ||
| 96 | |||
| 97 | lint: | ||
| 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 99 | |||
| 100 | depend: | ||
| 101 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 102 | |||
| 103 | dclean: | ||
| 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 105 | mv -f Makefile.new $(MAKEFILE) | ||
| 106 | |||
| 107 | clean: | ||
| 108 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 109 | |||
| 110 | |||
| 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 112 | |||
| 113 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 118 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 119 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 120 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 121 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 122 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 123 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 124 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 125 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 126 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 127 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 128 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | a_bool.o: ../cryptlib.h a_bool.c | ||
| 130 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 131 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 132 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 133 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 134 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 135 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 137 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
| 138 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 140 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 141 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 142 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 143 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
| 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 147 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 148 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 149 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 150 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 151 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 152 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 153 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 154 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 155 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 156 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 157 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 158 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 159 | a_digest.o: ../../include/openssl/opensslconf.h | ||
| 160 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 161 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 162 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 163 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 164 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 165 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 166 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 167 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 168 | a_digest.o: ../cryptlib.h a_digest.c | ||
| 169 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 170 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 171 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 172 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 173 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 174 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 175 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 176 | a_dup.o: ../cryptlib.h a_dup.c | ||
| 177 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 178 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 179 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 180 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 181 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 182 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 183 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 184 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 185 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 186 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 187 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 188 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 189 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 190 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 191 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 192 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
| 193 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 194 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 195 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 196 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 197 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 198 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 199 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 200 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 201 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
| 202 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 203 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 204 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 205 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 206 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 207 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 208 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 209 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 210 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 211 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 212 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 213 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 214 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 215 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 216 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | a_int.o: ../cryptlib.h a_int.c | ||
| 218 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 219 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 220 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 221 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 222 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 223 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 224 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 225 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
| 226 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 227 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 228 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 229 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 230 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 231 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 232 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 233 | a_meth.o: ../cryptlib.h a_meth.c | ||
| 234 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 235 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 236 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 237 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 238 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 239 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 240 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 241 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 243 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 244 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 245 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 246 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 247 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 248 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 249 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 250 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
| 251 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 252 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 253 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 254 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 255 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 256 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 257 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 258 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
| 259 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 260 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 261 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 262 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 263 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 264 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 265 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 266 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 267 | a_set.o: ../cryptlib.h a_set.c | ||
| 268 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 269 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 270 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 271 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 272 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 273 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 274 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 275 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 276 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 277 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 278 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 279 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 280 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 282 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 283 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 284 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 285 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 286 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 287 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 288 | a_sign.o: ../cryptlib.h a_sign.c | ||
| 289 | a_strex.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 290 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 291 | a_strex.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 292 | a_strex.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 293 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 294 | a_strex.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 295 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 296 | a_strex.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 297 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 298 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 299 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 300 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 301 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 302 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 303 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 304 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 305 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 306 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 307 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 308 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 309 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
| 310 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 311 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 312 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 313 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 314 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 315 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 316 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 317 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 318 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 319 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 320 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 321 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 322 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 323 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 324 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 325 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 326 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 327 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
| 328 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 329 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 330 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 331 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 332 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 333 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 334 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 335 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 336 | a_type.o: ../cryptlib.h a_type.c | ||
| 337 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 338 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 339 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 340 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 341 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 342 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 343 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 344 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
| 345 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 346 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 347 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 348 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 349 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 350 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 351 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 352 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
| 353 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 354 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 355 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 356 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 357 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 358 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 359 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 360 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 361 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 362 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 363 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 364 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 365 | a_verify.o: ../../include/openssl/opensslconf.h | ||
| 366 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 367 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 368 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 369 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 370 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 371 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 372 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 373 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 374 | a_verify.o: ../cryptlib.h a_verify.c | ||
| 375 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 376 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 377 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 378 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 379 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 380 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 381 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 382 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 383 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 384 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 385 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 386 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 387 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
| 388 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 389 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 390 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 391 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 392 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 393 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 394 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 395 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 396 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 397 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 398 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 399 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 400 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 401 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 402 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 403 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 404 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 405 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 406 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 407 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 408 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 409 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 410 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 411 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 412 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 413 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
| 414 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 415 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 416 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 417 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 418 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 419 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 420 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 421 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 422 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
| 423 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 424 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 425 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 426 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 427 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 428 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 429 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 430 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
| 431 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 432 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 433 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 434 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 435 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 436 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 437 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 438 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 439 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 440 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 441 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 442 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 443 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 444 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 445 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 446 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 447 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 448 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 449 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c | ||
| 450 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 451 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 452 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 453 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 454 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 455 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 456 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 457 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 458 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 459 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 460 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 461 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 462 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 463 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 464 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 465 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 466 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 467 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 468 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
| 469 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 470 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 471 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 472 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 473 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 474 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
| 475 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 476 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 477 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 478 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 479 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 480 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 481 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 482 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 483 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 484 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 485 | f_enum.o: ../cryptlib.h f_enum.c | ||
| 486 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 487 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 488 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 489 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 490 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 491 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 492 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 493 | f_int.o: ../cryptlib.h f_int.c | ||
| 494 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 495 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 496 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 497 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 498 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 499 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 500 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 501 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 502 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 503 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 504 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 505 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 506 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 507 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 508 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 509 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 510 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 511 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 512 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 513 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 514 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 515 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 516 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 517 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 518 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 519 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 520 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c | ||
| 521 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 522 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 523 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 524 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 525 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 526 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 527 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 528 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 529 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 530 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 531 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 532 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 533 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 534 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 535 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 536 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 537 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 538 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 539 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c | ||
| 540 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 541 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 542 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 543 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 544 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 545 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 546 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 547 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 548 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 549 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 550 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 551 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 552 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 553 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 554 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 555 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 556 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 557 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 558 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 559 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 560 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 561 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
| 562 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 563 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 564 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 565 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 566 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 567 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 568 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 569 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 570 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 571 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 572 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 573 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 574 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 575 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 576 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 577 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 578 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 579 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 580 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 581 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
| 582 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 583 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 584 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 585 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 586 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 587 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 588 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 589 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 590 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 591 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 592 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 593 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 594 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 595 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 596 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 597 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 598 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 599 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 600 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 601 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 602 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 603 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
| 604 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 605 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 606 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 607 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 608 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 609 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 610 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 611 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 612 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 613 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 614 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 615 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 616 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 617 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 618 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 619 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 620 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 621 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 622 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 623 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 624 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 625 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
| 626 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 627 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 628 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 629 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 630 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 631 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 632 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 633 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 634 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 635 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 636 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 637 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 638 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 639 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 640 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 641 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 642 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 643 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 644 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 645 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 646 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 647 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
| 648 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 649 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 650 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 651 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 652 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 653 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 654 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 655 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 656 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 657 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 658 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 659 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 660 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 661 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 662 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 663 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 664 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 665 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 666 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 667 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 668 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 669 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
| 670 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 671 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 672 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 673 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 674 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 675 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 676 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 677 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 678 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 679 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 680 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 681 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 682 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 683 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 684 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 685 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 686 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 687 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 688 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 689 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 690 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 691 | t_crl.o: ../cryptlib.h t_crl.c | ||
| 692 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 693 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 694 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 695 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 696 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 697 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 698 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 699 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 700 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
| 701 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 702 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 703 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 704 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 705 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 706 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 707 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 708 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 709 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 710 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 711 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 712 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 713 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 714 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 715 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 716 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 717 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 718 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 719 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 720 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 721 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 722 | t_req.o: ../cryptlib.h t_req.c | ||
| 723 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 724 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 725 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 726 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 727 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 728 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 729 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 730 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 731 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 732 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 733 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 734 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 735 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 736 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 737 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 738 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 739 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 740 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 741 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 742 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 743 | t_spki.o: ../cryptlib.h t_spki.c | ||
| 744 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 745 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 746 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 747 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
| 748 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 749 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 750 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 751 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 752 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 753 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 754 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 755 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 756 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 757 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 758 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 759 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 760 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 761 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 762 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 763 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 764 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 765 | t_x509.o: ../cryptlib.h t_x509.c | ||
| 766 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 767 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 768 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 769 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 770 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 771 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 772 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 773 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 774 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 775 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 776 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 777 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 778 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 779 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 780 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 781 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 782 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 783 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 784 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 785 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 786 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
| 787 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 788 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 789 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 790 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 791 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 792 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 793 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 794 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 795 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 796 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 797 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 798 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 799 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 800 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
| 801 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 802 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 803 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
| 804 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 805 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 806 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 807 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 808 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
| 809 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 810 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 811 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 812 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 813 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 814 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 815 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 816 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 817 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
| 818 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 819 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 820 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 821 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 822 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 823 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 824 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
| 825 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 826 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 827 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 828 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 829 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 830 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 831 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 832 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 833 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
| 834 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 835 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 836 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 837 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 838 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 839 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 840 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 841 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 842 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 843 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 844 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 845 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 846 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 847 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 848 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 849 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 850 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 851 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 852 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 853 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 854 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 855 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 856 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 857 | x_algor.o: x_algor.c | ||
| 858 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 859 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 860 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 861 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 862 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 863 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 864 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 865 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 866 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 867 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 868 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 869 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 870 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 871 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 872 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 873 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 874 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 875 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 876 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 877 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 878 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 879 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
| 880 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 881 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 882 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 883 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 884 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 885 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 886 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 887 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 888 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 889 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 890 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 891 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 892 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 893 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 894 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 895 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 896 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 897 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 898 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 899 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 900 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 901 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 902 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 903 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 904 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 905 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 906 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 907 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 908 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 909 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c | ||
| 910 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 911 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 912 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 913 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 914 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 915 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 916 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 917 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 918 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 919 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 920 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 921 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 922 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 923 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 924 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 925 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 926 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 927 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 928 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 929 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 930 | x_exten.o: x_exten.c | ||
| 931 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 932 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 933 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 934 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 935 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 936 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 937 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 938 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 939 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 940 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 941 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 942 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 943 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 944 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 945 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 946 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 947 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 948 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 949 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 950 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 951 | x_info.o: ../cryptlib.h x_info.c | ||
| 952 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 953 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 954 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 955 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 956 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 957 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 958 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 959 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 960 | x_long.o: ../cryptlib.h x_long.c | ||
| 961 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 962 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 963 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 964 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 965 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 966 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 967 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 968 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 969 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 970 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 971 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 972 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 973 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 974 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 975 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 976 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 977 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 978 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 979 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 980 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 981 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
| 982 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 983 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 984 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 985 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 986 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 987 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 988 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 989 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 990 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 991 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 992 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 993 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 994 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 995 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 996 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 997 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 998 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 999 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1000 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1001 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1002 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
| 1003 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1004 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1005 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1006 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1007 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1008 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1009 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1010 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1011 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1012 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1013 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1014 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1015 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1016 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1017 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1018 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1019 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1020 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1021 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1022 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1023 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1024 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
| 1025 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1026 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1027 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1028 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1029 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1030 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1031 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1032 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1033 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1034 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1035 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1036 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1037 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1038 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1039 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1040 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1041 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1042 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1043 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1044 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1045 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
| 1046 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1047 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1048 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1049 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1050 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1051 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1052 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1053 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1054 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1055 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1056 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1057 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1058 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1059 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1060 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1061 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1062 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1063 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1064 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1065 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1066 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
| 1067 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1068 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1069 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1070 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1071 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1072 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1073 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1074 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1075 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1076 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1077 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1078 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1079 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1080 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1081 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1082 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1083 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1084 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1085 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1086 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1087 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
| 1088 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1089 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1090 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1091 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1092 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1093 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 1094 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1095 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1096 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1097 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1098 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 1099 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 1100 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 1101 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 1102 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1103 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 1104 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 1105 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1106 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1107 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1108 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
| 1109 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 1110 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 1111 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 1112 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 1113 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 1114 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1115 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1116 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1117 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1118 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1119 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1120 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1121 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1122 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1123 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1124 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1125 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1126 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1127 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1128 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1129 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1130 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
| 1131 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1132 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1133 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 1134 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 1135 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 1136 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 1137 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 1138 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 1139 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1140 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1141 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1142 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 1143 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 1144 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 1145 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 1146 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1147 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 1148 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 1149 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 1150 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1151 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1152 | 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 new file mode 100644 index 0000000000..def79062a5 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_gentm.c | |||
| @@ -0,0 +1,246 @@ | |||
| 1 | /* crypto/asn1/a_gentm.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | /* GENERALIZEDTIME implementation, written by Steve Henson. Based on UTCTIME */ | ||
| 60 | |||
| 61 | #include <stdio.h> | ||
| 62 | #include <time.h> | ||
| 63 | #include "cryptlib.h" | ||
| 64 | #include "o_time.h" | ||
| 65 | #include <openssl/asn1.h> | ||
| 66 | |||
| 67 | #if 0 | ||
| 68 | |||
| 69 | int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp) | ||
| 70 | { | ||
| 71 | #ifdef CHARSET_EBCDIC | ||
| 72 | /* KLUDGE! We convert to ascii before writing DER */ | ||
| 73 | int len; | ||
| 74 | char tmp[24]; | ||
| 75 | ASN1_STRING tmpstr = *(ASN1_STRING *)a; | ||
| 76 | |||
| 77 | len = tmpstr.length; | ||
| 78 | ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len); | ||
| 79 | tmpstr.data = tmp; | ||
| 80 | |||
| 81 | a = (ASN1_GENERALIZEDTIME *) &tmpstr; | ||
| 82 | #endif | ||
| 83 | return(i2d_ASN1_bytes((ASN1_STRING *)a,pp, | ||
| 84 | V_ASN1_GENERALIZEDTIME,V_ASN1_UNIVERSAL)); | ||
| 85 | } | ||
| 86 | |||
| 87 | |||
| 88 | ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME **a, | ||
| 89 | unsigned char **pp, long length) | ||
| 90 | { | ||
| 91 | ASN1_GENERALIZEDTIME *ret=NULL; | ||
| 92 | |||
| 93 | ret=(ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length, | ||
| 94 | V_ASN1_GENERALIZEDTIME,V_ASN1_UNIVERSAL); | ||
| 95 | if (ret == NULL) | ||
| 96 | { | ||
| 97 | ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME,ERR_R_NESTED_ASN1_ERROR); | ||
| 98 | return(NULL); | ||
| 99 | } | ||
| 100 | #ifdef CHARSET_EBCDIC | ||
| 101 | ascii2ebcdic(ret->data, ret->data, ret->length); | ||
| 102 | #endif | ||
| 103 | if (!ASN1_GENERALIZEDTIME_check(ret)) | ||
| 104 | { | ||
| 105 | ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME,ASN1_R_INVALID_TIME_FORMAT); | ||
| 106 | goto err; | ||
| 107 | } | ||
| 108 | |||
| 109 | return(ret); | ||
| 110 | err: | ||
| 111 | if ((ret != NULL) && ((a == NULL) || (*a != ret))) | ||
| 112 | M_ASN1_GENERALIZEDTIME_free(ret); | ||
| 113 | return(NULL); | ||
| 114 | } | ||
| 115 | |||
| 116 | #endif | ||
| 117 | |||
| 118 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *d) | ||
| 119 | { | ||
| 120 | static int min[9]={ 0, 0, 1, 1, 0, 0, 0, 0, 0}; | ||
| 121 | static int max[9]={99, 99,12,31,23,59,59,12,59}; | ||
| 122 | char *a; | ||
| 123 | int n,i,l,o; | ||
| 124 | |||
| 125 | if (d->type != V_ASN1_GENERALIZEDTIME) return(0); | ||
| 126 | l=d->length; | ||
| 127 | a=(char *)d->data; | ||
| 128 | o=0; | ||
| 129 | /* GENERALIZEDTIME is similar to UTCTIME except the year is | ||
| 130 | * represented as YYYY. This stuff treats everything as a two digit | ||
| 131 | * field so make first two fields 00 to 99 | ||
| 132 | */ | ||
| 133 | if (l < 13) goto err; | ||
| 134 | for (i=0; i<7; i++) | ||
| 135 | { | ||
| 136 | if ((i == 6) && ((a[o] == 'Z') || | ||
| 137 | (a[o] == '+') || (a[o] == '-'))) | ||
| 138 | { i++; break; } | ||
| 139 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 140 | n= a[o]-'0'; | ||
| 141 | if (++o > l) goto err; | ||
| 142 | |||
| 143 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 144 | n=(n*10)+ a[o]-'0'; | ||
| 145 | if (++o > l) goto err; | ||
| 146 | |||
| 147 | if ((n < min[i]) || (n > max[i])) goto err; | ||
| 148 | } | ||
| 149 | /* Optional fractional seconds: decimal point followed by one | ||
| 150 | * or more digits. | ||
| 151 | */ | ||
| 152 | if (a[o] == '.') | ||
| 153 | { | ||
| 154 | if (++o > l) goto err; | ||
| 155 | i = o; | ||
| 156 | while ((a[o] >= '0') && (a[o] <= '9') && (o <= l)) | ||
| 157 | o++; | ||
| 158 | /* Must have at least one digit after decimal point */ | ||
| 159 | if (i == o) goto err; | ||
| 160 | } | ||
| 161 | |||
| 162 | if (a[o] == 'Z') | ||
| 163 | o++; | ||
| 164 | else if ((a[o] == '+') || (a[o] == '-')) | ||
| 165 | { | ||
| 166 | o++; | ||
| 167 | if (o+4 > l) goto err; | ||
| 168 | for (i=7; i<9; i++) | ||
| 169 | { | ||
| 170 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 171 | n= a[o]-'0'; | ||
| 172 | o++; | ||
| 173 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 174 | n=(n*10)+ a[o]-'0'; | ||
| 175 | if ((n < min[i]) || (n > max[i])) goto err; | ||
| 176 | o++; | ||
| 177 | } | ||
| 178 | } | ||
| 179 | return(o == l); | ||
| 180 | err: | ||
| 181 | return(0); | ||
| 182 | } | ||
| 183 | |||
| 184 | int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str) | ||
| 185 | { | ||
| 186 | ASN1_GENERALIZEDTIME t; | ||
| 187 | |||
| 188 | t.type=V_ASN1_GENERALIZEDTIME; | ||
| 189 | t.length=strlen(str); | ||
| 190 | t.data=(unsigned char *)str; | ||
| 191 | if (ASN1_GENERALIZEDTIME_check(&t)) | ||
| 192 | { | ||
| 193 | if (s != NULL) | ||
| 194 | { | ||
| 195 | if (!ASN1_STRING_set((ASN1_STRING *)s, | ||
| 196 | (unsigned char *)str,t.length)) | ||
| 197 | return 0; | ||
| 198 | s->type=V_ASN1_GENERALIZEDTIME; | ||
| 199 | } | ||
| 200 | return(1); | ||
| 201 | } | ||
| 202 | else | ||
| 203 | return(0); | ||
| 204 | } | ||
| 205 | |||
| 206 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | ||
| 207 | time_t t) | ||
| 208 | { | ||
| 209 | char *p; | ||
| 210 | struct tm *ts; | ||
| 211 | struct tm data; | ||
| 212 | size_t len = 20; | ||
| 213 | |||
| 214 | if (s == NULL) | ||
| 215 | s=M_ASN1_GENERALIZEDTIME_new(); | ||
| 216 | if (s == NULL) | ||
| 217 | return(NULL); | ||
| 218 | |||
| 219 | ts=OPENSSL_gmtime(&t, &data); | ||
| 220 | if (ts == NULL) | ||
| 221 | return(NULL); | ||
| 222 | |||
| 223 | p=(char *)s->data; | ||
| 224 | if ((p == NULL) || ((size_t)s->length < len)) | ||
| 225 | { | ||
| 226 | p=OPENSSL_malloc(len); | ||
| 227 | if (p == NULL) | ||
| 228 | { | ||
| 229 | ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_SET, | ||
| 230 | ERR_R_MALLOC_FAILURE); | ||
| 231 | return(NULL); | ||
| 232 | } | ||
| 233 | if (s->data != NULL) | ||
| 234 | OPENSSL_free(s->data); | ||
| 235 | s->data=(unsigned char *)p; | ||
| 236 | } | ||
| 237 | |||
| 238 | BIO_snprintf(p,len,"%04d%02d%02d%02d%02d%02dZ",ts->tm_year + 1900, | ||
| 239 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
| 240 | s->length=strlen(p); | ||
| 241 | s->type=V_ASN1_GENERALIZEDTIME; | ||
| 242 | #ifdef CHARSET_EBCDIC_not | ||
| 243 | ebcdic2ascii(s->data, s->data, s->length); | ||
| 244 | #endif | ||
| 245 | return(s); | ||
| 246 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_hdr.c b/src/lib/libcrypto/asn1/a_hdr.c new file mode 100644 index 0000000000..d1c2a7b9e3 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_hdr.c | |||
| @@ -0,0 +1,119 @@ | |||
| 1 | /* crypto/asn1/a_hdr.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include "cryptlib.h" | ||
| 61 | #include <openssl/asn1_mac.h> | ||
| 62 | #include <openssl/asn1.h> | ||
| 63 | |||
| 64 | int i2d_ASN1_HEADER(ASN1_HEADER *a, unsigned char **pp) | ||
| 65 | { | ||
| 66 | M_ASN1_I2D_vars(a); | ||
| 67 | |||
| 68 | M_ASN1_I2D_len(a->header, i2d_ASN1_OCTET_STRING); | ||
| 69 | M_ASN1_I2D_len(a->data, a->meth->i2d); | ||
| 70 | |||
| 71 | M_ASN1_I2D_seq_total(); | ||
| 72 | |||
| 73 | M_ASN1_I2D_put(a->header, i2d_ASN1_OCTET_STRING); | ||
| 74 | M_ASN1_I2D_put(a->data, a->meth->i2d); | ||
| 75 | |||
| 76 | M_ASN1_I2D_finish(); | ||
| 77 | } | ||
| 78 | |||
| 79 | ASN1_HEADER *d2i_ASN1_HEADER(ASN1_HEADER **a, const unsigned char **pp, | ||
| 80 | long length) | ||
| 81 | { | ||
| 82 | M_ASN1_D2I_vars(a,ASN1_HEADER *,ASN1_HEADER_new); | ||
| 83 | |||
| 84 | M_ASN1_D2I_Init(); | ||
| 85 | M_ASN1_D2I_start_sequence(); | ||
| 86 | M_ASN1_D2I_get_x(ASN1_OCTET_STRING,ret->header,d2i_ASN1_OCTET_STRING); | ||
| 87 | if (ret->meth != NULL) | ||
| 88 | { | ||
| 89 | M_ASN1_D2I_get_x(void,ret->data,ret->meth->d2i); | ||
| 90 | } | ||
| 91 | else | ||
| 92 | { | ||
| 93 | if (a != NULL) (*a)=ret; | ||
| 94 | return(ret); | ||
| 95 | } | ||
| 96 | M_ASN1_D2I_Finish(a,ASN1_HEADER_free,ASN1_F_D2I_ASN1_HEADER); | ||
| 97 | } | ||
| 98 | |||
| 99 | ASN1_HEADER *ASN1_HEADER_new(void) | ||
| 100 | { | ||
| 101 | ASN1_HEADER *ret=NULL; | ||
| 102 | ASN1_CTX c; | ||
| 103 | |||
| 104 | M_ASN1_New_Malloc(ret,ASN1_HEADER); | ||
| 105 | M_ASN1_New(ret->header,M_ASN1_OCTET_STRING_new); | ||
| 106 | ret->meth=NULL; | ||
| 107 | ret->data=NULL; | ||
| 108 | return(ret); | ||
| 109 | M_ASN1_New_Error(ASN1_F_ASN1_HEADER_NEW); | ||
| 110 | } | ||
| 111 | |||
| 112 | void ASN1_HEADER_free(ASN1_HEADER *a) | ||
| 113 | { | ||
| 114 | if (a == NULL) return; | ||
| 115 | M_ASN1_OCTET_STRING_free(a->header); | ||
| 116 | if (a->meth != NULL) | ||
| 117 | a->meth->destroy(a->data); | ||
| 118 | OPENSSL_free(a); | ||
| 119 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_meth.c b/src/lib/libcrypto/asn1/a_meth.c new file mode 100644 index 0000000000..50bea917e3 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_meth.c | |||
| @@ -0,0 +1,84 @@ | |||
| 1 | /* crypto/asn1/a_meth.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include "cryptlib.h" | ||
| 61 | #include <openssl/buffer.h> | ||
| 62 | #include <openssl/asn1.h> | ||
| 63 | |||
| 64 | static ASN1_METHOD ia5string_meth={ | ||
| 65 | (I2D_OF(void)) i2d_ASN1_IA5STRING, | ||
| 66 | (D2I_OF(void)) d2i_ASN1_IA5STRING, | ||
| 67 | (void *(*)(void))ASN1_STRING_new, | ||
| 68 | (void (*)(void *))ASN1_STRING_free}; | ||
| 69 | |||
| 70 | static ASN1_METHOD bit_string_meth={ | ||
| 71 | (I2D_OF(void)) i2d_ASN1_BIT_STRING, | ||
| 72 | (D2I_OF(void)) d2i_ASN1_BIT_STRING, | ||
| 73 | (void *(*)(void))ASN1_STRING_new, | ||
| 74 | (void (*)(void *))ASN1_STRING_free}; | ||
| 75 | |||
| 76 | ASN1_METHOD *ASN1_IA5STRING_asn1_meth(void) | ||
| 77 | { | ||
| 78 | return(&ia5string_meth); | ||
| 79 | } | ||
| 80 | |||
| 81 | ASN1_METHOD *ASN1_BIT_STRING_asn1_meth(void) | ||
| 82 | { | ||
| 83 | return(&bit_string_meth); | ||
| 84 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c new file mode 100644 index 0000000000..d31c028193 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
| @@ -0,0 +1,303 @@ | |||
| 1 | /* crypto/asn1/a_utctm.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include <time.h> | ||
| 61 | #include "cryptlib.h" | ||
| 62 | #include "o_time.h" | ||
| 63 | #include <openssl/asn1.h> | ||
| 64 | |||
| 65 | #if 0 | ||
| 66 | int i2d_ASN1_UTCTIME(ASN1_UTCTIME *a, unsigned char **pp) | ||
| 67 | { | ||
| 68 | #ifndef CHARSET_EBCDIC | ||
| 69 | return(i2d_ASN1_bytes((ASN1_STRING *)a,pp, | ||
| 70 | V_ASN1_UTCTIME,V_ASN1_UNIVERSAL)); | ||
| 71 | #else | ||
| 72 | /* KLUDGE! We convert to ascii before writing DER */ | ||
| 73 | int len; | ||
| 74 | char tmp[24]; | ||
| 75 | ASN1_STRING x = *(ASN1_STRING *)a; | ||
| 76 | |||
| 77 | len = x.length; | ||
| 78 | ebcdic2ascii(tmp, x.data, (len >= sizeof tmp) ? sizeof tmp : len); | ||
| 79 | x.data = tmp; | ||
| 80 | return i2d_ASN1_bytes(&x, pp, V_ASN1_UTCTIME,V_ASN1_UNIVERSAL); | ||
| 81 | #endif | ||
| 82 | } | ||
| 83 | |||
| 84 | |||
| 85 | ASN1_UTCTIME *d2i_ASN1_UTCTIME(ASN1_UTCTIME **a, unsigned char **pp, | ||
| 86 | long length) | ||
| 87 | { | ||
| 88 | ASN1_UTCTIME *ret=NULL; | ||
| 89 | |||
| 90 | ret=(ASN1_UTCTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length, | ||
| 91 | V_ASN1_UTCTIME,V_ASN1_UNIVERSAL); | ||
| 92 | if (ret == NULL) | ||
| 93 | { | ||
| 94 | ASN1err(ASN1_F_D2I_ASN1_UTCTIME,ERR_R_NESTED_ASN1_ERROR); | ||
| 95 | return(NULL); | ||
| 96 | } | ||
| 97 | #ifdef CHARSET_EBCDIC | ||
| 98 | ascii2ebcdic(ret->data, ret->data, ret->length); | ||
| 99 | #endif | ||
| 100 | if (!ASN1_UTCTIME_check(ret)) | ||
| 101 | { | ||
| 102 | ASN1err(ASN1_F_D2I_ASN1_UTCTIME,ASN1_R_INVALID_TIME_FORMAT); | ||
| 103 | goto err; | ||
| 104 | } | ||
| 105 | |||
| 106 | return(ret); | ||
| 107 | err: | ||
| 108 | if ((ret != NULL) && ((a == NULL) || (*a != ret))) | ||
| 109 | M_ASN1_UTCTIME_free(ret); | ||
| 110 | return(NULL); | ||
| 111 | } | ||
| 112 | |||
| 113 | #endif | ||
| 114 | |||
| 115 | int ASN1_UTCTIME_check(ASN1_UTCTIME *d) | ||
| 116 | { | ||
| 117 | static int min[8]={ 0, 1, 1, 0, 0, 0, 0, 0}; | ||
| 118 | static int max[8]={99,12,31,23,59,59,12,59}; | ||
| 119 | char *a; | ||
| 120 | int n,i,l,o; | ||
| 121 | |||
| 122 | if (d->type != V_ASN1_UTCTIME) return(0); | ||
| 123 | l=d->length; | ||
| 124 | a=(char *)d->data; | ||
| 125 | o=0; | ||
| 126 | |||
| 127 | if (l < 11) goto err; | ||
| 128 | for (i=0; i<6; i++) | ||
| 129 | { | ||
| 130 | if ((i == 5) && ((a[o] == 'Z') || | ||
| 131 | (a[o] == '+') || (a[o] == '-'))) | ||
| 132 | { i++; break; } | ||
| 133 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 134 | n= a[o]-'0'; | ||
| 135 | if (++o > l) goto err; | ||
| 136 | |||
| 137 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 138 | n=(n*10)+ a[o]-'0'; | ||
| 139 | if (++o > l) goto err; | ||
| 140 | |||
| 141 | if ((n < min[i]) || (n > max[i])) goto err; | ||
| 142 | } | ||
| 143 | if (a[o] == 'Z') | ||
| 144 | o++; | ||
| 145 | else if ((a[o] == '+') || (a[o] == '-')) | ||
| 146 | { | ||
| 147 | o++; | ||
| 148 | if (o+4 > l) goto err; | ||
| 149 | for (i=6; i<8; i++) | ||
| 150 | { | ||
| 151 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 152 | n= a[o]-'0'; | ||
| 153 | o++; | ||
| 154 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
| 155 | n=(n*10)+ a[o]-'0'; | ||
| 156 | if ((n < min[i]) || (n > max[i])) goto err; | ||
| 157 | o++; | ||
| 158 | } | ||
| 159 | } | ||
| 160 | return(o == l); | ||
| 161 | err: | ||
| 162 | return(0); | ||
| 163 | } | ||
| 164 | |||
| 165 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str) | ||
| 166 | { | ||
| 167 | ASN1_UTCTIME t; | ||
| 168 | |||
| 169 | t.type=V_ASN1_UTCTIME; | ||
| 170 | t.length=strlen(str); | ||
| 171 | t.data=(unsigned char *)str; | ||
| 172 | if (ASN1_UTCTIME_check(&t)) | ||
| 173 | { | ||
| 174 | if (s != NULL) | ||
| 175 | { | ||
| 176 | if (!ASN1_STRING_set((ASN1_STRING *)s, | ||
| 177 | (unsigned char *)str,t.length)) | ||
| 178 | return 0; | ||
| 179 | s->type = V_ASN1_UTCTIME; | ||
| 180 | } | ||
| 181 | return(1); | ||
| 182 | } | ||
| 183 | else | ||
| 184 | return(0); | ||
| 185 | } | ||
| 186 | |||
| 187 | ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) | ||
| 188 | { | ||
| 189 | char *p; | ||
| 190 | struct tm *ts; | ||
| 191 | struct tm data; | ||
| 192 | size_t len = 20; | ||
| 193 | |||
| 194 | if (s == NULL) | ||
| 195 | s=M_ASN1_UTCTIME_new(); | ||
| 196 | if (s == NULL) | ||
| 197 | return(NULL); | ||
| 198 | |||
| 199 | ts=OPENSSL_gmtime(&t, &data); | ||
| 200 | if (ts == NULL) | ||
| 201 | return(NULL); | ||
| 202 | |||
| 203 | p=(char *)s->data; | ||
| 204 | if ((p == NULL) || ((size_t)s->length < len)) | ||
| 205 | { | ||
| 206 | p=OPENSSL_malloc(len); | ||
| 207 | if (p == NULL) | ||
| 208 | { | ||
| 209 | ASN1err(ASN1_F_ASN1_UTCTIME_SET,ERR_R_MALLOC_FAILURE); | ||
| 210 | return(NULL); | ||
| 211 | } | ||
| 212 | if (s->data != NULL) | ||
| 213 | OPENSSL_free(s->data); | ||
| 214 | s->data=(unsigned char *)p; | ||
| 215 | } | ||
| 216 | |||
| 217 | BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100, | ||
| 218 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
| 219 | s->length=strlen(p); | ||
| 220 | s->type=V_ASN1_UTCTIME; | ||
| 221 | #ifdef CHARSET_EBCDIC_not | ||
| 222 | ebcdic2ascii(s->data, s->data, s->length); | ||
| 223 | #endif | ||
| 224 | return(s); | ||
| 225 | } | ||
| 226 | |||
| 227 | |||
| 228 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | ||
| 229 | { | ||
| 230 | struct tm *tm; | ||
| 231 | struct tm data; | ||
| 232 | int offset; | ||
| 233 | int year; | ||
| 234 | |||
| 235 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
| 236 | |||
| 237 | if (s->data[12] == 'Z') | ||
| 238 | offset=0; | ||
| 239 | else | ||
| 240 | { | ||
| 241 | offset = g2(s->data+13)*60+g2(s->data+15); | ||
| 242 | if (s->data[12] == '-') | ||
| 243 | offset = -offset; | ||
| 244 | } | ||
| 245 | |||
| 246 | t -= offset*60; /* FIXME: may overflow in extreme cases */ | ||
| 247 | |||
| 248 | tm = OPENSSL_gmtime(&t, &data); | ||
| 249 | |||
| 250 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | ||
| 251 | year = g2(s->data); | ||
| 252 | if (year < 50) | ||
| 253 | year += 100; | ||
| 254 | return_cmp(year, tm->tm_year); | ||
| 255 | return_cmp(g2(s->data+2) - 1, tm->tm_mon); | ||
| 256 | return_cmp(g2(s->data+4), tm->tm_mday); | ||
| 257 | return_cmp(g2(s->data+6), tm->tm_hour); | ||
| 258 | return_cmp(g2(s->data+8), tm->tm_min); | ||
| 259 | return_cmp(g2(s->data+10), tm->tm_sec); | ||
| 260 | #undef g2 | ||
| 261 | #undef return_cmp | ||
| 262 | |||
| 263 | return 0; | ||
| 264 | } | ||
| 265 | |||
| 266 | |||
| 267 | #if 0 | ||
| 268 | time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s) | ||
| 269 | { | ||
| 270 | struct tm tm; | ||
| 271 | int offset; | ||
| 272 | |||
| 273 | memset(&tm,'\0',sizeof tm); | ||
| 274 | |||
| 275 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
| 276 | tm.tm_year=g2(s->data); | ||
| 277 | if(tm.tm_year < 50) | ||
| 278 | tm.tm_year+=100; | ||
| 279 | tm.tm_mon=g2(s->data+2)-1; | ||
| 280 | tm.tm_mday=g2(s->data+4); | ||
| 281 | tm.tm_hour=g2(s->data+6); | ||
| 282 | tm.tm_min=g2(s->data+8); | ||
| 283 | tm.tm_sec=g2(s->data+10); | ||
| 284 | if(s->data[12] == 'Z') | ||
| 285 | offset=0; | ||
| 286 | else | ||
| 287 | { | ||
| 288 | offset=g2(s->data+13)*60+g2(s->data+15); | ||
| 289 | if(s->data[12] == '-') | ||
| 290 | offset= -offset; | ||
| 291 | } | ||
| 292 | #undef g2 | ||
| 293 | |||
| 294 | return mktime(&tm)-offset*60; /* FIXME: mktime assumes the current timezone | ||
| 295 | * instead of UTC, and unless we rewrite OpenSSL | ||
| 296 | * in Lisp we cannot locally change the timezone | ||
| 297 | * without possibly interfering with other parts | ||
| 298 | * of the program. timegm, which uses UTC, is | ||
| 299 | * non-standard. | ||
| 300 | * Also time_t is inappropriate for general | ||
| 301 | * UTC times because it may a 32 bit type. */ | ||
| 302 | } | ||
| 303 | #endif | ||
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h index e3385226d4..424cd348bb 100644 --- a/src/lib/libcrypto/asn1/asn1.h +++ b/src/lib/libcrypto/asn1/asn1.h | |||
| @@ -612,7 +612,6 @@ typedef struct BIT_STRING_BITNAME_st { | |||
| 612 | B_ASN1_GENERALIZEDTIME | 612 | B_ASN1_GENERALIZEDTIME |
| 613 | 613 | ||
| 614 | #define B_ASN1_PRINTABLE \ | 614 | #define B_ASN1_PRINTABLE \ |
| 615 | B_ASN1_NUMERICSTRING| \ | ||
| 616 | B_ASN1_PRINTABLESTRING| \ | 615 | B_ASN1_PRINTABLESTRING| \ |
| 617 | B_ASN1_T61STRING| \ | 616 | B_ASN1_T61STRING| \ |
| 618 | B_ASN1_IA5STRING| \ | 617 | B_ASN1_IA5STRING| \ |
| @@ -1218,7 +1217,6 @@ void ERR_load_ASN1_strings(void); | |||
| 1218 | #define ASN1_R_BAD_OBJECT_HEADER 102 | 1217 | #define ASN1_R_BAD_OBJECT_HEADER 102 |
| 1219 | #define ASN1_R_BAD_PASSWORD_READ 103 | 1218 | #define ASN1_R_BAD_PASSWORD_READ 103 |
| 1220 | #define ASN1_R_BAD_TAG 104 | 1219 | #define ASN1_R_BAD_TAG 104 |
| 1221 | #define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 210 | ||
| 1222 | #define ASN1_R_BN_LIB 105 | 1220 | #define ASN1_R_BN_LIB 105 |
| 1223 | #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106 | 1221 | #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106 |
| 1224 | #define ASN1_R_BUFFER_TOO_SMALL 107 | 1222 | #define ASN1_R_BUFFER_TOO_SMALL 107 |
| @@ -1308,7 +1306,6 @@ void ERR_load_ASN1_strings(void); | |||
| 1308 | #define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 157 | 1306 | #define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 157 |
| 1309 | #define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 158 | 1307 | #define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 158 |
| 1310 | #define ASN1_R_UNEXPECTED_EOC 159 | 1308 | #define ASN1_R_UNEXPECTED_EOC 159 |
| 1311 | #define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 211 | ||
| 1312 | #define ASN1_R_UNKNOWN_FORMAT 160 | 1309 | #define ASN1_R_UNKNOWN_FORMAT 160 |
| 1313 | #define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 161 | 1310 | #define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 161 |
| 1314 | #define ASN1_R_UNKNOWN_OBJECT_TYPE 162 | 1311 | #define ASN1_R_UNKNOWN_OBJECT_TYPE 162 |
diff --git a/src/lib/libcrypto/asn1/asn1_err.c b/src/lib/libcrypto/asn1/asn1_err.c index 5f5de98eed..f8a3e2e6cd 100644 --- a/src/lib/libcrypto/asn1/asn1_err.c +++ b/src/lib/libcrypto/asn1/asn1_err.c | |||
| @@ -195,7 +195,6 @@ static ERR_STRING_DATA ASN1_str_reasons[]= | |||
| 195 | {ERR_REASON(ASN1_R_BAD_OBJECT_HEADER) ,"bad object header"}, | 195 | {ERR_REASON(ASN1_R_BAD_OBJECT_HEADER) ,"bad object header"}, |
| 196 | {ERR_REASON(ASN1_R_BAD_PASSWORD_READ) ,"bad password read"}, | 196 | {ERR_REASON(ASN1_R_BAD_PASSWORD_READ) ,"bad password read"}, |
| 197 | {ERR_REASON(ASN1_R_BAD_TAG) ,"bad tag"}, | 197 | {ERR_REASON(ASN1_R_BAD_TAG) ,"bad tag"}, |
| 198 | {ERR_REASON(ASN1_R_BMPSTRING_IS_WRONG_LENGTH),"bmpstring is wrong length"}, | ||
| 199 | {ERR_REASON(ASN1_R_BN_LIB) ,"bn lib"}, | 198 | {ERR_REASON(ASN1_R_BN_LIB) ,"bn lib"}, |
| 200 | {ERR_REASON(ASN1_R_BOOLEAN_IS_WRONG_LENGTH),"boolean is wrong length"}, | 199 | {ERR_REASON(ASN1_R_BOOLEAN_IS_WRONG_LENGTH),"boolean is wrong length"}, |
| 201 | {ERR_REASON(ASN1_R_BUFFER_TOO_SMALL) ,"buffer too small"}, | 200 | {ERR_REASON(ASN1_R_BUFFER_TOO_SMALL) ,"buffer too small"}, |
| @@ -285,7 +284,6 @@ static ERR_STRING_DATA ASN1_str_reasons[]= | |||
| 285 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_KEY),"unable to decode rsa key"}, | 284 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_KEY),"unable to decode rsa key"}, |
| 286 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY),"unable to decode rsa private key"}, | 285 | {ERR_REASON(ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY),"unable to decode rsa private key"}, |
| 287 | {ERR_REASON(ASN1_R_UNEXPECTED_EOC) ,"unexpected eoc"}, | 286 | {ERR_REASON(ASN1_R_UNEXPECTED_EOC) ,"unexpected eoc"}, |
| 288 | {ERR_REASON(ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH),"universalstring is wrong length"}, | ||
| 289 | {ERR_REASON(ASN1_R_UNKNOWN_FORMAT) ,"unknown format"}, | 287 | {ERR_REASON(ASN1_R_UNKNOWN_FORMAT) ,"unknown format"}, |
| 290 | {ERR_REASON(ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM),"unknown message digest algorithm"}, | 288 | {ERR_REASON(ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM),"unknown message digest algorithm"}, |
| 291 | {ERR_REASON(ASN1_R_UNKNOWN_OBJECT_TYPE) ,"unknown object type"}, | 289 | {ERR_REASON(ASN1_R_UNKNOWN_OBJECT_TYPE) ,"unknown object type"}, |
diff --git a/src/lib/libcrypto/asn1/asn1_par.c b/src/lib/libcrypto/asn1/asn1_par.c index 8657f73d66..501b62a4b1 100644 --- a/src/lib/libcrypto/asn1/asn1_par.c +++ b/src/lib/libcrypto/asn1/asn1_par.c | |||
| @@ -213,8 +213,6 @@ static int asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offse | |||
| 213 | (tag == V_ASN1_T61STRING) || | 213 | (tag == V_ASN1_T61STRING) || |
| 214 | (tag == V_ASN1_IA5STRING) || | 214 | (tag == V_ASN1_IA5STRING) || |
| 215 | (tag == V_ASN1_VISIBLESTRING) || | 215 | (tag == V_ASN1_VISIBLESTRING) || |
| 216 | (tag == V_ASN1_NUMERICSTRING) || | ||
| 217 | (tag == V_ASN1_UTF8STRING) || | ||
| 218 | (tag == V_ASN1_UTCTIME) || | 216 | (tag == V_ASN1_UTCTIME) || |
| 219 | (tag == V_ASN1_GENERALIZEDTIME)) | 217 | (tag == V_ASN1_GENERALIZEDTIME)) |
| 220 | { | 218 | { |
diff --git a/src/lib/libcrypto/asn1/asn_mime.c b/src/lib/libcrypto/asn1/asn_mime.c index d8d9e76cc0..bc80b20d63 100644 --- a/src/lib/libcrypto/asn1/asn_mime.c +++ b/src/lib/libcrypto/asn1/asn_mime.c | |||
| @@ -152,6 +152,7 @@ static ASN1_VALUE *b64_read_asn1(BIO *bio, const ASN1_ITEM *it) | |||
| 152 | 152 | ||
| 153 | static int asn1_write_micalg(BIO *out, STACK_OF(X509_ALGOR) *mdalgs) | 153 | static int asn1_write_micalg(BIO *out, STACK_OF(X509_ALGOR) *mdalgs) |
| 154 | { | 154 | { |
| 155 | const EVP_MD *md; | ||
| 155 | int i, have_unknown = 0, write_comma, md_nid; | 156 | int i, have_unknown = 0, write_comma, md_nid; |
| 156 | have_unknown = 0; | 157 | have_unknown = 0; |
| 157 | write_comma = 0; | 158 | write_comma = 0; |
| @@ -161,6 +162,7 @@ static int asn1_write_micalg(BIO *out, STACK_OF(X509_ALGOR) *mdalgs) | |||
| 161 | BIO_write(out, ",", 1); | 162 | BIO_write(out, ",", 1); |
| 162 | write_comma = 1; | 163 | write_comma = 1; |
| 163 | md_nid = OBJ_obj2nid(sk_X509_ALGOR_value(mdalgs, i)->algorithm); | 164 | md_nid = OBJ_obj2nid(sk_X509_ALGOR_value(mdalgs, i)->algorithm); |
| 165 | md = EVP_get_digestbynid(md_nid); | ||
| 164 | switch(md_nid) | 166 | switch(md_nid) |
| 165 | { | 167 | { |
| 166 | case NID_sha1: | 168 | case NID_sha1: |
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c new file mode 100644 index 0000000000..82bccdfd51 --- /dev/null +++ b/src/lib/libcrypto/asn1/f.c | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | /* crypto/asn1/f.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | #include <stdio.h> | ||
| 59 | #include <openssl/asn1.h> | ||
| 60 | #include <openssl/err.h> | ||
| 61 | |||
| 62 | main() | ||
| 63 | { | ||
| 64 | ASN1_TYPE *at; | ||
| 65 | char buf[512]; | ||
| 66 | int n; | ||
| 67 | long l; | ||
| 68 | |||
| 69 | at=ASN1_TYPE_new(); | ||
| 70 | |||
| 71 | n=ASN1_TYPE_set_int_octetstring(at,98736,"01234567",8); | ||
| 72 | printf("%d\n",n); | ||
| 73 | n=ASN1_TYPE_get_int_octetstring(at,&l,buf,8); | ||
| 74 | buf[8]='\0'; | ||
| 75 | printf("%ld %d %d\n",l,n,buf[8]); | ||
| 76 | buf[8]='\0'; | ||
| 77 | printf("%s\n",buf); | ||
| 78 | ERR_load_crypto_strings(); | ||
| 79 | ERR_print_errors_fp(stderr); | ||
| 80 | } | ||
diff --git a/src/lib/libcrypto/asn1/p8_key.c b/src/lib/libcrypto/asn1/p8_key.c new file mode 100644 index 0000000000..3a31248e14 --- /dev/null +++ b/src/lib/libcrypto/asn1/p8_key.c | |||
| @@ -0,0 +1,131 @@ | |||
| 1 | /* crypto/asn1/p8_key.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include "cryptlib.h" | ||
| 61 | #include <openssl/asn1_mac.h> | ||
| 62 | #include <openssl/objects.h> | ||
| 63 | |||
| 64 | int i2d_X509_KEY(X509 *a, unsigned char **pp) | ||
| 65 | { | ||
| 66 | M_ASN1_I2D_vars(a); | ||
| 67 | |||
| 68 | M_ASN1_I2D_len(a->cert_info, i2d_X509_CINF); | ||
| 69 | M_ASN1_I2D_len(a->sig_alg, i2d_X509_ALGOR); | ||
| 70 | M_ASN1_I2D_len(a->signature, i2d_ASN1_BIT_STRING); | ||
| 71 | |||
| 72 | M_ASN1_I2D_seq_total(); | ||
| 73 | |||
| 74 | M_ASN1_I2D_put(a->cert_info, i2d_X509_CINF); | ||
| 75 | M_ASN1_I2D_put(a->sig_alg, i2d_X509_ALGOR); | ||
| 76 | M_ASN1_I2D_put(a->signature, i2d_ASN1_BIT_STRING); | ||
| 77 | |||
| 78 | M_ASN1_I2D_finish(); | ||
| 79 | } | ||
| 80 | |||
| 81 | X509 *d2i_X509_KEY(X509 **a, unsigned char **pp, long length) | ||
| 82 | { | ||
| 83 | M_ASN1_D2I_vars(a,X509 *,X509_new); | ||
| 84 | |||
| 85 | M_ASN1_D2I_Init(); | ||
| 86 | M_ASN1_D2I_start_sequence(); | ||
| 87 | M_ASN1_D2I_get(ret->cert_info,d2i_X509_CINF); | ||
| 88 | M_ASN1_D2I_get(ret->sig_alg,d2i_X509_ALGOR); | ||
| 89 | M_ASN1_D2I_get(ret->signature,d2i_ASN1_BIT_STRING); | ||
| 90 | M_ASN1_D2I_Finish(a,X509_free,ASN1_F_D2I_X509); | ||
| 91 | } | ||
| 92 | |||
| 93 | X509 *X509_KEY_new(void) | ||
| 94 | { | ||
| 95 | X509_KEY *ret=NULL; | ||
| 96 | |||
| 97 | M_ASN1_New_OPENSSL_malloc(ret,X509_KEY); | ||
| 98 | ret->references=1; | ||
| 99 | ret->type=NID | ||
| 100 | M_ASN1_New(ret->cert_info,X509_CINF_new); | ||
| 101 | M_ASN1_New(ret->sig_alg,X509_ALGOR_new); | ||
| 102 | M_ASN1_New(ret->signature,ASN1_BIT_STRING_new); | ||
| 103 | return(ret); | ||
| 104 | M_ASN1_New_Error(ASN1_F_X509_NEW); | ||
| 105 | } | ||
| 106 | |||
| 107 | void X509_KEY_free(X509 *a) | ||
| 108 | { | ||
| 109 | int i; | ||
| 110 | |||
| 111 | if (a == NULL) return; | ||
| 112 | |||
| 113 | i=CRYPTO_add_lock(&a->references,-1,CRYPTO_LOCK_X509_KEY); | ||
| 114 | #ifdef REF_PRINT | ||
| 115 | REF_PRINT("X509_KEY",a); | ||
| 116 | #endif | ||
| 117 | if (i > 0) return; | ||
| 118 | #ifdef REF_CHECK | ||
| 119 | if (i < 0) | ||
| 120 | { | ||
| 121 | fprintf(stderr,"X509_KEY_free, bad reference count\n"); | ||
| 122 | abort(); | ||
| 123 | } | ||
| 124 | #endif | ||
| 125 | |||
| 126 | X509_CINF_free(a->cert_info); | ||
| 127 | X509_ALGOR_free(a->sig_alg); | ||
| 128 | ASN1_BIT_STRING_free(a->signature); | ||
| 129 | OPENSSL_free(a); | ||
| 130 | } | ||
| 131 | |||
diff --git a/src/lib/libcrypto/asn1/tasn_dec.c b/src/lib/libcrypto/asn1/tasn_dec.c index 48bc1c0d4d..ced641698e 100644 --- a/src/lib/libcrypto/asn1/tasn_dec.c +++ b/src/lib/libcrypto/asn1/tasn_dec.c | |||
| @@ -69,7 +69,7 @@ static int asn1_check_eoc(const unsigned char **in, long len); | |||
| 69 | static int asn1_find_end(const unsigned char **in, long len, char inf); | 69 | static int asn1_find_end(const unsigned char **in, long len, char inf); |
| 70 | 70 | ||
| 71 | static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, | 71 | static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, |
| 72 | char inf, int tag, int aclass, int depth); | 72 | char inf, int tag, int aclass); |
| 73 | 73 | ||
| 74 | static int collect_data(BUF_MEM *buf, const unsigned char **p, long plen); | 74 | static int collect_data(BUF_MEM *buf, const unsigned char **p, long plen); |
| 75 | 75 | ||
| @@ -611,6 +611,7 @@ static int asn1_template_ex_d2i(ASN1_VALUE **val, | |||
| 611 | 611 | ||
| 612 | err: | 612 | err: |
| 613 | ASN1_template_free(val, tt); | 613 | ASN1_template_free(val, tt); |
| 614 | *val = NULL; | ||
| 614 | return 0; | 615 | return 0; |
| 615 | } | 616 | } |
| 616 | 617 | ||
| @@ -757,6 +758,7 @@ static int asn1_template_noexp_d2i(ASN1_VALUE **val, | |||
| 757 | 758 | ||
| 758 | err: | 759 | err: |
| 759 | ASN1_template_free(val, tt); | 760 | ASN1_template_free(val, tt); |
| 761 | *val = NULL; | ||
| 760 | return 0; | 762 | return 0; |
| 761 | } | 763 | } |
| 762 | 764 | ||
| @@ -876,7 +878,7 @@ static int asn1_d2i_ex_primitive(ASN1_VALUE **pval, | |||
| 876 | * internally irrespective of the type. So instead just check | 878 | * internally irrespective of the type. So instead just check |
| 877 | * for UNIVERSAL class and ignore the tag. | 879 | * for UNIVERSAL class and ignore the tag. |
| 878 | */ | 880 | */ |
| 879 | if (!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL, 0)) | 881 | if (!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL)) |
| 880 | { | 882 | { |
| 881 | free_cont = 1; | 883 | free_cont = 1; |
| 882 | goto err; | 884 | goto err; |
| @@ -1010,18 +1012,6 @@ int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, | |||
| 1010 | case V_ASN1_SET: | 1012 | case V_ASN1_SET: |
| 1011 | case V_ASN1_SEQUENCE: | 1013 | case V_ASN1_SEQUENCE: |
| 1012 | default: | 1014 | default: |
| 1013 | if (utype == V_ASN1_BMPSTRING && (len & 1)) | ||
| 1014 | { | ||
| 1015 | ASN1err(ASN1_F_ASN1_EX_C2I, | ||
| 1016 | ASN1_R_BMPSTRING_IS_WRONG_LENGTH); | ||
| 1017 | goto err; | ||
| 1018 | } | ||
| 1019 | if (utype == V_ASN1_UNIVERSALSTRING && (len & 3)) | ||
| 1020 | { | ||
| 1021 | ASN1err(ASN1_F_ASN1_EX_C2I, | ||
| 1022 | ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH); | ||
| 1023 | goto err; | ||
| 1024 | } | ||
| 1025 | /* All based on ASN1_STRING and handled the same */ | 1015 | /* All based on ASN1_STRING and handled the same */ |
| 1026 | if (!*pval) | 1016 | if (!*pval) |
| 1027 | { | 1017 | { |
| @@ -1138,18 +1128,8 @@ static int asn1_find_end(const unsigned char **in, long len, char inf) | |||
| 1138 | * if it is indefinite length. | 1128 | * if it is indefinite length. |
| 1139 | */ | 1129 | */ |
| 1140 | 1130 | ||
| 1141 | #ifndef ASN1_MAX_STRING_NEST | ||
| 1142 | /* This determines how many levels of recursion are permitted in ASN1 | ||
| 1143 | * string types. If it is not limited stack overflows can occur. If set | ||
| 1144 | * to zero no recursion is allowed at all. Although zero should be adequate | ||
| 1145 | * examples exist that require a value of 1. So 5 should be more than enough. | ||
| 1146 | */ | ||
| 1147 | #define ASN1_MAX_STRING_NEST 5 | ||
| 1148 | #endif | ||
| 1149 | |||
| 1150 | |||
| 1151 | static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, | 1131 | static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, |
| 1152 | char inf, int tag, int aclass, int depth) | 1132 | char inf, int tag, int aclass) |
| 1153 | { | 1133 | { |
| 1154 | const unsigned char *p, *q; | 1134 | const unsigned char *p, *q; |
| 1155 | long plen; | 1135 | long plen; |
| @@ -1191,15 +1171,13 @@ static int asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, | |||
| 1191 | /* If indefinite length constructed update max length */ | 1171 | /* If indefinite length constructed update max length */ |
| 1192 | if (cst) | 1172 | if (cst) |
| 1193 | { | 1173 | { |
| 1194 | if (depth >= ASN1_MAX_STRING_NEST) | 1174 | #ifdef OPENSSL_ALLOW_NESTED_ASN1_STRINGS |
| 1195 | { | 1175 | if (!asn1_collect(buf, &p, plen, ininf, tag, aclass)) |
| 1196 | ASN1err(ASN1_F_ASN1_COLLECT, | ||
| 1197 | ASN1_R_NESTED_ASN1_STRING); | ||
| 1198 | return 0; | ||
| 1199 | } | ||
| 1200 | if (!asn1_collect(buf, &p, plen, ininf, tag, aclass, | ||
| 1201 | depth + 1)) | ||
| 1202 | return 0; | 1176 | return 0; |
| 1177 | #else | ||
| 1178 | ASN1err(ASN1_F_ASN1_COLLECT, ASN1_R_NESTED_ASN1_STRING); | ||
| 1179 | return 0; | ||
| 1180 | #endif | ||
| 1203 | } | 1181 | } |
| 1204 | else if (plen && !collect_data(buf, &p, plen)) | 1182 | else if (plen && !collect_data(buf, &p, plen)) |
| 1205 | return 0; | 1183 | return 0; |
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c new file mode 100644 index 0000000000..339a110eef --- /dev/null +++ b/src/lib/libcrypto/asn1/x_cinf.c | |||
| @@ -0,0 +1,201 @@ | |||
| 1 | /* crypto/asn1/x_cinf.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include "cryptlib.h" | ||
| 61 | #include <openssl/asn1_mac.h> | ||
| 62 | #include <openssl/x509.h> | ||
| 63 | |||
| 64 | int i2d_X509_CINF(X509_CINF *a, unsigned char **pp) | ||
| 65 | { | ||
| 66 | int v1=0,v2=0; | ||
| 67 | M_ASN1_I2D_vars(a); | ||
| 68 | |||
| 69 | M_ASN1_I2D_len_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1); | ||
| 70 | M_ASN1_I2D_len(a->serialNumber, i2d_ASN1_INTEGER); | ||
| 71 | M_ASN1_I2D_len(a->signature, i2d_X509_ALGOR); | ||
| 72 | M_ASN1_I2D_len(a->issuer, i2d_X509_NAME); | ||
| 73 | M_ASN1_I2D_len(a->validity, i2d_X509_VAL); | ||
| 74 | M_ASN1_I2D_len(a->subject, i2d_X509_NAME); | ||
| 75 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); | ||
| 76 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); | ||
| 77 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); | ||
| 78 | M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, | ||
| 79 | i2d_X509_EXTENSION,3, | ||
| 80 | V_ASN1_SEQUENCE,v2); | ||
| 81 | |||
| 82 | M_ASN1_I2D_seq_total(); | ||
| 83 | |||
| 84 | M_ASN1_I2D_put_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1); | ||
| 85 | M_ASN1_I2D_put(a->serialNumber, i2d_ASN1_INTEGER); | ||
| 86 | M_ASN1_I2D_put(a->signature, i2d_X509_ALGOR); | ||
| 87 | M_ASN1_I2D_put(a->issuer, i2d_X509_NAME); | ||
| 88 | M_ASN1_I2D_put(a->validity, i2d_X509_VAL); | ||
| 89 | M_ASN1_I2D_put(a->subject, i2d_X509_NAME); | ||
| 90 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); | ||
| 91 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); | ||
| 92 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); | ||
| 93 | M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, | ||
| 94 | i2d_X509_EXTENSION,3, | ||
| 95 | V_ASN1_SEQUENCE,v2); | ||
| 96 | |||
| 97 | M_ASN1_I2D_finish(); | ||
| 98 | } | ||
| 99 | |||
| 100 | X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length) | ||
| 101 | { | ||
| 102 | int ver=0; | ||
| 103 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); | ||
| 104 | |||
| 105 | M_ASN1_D2I_Init(); | ||
| 106 | M_ASN1_D2I_start_sequence(); | ||
| 107 | /* we have the optional version field */ | ||
| 108 | if (M_ASN1_next == (V_ASN1_CONTEXT_SPECIFIC | V_ASN1_CONSTRUCTED | 0)) | ||
| 109 | { | ||
| 110 | M_ASN1_D2I_get_EXP_opt(ret->version,d2i_ASN1_INTEGER,0); | ||
| 111 | if (ret->version->data != NULL) | ||
| 112 | ver=ret->version->data[0]; | ||
| 113 | } | ||
| 114 | else | ||
| 115 | { | ||
| 116 | if (ret->version != NULL) | ||
| 117 | { | ||
| 118 | M_ASN1_INTEGER_free(ret->version); | ||
| 119 | ret->version=NULL; | ||
| 120 | } | ||
| 121 | } | ||
| 122 | M_ASN1_D2I_get(ret->serialNumber,d2i_ASN1_INTEGER); | ||
| 123 | M_ASN1_D2I_get(ret->signature,d2i_X509_ALGOR); | ||
| 124 | M_ASN1_D2I_get(ret->issuer,d2i_X509_NAME); | ||
| 125 | M_ASN1_D2I_get(ret->validity,d2i_X509_VAL); | ||
| 126 | M_ASN1_D2I_get(ret->subject,d2i_X509_NAME); | ||
| 127 | M_ASN1_D2I_get(ret->key,d2i_X509_PUBKEY); | ||
| 128 | if (ver >= 1) /* version 2 extensions */ | ||
| 129 | { | ||
| 130 | if (ret->issuerUID != NULL) | ||
| 131 | { | ||
| 132 | M_ASN1_BIT_STRING_free(ret->issuerUID); | ||
| 133 | ret->issuerUID=NULL; | ||
| 134 | } | ||
| 135 | if (ret->subjectUID != NULL) | ||
| 136 | { | ||
| 137 | M_ASN1_BIT_STRING_free(ret->subjectUID); | ||
| 138 | ret->subjectUID=NULL; | ||
| 139 | } | ||
| 140 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, | ||
| 141 | V_ASN1_BIT_STRING); | ||
| 142 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, | ||
| 143 | V_ASN1_BIT_STRING); | ||
| 144 | } | ||
| 145 | /* Note: some broken certificates include extensions but don't set | ||
| 146 | * the version number properly. By bypassing this check they can | ||
| 147 | * be parsed. | ||
| 148 | */ | ||
| 149 | |||
| 150 | #ifdef VERSION_EXT_CHECK | ||
| 151 | if (ver >= 2) /* version 3 extensions */ | ||
| 152 | #endif | ||
| 153 | { | ||
| 154 | if (ret->extensions != NULL) | ||
| 155 | while (sk_X509_EXTENSION_num(ret->extensions)) | ||
| 156 | X509_EXTENSION_free( | ||
| 157 | sk_X509_EXTENSION_pop(ret->extensions)); | ||
| 158 | M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions, | ||
| 159 | d2i_X509_EXTENSION, | ||
| 160 | X509_EXTENSION_free,3, | ||
| 161 | V_ASN1_SEQUENCE); | ||
| 162 | } | ||
| 163 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); | ||
| 164 | } | ||
| 165 | |||
| 166 | X509_CINF *X509_CINF_new(void) | ||
| 167 | { | ||
| 168 | X509_CINF *ret=NULL; | ||
| 169 | ASN1_CTX c; | ||
| 170 | |||
| 171 | M_ASN1_New_Malloc(ret,X509_CINF); | ||
| 172 | ret->version=NULL; | ||
| 173 | M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new); | ||
| 174 | M_ASN1_New(ret->signature,X509_ALGOR_new); | ||
| 175 | M_ASN1_New(ret->issuer,X509_NAME_new); | ||
| 176 | M_ASN1_New(ret->validity,X509_VAL_new); | ||
| 177 | M_ASN1_New(ret->subject,X509_NAME_new); | ||
| 178 | M_ASN1_New(ret->key,X509_PUBKEY_new); | ||
| 179 | ret->issuerUID=NULL; | ||
| 180 | ret->subjectUID=NULL; | ||
| 181 | ret->extensions=NULL; | ||
| 182 | return(ret); | ||
| 183 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); | ||
| 184 | } | ||
| 185 | |||
| 186 | void X509_CINF_free(X509_CINF *a) | ||
| 187 | { | ||
| 188 | if (a == NULL) return; | ||
| 189 | M_ASN1_INTEGER_free(a->version); | ||
| 190 | M_ASN1_INTEGER_free(a->serialNumber); | ||
| 191 | X509_ALGOR_free(a->signature); | ||
| 192 | X509_NAME_free(a->issuer); | ||
| 193 | X509_VAL_free(a->validity); | ||
| 194 | X509_NAME_free(a->subject); | ||
| 195 | X509_PUBKEY_free(a->key); | ||
| 196 | M_ASN1_BIT_STRING_free(a->issuerUID); | ||
| 197 | M_ASN1_BIT_STRING_free(a->subjectUID); | ||
| 198 | sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free); | ||
| 199 | OPENSSL_free(a); | ||
| 200 | } | ||
| 201 | |||
