diff options
Diffstat (limited to 'src/lib/libcrypto/asn1')
| -rw-r--r-- | src/lib/libcrypto/asn1/Makefile | 930 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_gentm.c | 263 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_int.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_strex.c | 1 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/a_utctm.c | 318 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/asn1_err.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/asn1/x_pubkey.c | 5 |
7 files changed, 1514 insertions, 7 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile new file mode 100644 index 0000000000..f7787005d4 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile | |||
| @@ -0,0 +1,930 @@ | |||
| 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 | x_nx509.c 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 | tasn_prn.c ameth_lib.c \ | ||
| 29 | f_int.c f_string.c n_pkey.c \ | ||
| 30 | f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c \ | ||
| 31 | asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c \ | ||
| 32 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
| 33 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
| 34 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
| 35 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | ||
| 36 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | ||
| 37 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | ||
| 38 | x_nx509.o d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
| 39 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
| 40 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
| 41 | tasn_prn.o ameth_lib.o \ | ||
| 42 | f_int.o f_string.o n_pkey.o \ | ||
| 43 | f_enum.o x_pkey.o a_bool.o x_exten.o bio_asn1.o bio_ndef.o asn_mime.o \ | ||
| 44 | asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_bytes.o a_strnid.o \ | ||
| 45 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
| 46 | |||
| 47 | SRC= $(LIBSRC) | ||
| 48 | |||
| 49 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
| 50 | HEADER= $(EXHEADER) asn1_locl.h | ||
| 51 | |||
| 52 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 53 | |||
| 54 | top: | ||
| 55 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 56 | |||
| 57 | test: test.c | ||
| 58 | cc -g -I../../include -c test.c | ||
| 59 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
| 60 | |||
| 61 | pk: pk.c | ||
| 62 | cc -g -I../../include -c pk.c | ||
| 63 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
| 64 | |||
| 65 | all: lib | ||
| 66 | |||
| 67 | lib: $(LIBOBJ) | ||
| 68 | $(AR) $(LIB) $(LIBOBJ) | ||
| 69 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 70 | @touch lib | ||
| 71 | |||
| 72 | files: | ||
| 73 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 74 | |||
| 75 | links: | ||
| 76 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 77 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 78 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 79 | |||
| 80 | install: | ||
| 81 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
| 82 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 83 | do \ | ||
| 84 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 85 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 86 | done; | ||
| 87 | |||
| 88 | tags: | ||
| 89 | ctags $(SRC) | ||
| 90 | |||
| 91 | tests: | ||
| 92 | |||
| 93 | lint: | ||
| 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 95 | |||
| 96 | depend: | ||
| 97 | @[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile... | ||
| 98 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 99 | |||
| 100 | dclean: | ||
| 101 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 102 | mv -f Makefile.new $(MAKEFILE) | ||
| 103 | |||
| 104 | clean: | ||
| 105 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 106 | |||
| 107 | |||
| 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 109 | |||
| 110 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 111 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 112 | a_bitstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 113 | a_bitstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 114 | a_bitstr.o: ../../include/openssl/opensslconf.h | ||
| 115 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 116 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 117 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 118 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 119 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 120 | a_bool.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 121 | a_bool.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 122 | a_bool.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 123 | a_bool.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 124 | a_bool.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 125 | a_bool.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bool.c | ||
| 126 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 127 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 128 | a_bytes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 129 | a_bytes.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 130 | a_bytes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 131 | a_bytes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 132 | a_bytes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 133 | a_bytes.o: ../cryptlib.h a_bytes.c | ||
| 134 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 135 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 136 | a_d2i_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 137 | a_d2i_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 138 | a_d2i_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 140 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 141 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 142 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 143 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 144 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 145 | a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 146 | a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 147 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 148 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 149 | a_digest.o: ../../include/openssl/opensslconf.h | ||
| 150 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 151 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 152 | a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 153 | a_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 154 | a_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_digest.c | ||
| 155 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 156 | a_dup.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 157 | a_dup.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 158 | a_dup.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 159 | a_dup.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 160 | a_dup.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 161 | a_dup.o: ../../include/openssl/symhacks.h ../cryptlib.h a_dup.c | ||
| 162 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 163 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 164 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 165 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 166 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 167 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 168 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 169 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 170 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 171 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 172 | a_gentm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 173 | a_gentm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 174 | a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 175 | a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 176 | a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 177 | a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c | ||
| 178 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 179 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 180 | a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 181 | a_i2d_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 182 | a_i2d_fp.o: ../../include/openssl/opensslconf.h | ||
| 183 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 184 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 185 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 186 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 187 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 188 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 189 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 190 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 191 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 192 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 193 | a_int.o: ../cryptlib.h a_int.c | ||
| 194 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 195 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 196 | a_mbstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 197 | a_mbstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 198 | a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 199 | a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 200 | a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 201 | a_mbstr.o: ../cryptlib.h a_mbstr.c | ||
| 202 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 203 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 204 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 205 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 206 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 207 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 208 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 209 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 210 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 211 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 212 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 213 | a_octet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 214 | a_octet.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 215 | a_octet.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 216 | a_octet.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 217 | a_octet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 218 | a_octet.o: ../cryptlib.h a_octet.c | ||
| 219 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 220 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 221 | a_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 222 | a_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 223 | a_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 224 | a_print.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 225 | a_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 226 | a_print.o: ../cryptlib.h a_print.c | ||
| 227 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 228 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 229 | a_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 230 | a_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 231 | a_set.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 232 | a_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 233 | a_set.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 234 | a_set.o: ../../include/openssl/symhacks.h ../cryptlib.h a_set.c | ||
| 235 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 236 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 237 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 238 | a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 239 | a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 240 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 241 | a_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 242 | a_sign.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 243 | a_sign.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 244 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 245 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 246 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 247 | a_sign.o: ../cryptlib.h a_sign.c asn1_locl.h | ||
| 248 | a_strex.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 249 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 250 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 251 | a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 252 | a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 253 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 254 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 255 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 256 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 257 | a_strex.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 258 | a_strex.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 259 | a_strex.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 260 | a_strex.o: ../cryptlib.h a_strex.c charmap.h | ||
| 261 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 262 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 263 | a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 264 | a_strnid.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 265 | a_strnid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 266 | a_strnid.o: ../../include/openssl/opensslconf.h | ||
| 267 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 268 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 269 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 270 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 271 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 272 | a_time.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 273 | a_time.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 274 | a_time.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 275 | a_time.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 276 | a_time.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 277 | a_time.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_time.c | ||
| 278 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 279 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 280 | a_type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 281 | a_type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 282 | a_type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 283 | a_type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 284 | a_type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 285 | a_type.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 286 | a_type.o: ../../include/openssl/symhacks.h ../cryptlib.h a_type.c | ||
| 287 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 288 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 289 | a_utctm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 290 | a_utctm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 291 | a_utctm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 292 | a_utctm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 293 | a_utctm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 294 | a_utctm.o: ../cryptlib.h ../o_time.h a_utctm.c | ||
| 295 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 296 | a_utf8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 297 | a_utf8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 298 | a_utf8.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 299 | a_utf8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 300 | a_utf8.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 301 | a_utf8.o: ../../include/openssl/symhacks.h ../cryptlib.h a_utf8.c | ||
| 302 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 303 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 304 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 305 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 306 | a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 307 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 308 | a_verify.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 309 | a_verify.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 310 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 311 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 312 | a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 313 | a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 314 | a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c | ||
| 315 | a_verify.o: asn1_locl.h | ||
| 316 | ameth_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 317 | ameth_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 318 | ameth_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 319 | ameth_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 320 | ameth_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 321 | ameth_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 322 | ameth_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 323 | ameth_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 324 | ameth_lib.o: ../../include/openssl/opensslconf.h | ||
| 325 | ameth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 326 | ameth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 327 | ameth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 328 | ameth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 329 | ameth_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ameth_lib.c | ||
| 330 | ameth_lib.o: asn1_locl.h | ||
| 331 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 332 | asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 333 | asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 334 | asn1_err.o: ../../include/openssl/opensslconf.h | ||
| 335 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 336 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 337 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 338 | asn1_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 339 | asn1_gen.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 340 | asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 341 | asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 342 | asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 343 | asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 344 | asn1_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 345 | asn1_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 346 | asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 347 | asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 348 | asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 349 | asn1_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 350 | asn1_gen.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 351 | asn1_gen.o: ../cryptlib.h asn1_gen.c | ||
| 352 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 353 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 354 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 355 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 356 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 357 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 358 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 359 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 360 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 361 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 362 | asn1_par.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 363 | asn1_par.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 364 | asn1_par.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 365 | asn1_par.o: ../../include/openssl/opensslconf.h | ||
| 366 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 367 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 368 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 369 | asn_mime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 370 | asn_mime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 371 | asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 372 | asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 373 | asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 374 | asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 375 | asn_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 376 | asn_mime.o: ../../include/openssl/objects.h ../../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 asn1_locl.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/lhash.h | ||
| 390 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 391 | asn_moid.o: ../../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 | bio_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 406 | bio_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 407 | bio_asn1.o: ../../include/openssl/opensslconf.h | ||
| 408 | bio_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 409 | bio_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 410 | bio_asn1.o: ../../include/openssl/symhacks.h bio_asn1.c | ||
| 411 | bio_ndef.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 412 | bio_ndef.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 413 | bio_ndef.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 414 | bio_ndef.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 415 | bio_ndef.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 416 | bio_ndef.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 417 | bio_ndef.o: ../../include/openssl/symhacks.h bio_ndef.c | ||
| 418 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 419 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 420 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 421 | d2i_pr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 422 | d2i_pr.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h | ||
| 423 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 424 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 425 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 426 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 427 | d2i_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 428 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 429 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 430 | d2i_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h d2i_pr.c | ||
| 431 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 432 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 433 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 434 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 435 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 436 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 437 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 438 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 439 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 440 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 441 | d2i_pu.o: ../cryptlib.h d2i_pu.c | ||
| 442 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 443 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 444 | evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 445 | evp_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 446 | evp_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 447 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 448 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 449 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 450 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 451 | f_enum.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 452 | f_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 453 | f_enum.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 454 | f_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 455 | f_enum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 456 | f_enum.o: ../../include/openssl/symhacks.h ../cryptlib.h f_enum.c | ||
| 457 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 458 | f_int.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 459 | f_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 460 | f_int.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 461 | f_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 462 | f_int.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 463 | f_int.o: ../../include/openssl/symhacks.h ../cryptlib.h f_int.c | ||
| 464 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 465 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 466 | f_string.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 467 | f_string.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 468 | f_string.o: ../../include/openssl/opensslconf.h | ||
| 469 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 470 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 471 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 472 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 473 | i2d_pr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 474 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 475 | i2d_pr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 476 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 477 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 478 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 479 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 480 | i2d_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 481 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 482 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 483 | i2d_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h i2d_pr.c | ||
| 484 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 485 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 486 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 487 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 488 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 489 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 490 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 491 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 492 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 493 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 494 | i2d_pu.o: ../cryptlib.h i2d_pu.c | ||
| 495 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 496 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 497 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 498 | n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 499 | n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 500 | n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 501 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 502 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 503 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 504 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 505 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 506 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 507 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 508 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | ||
| 509 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 510 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 511 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 512 | nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 513 | nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 514 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 515 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 516 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 517 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 518 | nsseq.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 519 | nsseq.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 520 | nsseq.o: ../../include/openssl/x509_vfy.h nsseq.c | ||
| 521 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 522 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 523 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 524 | p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 525 | p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 526 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 527 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 528 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 529 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 530 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 531 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 532 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 533 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 534 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
| 535 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 536 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 537 | p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 538 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 539 | p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 540 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 541 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 542 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 543 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 544 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 545 | p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 546 | p5_pbev2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 547 | p5_pbev2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 548 | p5_pbev2.o: ../cryptlib.h p5_pbev2.c | ||
| 549 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 550 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 551 | p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 552 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 553 | p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 554 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 555 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 556 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 557 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 558 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 559 | p8_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 560 | p8_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 561 | p8_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p8_pkey.c | ||
| 562 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 563 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 564 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 565 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 566 | t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 567 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 568 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 569 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 570 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 571 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 572 | t_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 573 | t_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 574 | t_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 575 | t_bitst.o: ../cryptlib.h t_bitst.c | ||
| 576 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 577 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 578 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 579 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 580 | t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 581 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 582 | t_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 583 | t_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 584 | t_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 585 | t_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 586 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 587 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 588 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 589 | t_crl.o: ../cryptlib.h t_crl.c | ||
| 590 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 591 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 592 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 593 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 594 | t_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 595 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 596 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 597 | t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 598 | t_pkey.o: ../cryptlib.h t_pkey.c | ||
| 599 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 600 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 601 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 602 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 603 | t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 604 | t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 605 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 606 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 607 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 608 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 609 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 610 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 611 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 612 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 613 | t_req.o: ../cryptlib.h t_req.c | ||
| 614 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 615 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 616 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
| 617 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 618 | t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 619 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 620 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 621 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 622 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 623 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 624 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 625 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 626 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 627 | t_spki.o: ../cryptlib.h t_spki.c | ||
| 628 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 629 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 630 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 631 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 632 | t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 633 | t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 634 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 635 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 636 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 637 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 638 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 639 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 640 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 641 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 642 | t_x509.o: ../cryptlib.h asn1_locl.h t_x509.c | ||
| 643 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 644 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 645 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 646 | t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 647 | t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 648 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 649 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 650 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 651 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 652 | t_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 653 | t_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 654 | t_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 655 | t_x509a.o: ../cryptlib.h t_x509a.c | ||
| 656 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 657 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 658 | tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 659 | tasn_dec.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 660 | tasn_dec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 661 | tasn_dec.o: ../../include/openssl/opensslconf.h | ||
| 662 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 663 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 664 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 665 | tasn_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 666 | tasn_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 667 | tasn_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 668 | tasn_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 669 | tasn_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 670 | tasn_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 671 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 672 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 673 | tasn_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h tasn_enc.c | ||
| 674 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 675 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 676 | tasn_fre.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h | ||
| 677 | tasn_fre.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 678 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 679 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 680 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 681 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 682 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 683 | tasn_new.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 684 | tasn_new.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 685 | tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 686 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 687 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 688 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 689 | tasn_prn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 690 | tasn_prn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 691 | tasn_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 692 | tasn_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 693 | tasn_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 694 | tasn_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 695 | tasn_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 696 | tasn_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 697 | tasn_prn.o: ../../include/openssl/opensslconf.h | ||
| 698 | tasn_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 699 | tasn_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 700 | tasn_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 701 | tasn_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 702 | tasn_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 703 | tasn_prn.o: ../cryptlib.h asn1_locl.h tasn_prn.c | ||
| 704 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 705 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 706 | tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 707 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 708 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 709 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 710 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 711 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 712 | tasn_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 713 | tasn_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 714 | tasn_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 715 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 716 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 717 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 718 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 719 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 720 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 721 | x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 722 | x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 723 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 724 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 725 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 726 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 727 | x_algor.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 728 | x_algor.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 729 | x_algor.o: ../../include/openssl/x509_vfy.h x_algor.c | ||
| 730 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 731 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 732 | x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 733 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 734 | x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 735 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 736 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 737 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 738 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 739 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 740 | x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 741 | x_attrib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 742 | x_attrib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_attrib.c | ||
| 743 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 744 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 745 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 746 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 747 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 748 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 749 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 750 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 751 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 752 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 753 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 754 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 755 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 756 | x_crl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 757 | x_crl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 758 | x_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 759 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 760 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 761 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 762 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 763 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 764 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 765 | x_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h asn1_locl.h x_crl.c | ||
| 766 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 767 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 768 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 769 | x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 770 | x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 771 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 772 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 773 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 774 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 775 | x_exten.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 776 | x_exten.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 777 | x_exten.o: ../../include/openssl/x509_vfy.h x_exten.c | ||
| 778 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 779 | x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 780 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 781 | x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 782 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 783 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 784 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 785 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 786 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 787 | x_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 788 | x_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 789 | x_info.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_info.c | ||
| 790 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 791 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 792 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 793 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 794 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 795 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 796 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 797 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 798 | x_long.o: ../cryptlib.h x_long.c | ||
| 799 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 800 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 801 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 802 | x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 803 | x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 804 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 805 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 806 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 807 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 808 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 809 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 810 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 811 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h x_name.c | ||
| 812 | x_nx509.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 813 | x_nx509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 814 | x_nx509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 815 | x_nx509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 816 | x_nx509.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
| 817 | x_nx509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 818 | x_nx509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 819 | x_nx509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 820 | x_nx509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 821 | x_nx509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 822 | x_nx509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 823 | x_nx509.o: ../../include/openssl/x509_vfy.h x_nx509.c | ||
| 824 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 825 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 826 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 827 | x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 828 | x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 829 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 830 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 831 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 832 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 833 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 834 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 835 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 836 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
| 837 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 838 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 839 | x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 840 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 841 | x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 842 | x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 843 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 844 | x_pubkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 845 | x_pubkey.o: ../../include/openssl/opensslconf.h | ||
| 846 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 847 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 848 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 849 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 850 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 851 | x_pubkey.o: ../cryptlib.h asn1_locl.h x_pubkey.c | ||
| 852 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 853 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 854 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 855 | x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 856 | x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 857 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 858 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 859 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 860 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 861 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 862 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 863 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 864 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
| 865 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 866 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 867 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 868 | x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 869 | x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 870 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 871 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 872 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 873 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 874 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 875 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 876 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 877 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
| 878 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 879 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 880 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 881 | x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 882 | x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 883 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 884 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 885 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 886 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 887 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 888 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 889 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 890 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
| 891 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 892 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 893 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 894 | x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 895 | x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 896 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 897 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 898 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 899 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 900 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 901 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 902 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 903 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
| 904 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 905 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 906 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 907 | x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 908 | x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 909 | x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 910 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 911 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 912 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 913 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 914 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 915 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 916 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 917 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
| 918 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 919 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 920 | x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 921 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 922 | x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 923 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 924 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 925 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 926 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 927 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 928 | x_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 929 | x_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 930 | x_x509a.o: ../../include/openssl/x509_vfy.h ../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..c79c6f538c --- /dev/null +++ b/src/lib/libcrypto/asn1/a_gentm.c | |||
| @@ -0,0 +1,263 @@ | |||
| 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 const int min[9]={ 0, 0, 1, 1, 0, 0, 0, 0, 0}; | ||
| 121 | static const 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 | else | ||
| 180 | { | ||
| 181 | /* Missing time zone information. */ | ||
| 182 | goto err; | ||
| 183 | } | ||
| 184 | return(o == l); | ||
| 185 | err: | ||
| 186 | return(0); | ||
| 187 | } | ||
| 188 | |||
| 189 | int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str) | ||
| 190 | { | ||
| 191 | ASN1_GENERALIZEDTIME t; | ||
| 192 | |||
| 193 | t.type=V_ASN1_GENERALIZEDTIME; | ||
| 194 | t.length=strlen(str); | ||
| 195 | t.data=(unsigned char *)str; | ||
| 196 | if (ASN1_GENERALIZEDTIME_check(&t)) | ||
| 197 | { | ||
| 198 | if (s != NULL) | ||
| 199 | { | ||
| 200 | if (!ASN1_STRING_set((ASN1_STRING *)s, | ||
| 201 | (unsigned char *)str,t.length)) | ||
| 202 | return 0; | ||
| 203 | s->type=V_ASN1_GENERALIZEDTIME; | ||
| 204 | } | ||
| 205 | return(1); | ||
| 206 | } | ||
| 207 | else | ||
| 208 | return(0); | ||
| 209 | } | ||
| 210 | |||
| 211 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | ||
| 212 | time_t t) | ||
| 213 | { | ||
| 214 | return ASN1_GENERALIZEDTIME_adj(s, t, 0, 0); | ||
| 215 | } | ||
| 216 | |||
| 217 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, | ||
| 218 | time_t t, int offset_day, long offset_sec) | ||
| 219 | { | ||
| 220 | char *p; | ||
| 221 | struct tm *ts; | ||
| 222 | struct tm data; | ||
| 223 | size_t len = 20; | ||
| 224 | |||
| 225 | if (s == NULL) | ||
| 226 | s=M_ASN1_GENERALIZEDTIME_new(); | ||
| 227 | if (s == NULL) | ||
| 228 | return(NULL); | ||
| 229 | |||
| 230 | ts=OPENSSL_gmtime(&t, &data); | ||
| 231 | if (ts == NULL) | ||
| 232 | return(NULL); | ||
| 233 | |||
| 234 | if (offset_day || offset_sec) | ||
| 235 | { | ||
| 236 | if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec)) | ||
| 237 | return NULL; | ||
| 238 | } | ||
| 239 | |||
| 240 | p=(char *)s->data; | ||
| 241 | if ((p == NULL) || ((size_t)s->length < len)) | ||
| 242 | { | ||
| 243 | p=OPENSSL_malloc(len); | ||
| 244 | if (p == NULL) | ||
| 245 | { | ||
| 246 | ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_ADJ, | ||
| 247 | ERR_R_MALLOC_FAILURE); | ||
| 248 | return(NULL); | ||
| 249 | } | ||
| 250 | if (s->data != NULL) | ||
| 251 | OPENSSL_free(s->data); | ||
| 252 | s->data=(unsigned char *)p; | ||
| 253 | } | ||
| 254 | |||
| 255 | BIO_snprintf(p,len,"%04d%02d%02d%02d%02d%02dZ",ts->tm_year + 1900, | ||
| 256 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
| 257 | s->length=strlen(p); | ||
| 258 | s->type=V_ASN1_GENERALIZEDTIME; | ||
| 259 | #ifdef CHARSET_EBCDIC_not | ||
| 260 | ebcdic2ascii(s->data, s->data, s->length); | ||
| 261 | #endif | ||
| 262 | return(s); | ||
| 263 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_int.c b/src/lib/libcrypto/asn1/a_int.c index 297c45a9ff..ad0d2506f6 100644 --- a/src/lib/libcrypto/asn1/a_int.c +++ b/src/lib/libcrypto/asn1/a_int.c | |||
| @@ -116,7 +116,7 @@ int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp) | |||
| 116 | int pad=0,ret,i,neg; | 116 | int pad=0,ret,i,neg; |
| 117 | unsigned char *p,*n,pb=0; | 117 | unsigned char *p,*n,pb=0; |
| 118 | 118 | ||
| 119 | if (a == NULL) return(0); | 119 | if ((a == NULL) || (a->data == NULL)) return(0); |
| 120 | neg=a->type & V_ASN1_NEG; | 120 | neg=a->type & V_ASN1_NEG; |
| 121 | if (a->length == 0) | 121 | if (a->length == 0) |
| 122 | ret=1; | 122 | ret=1; |
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index ead37ac325..264ebf2393 100644 --- a/src/lib/libcrypto/asn1/a_strex.c +++ b/src/lib/libcrypto/asn1/a_strex.c | |||
| @@ -567,7 +567,6 @@ int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in) | |||
| 567 | if(mbflag == -1) return -1; | 567 | if(mbflag == -1) return -1; |
| 568 | mbflag |= MBSTRING_FLAG; | 568 | mbflag |= MBSTRING_FLAG; |
| 569 | stmp.data = NULL; | 569 | stmp.data = NULL; |
| 570 | stmp.length = 0; | ||
| 571 | ret = ASN1_mbstring_copy(&str, in->data, in->length, mbflag, B_ASN1_UTF8STRING); | 570 | ret = ASN1_mbstring_copy(&str, in->data, in->length, mbflag, B_ASN1_UTF8STRING); |
| 572 | if(ret < 0) return ret; | 571 | if(ret < 0) return ret; |
| 573 | *out = stmp.data; | 572 | *out = stmp.data; |
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c new file mode 100644 index 0000000000..072e236592 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
| @@ -0,0 +1,318 @@ | |||
| 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 const int min[8]={ 0, 1, 1, 0, 0, 0, 0, 0}; | ||
| 118 | static const 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 | return ASN1_UTCTIME_adj(s, t, 0, 0); | ||
| 190 | } | ||
| 191 | |||
| 192 | ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, | ||
| 193 | int offset_day, long offset_sec) | ||
| 194 | { | ||
| 195 | char *p; | ||
| 196 | struct tm *ts; | ||
| 197 | struct tm data; | ||
| 198 | size_t len = 20; | ||
| 199 | |||
| 200 | if (s == NULL) | ||
| 201 | s=M_ASN1_UTCTIME_new(); | ||
| 202 | if (s == NULL) | ||
| 203 | return(NULL); | ||
| 204 | |||
| 205 | ts=OPENSSL_gmtime(&t, &data); | ||
| 206 | if (ts == NULL) | ||
| 207 | return(NULL); | ||
| 208 | |||
| 209 | if (offset_day || offset_sec) | ||
| 210 | { | ||
| 211 | if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec)) | ||
| 212 | return NULL; | ||
| 213 | } | ||
| 214 | |||
| 215 | if((ts->tm_year < 50) || (ts->tm_year >= 150)) | ||
| 216 | return NULL; | ||
| 217 | |||
| 218 | p=(char *)s->data; | ||
| 219 | if ((p == NULL) || ((size_t)s->length < len)) | ||
| 220 | { | ||
| 221 | p=OPENSSL_malloc(len); | ||
| 222 | if (p == NULL) | ||
| 223 | { | ||
| 224 | ASN1err(ASN1_F_ASN1_UTCTIME_ADJ,ERR_R_MALLOC_FAILURE); | ||
| 225 | return(NULL); | ||
| 226 | } | ||
| 227 | if (s->data != NULL) | ||
| 228 | OPENSSL_free(s->data); | ||
| 229 | s->data=(unsigned char *)p; | ||
| 230 | } | ||
| 231 | |||
| 232 | BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100, | ||
| 233 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
| 234 | s->length=strlen(p); | ||
| 235 | s->type=V_ASN1_UTCTIME; | ||
| 236 | #ifdef CHARSET_EBCDIC_not | ||
| 237 | ebcdic2ascii(s->data, s->data, s->length); | ||
| 238 | #endif | ||
| 239 | return(s); | ||
| 240 | } | ||
| 241 | |||
| 242 | |||
| 243 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | ||
| 244 | { | ||
| 245 | struct tm *tm; | ||
| 246 | struct tm data; | ||
| 247 | int offset; | ||
| 248 | int year; | ||
| 249 | |||
| 250 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
| 251 | |||
| 252 | if (s->data[12] == 'Z') | ||
| 253 | offset=0; | ||
| 254 | else | ||
| 255 | { | ||
| 256 | offset = g2(s->data+13)*60+g2(s->data+15); | ||
| 257 | if (s->data[12] == '-') | ||
| 258 | offset = -offset; | ||
| 259 | } | ||
| 260 | |||
| 261 | t -= offset*60; /* FIXME: may overflow in extreme cases */ | ||
| 262 | |||
| 263 | tm = OPENSSL_gmtime(&t, &data); | ||
| 264 | |||
| 265 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | ||
| 266 | year = g2(s->data); | ||
| 267 | if (year < 50) | ||
| 268 | year += 100; | ||
| 269 | return_cmp(year, tm->tm_year); | ||
| 270 | return_cmp(g2(s->data+2) - 1, tm->tm_mon); | ||
| 271 | return_cmp(g2(s->data+4), tm->tm_mday); | ||
| 272 | return_cmp(g2(s->data+6), tm->tm_hour); | ||
| 273 | return_cmp(g2(s->data+8), tm->tm_min); | ||
| 274 | return_cmp(g2(s->data+10), tm->tm_sec); | ||
| 275 | #undef g2 | ||
| 276 | #undef return_cmp | ||
| 277 | |||
| 278 | return 0; | ||
| 279 | } | ||
| 280 | |||
| 281 | |||
| 282 | #if 0 | ||
| 283 | time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s) | ||
| 284 | { | ||
| 285 | struct tm tm; | ||
| 286 | int offset; | ||
| 287 | |||
| 288 | memset(&tm,'\0',sizeof tm); | ||
| 289 | |||
| 290 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
| 291 | tm.tm_year=g2(s->data); | ||
| 292 | if(tm.tm_year < 50) | ||
| 293 | tm.tm_year+=100; | ||
| 294 | tm.tm_mon=g2(s->data+2)-1; | ||
| 295 | tm.tm_mday=g2(s->data+4); | ||
| 296 | tm.tm_hour=g2(s->data+6); | ||
| 297 | tm.tm_min=g2(s->data+8); | ||
| 298 | tm.tm_sec=g2(s->data+10); | ||
| 299 | if(s->data[12] == 'Z') | ||
| 300 | offset=0; | ||
| 301 | else | ||
| 302 | { | ||
| 303 | offset=g2(s->data+13)*60+g2(s->data+15); | ||
| 304 | if(s->data[12] == '-') | ||
| 305 | offset= -offset; | ||
| 306 | } | ||
| 307 | #undef g2 | ||
| 308 | |||
| 309 | return mktime(&tm)-offset*60; /* FIXME: mktime assumes the current timezone | ||
| 310 | * instead of UTC, and unless we rewrite OpenSSL | ||
| 311 | * in Lisp we cannot locally change the timezone | ||
| 312 | * without possibly interfering with other parts | ||
| 313 | * of the program. timegm, which uses UTC, is | ||
| 314 | * non-standard. | ||
| 315 | * Also time_t is inappropriate for general | ||
| 316 | * UTC times because it may a 32 bit type. */ | ||
| 317 | } | ||
| 318 | #endif | ||
diff --git a/src/lib/libcrypto/asn1/asn1_err.c b/src/lib/libcrypto/asn1/asn1_err.c index aa60203ba8..1a30bf119b 100644 --- a/src/lib/libcrypto/asn1/asn1_err.c +++ b/src/lib/libcrypto/asn1/asn1_err.c | |||
| @@ -305,7 +305,7 @@ static ERR_STRING_DATA ASN1_str_reasons[]= | |||
| 305 | {ERR_REASON(ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE),"unknown public key type"}, | 305 | {ERR_REASON(ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE),"unknown public key type"}, |
| 306 | {ERR_REASON(ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM),"unknown signature algorithm"}, | 306 | {ERR_REASON(ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM),"unknown signature algorithm"}, |
| 307 | {ERR_REASON(ASN1_R_UNKNOWN_TAG) ,"unknown tag"}, | 307 | {ERR_REASON(ASN1_R_UNKNOWN_TAG) ,"unknown tag"}, |
| 308 | {ERR_REASON(ASN1_R_UNKOWN_FORMAT) ,"unknown format"}, | 308 | {ERR_REASON(ASN1_R_UNKOWN_FORMAT) ,"unkown format"}, |
| 309 | {ERR_REASON(ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE),"unsupported any defined by type"}, | 309 | {ERR_REASON(ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE),"unsupported any defined by type"}, |
| 310 | {ERR_REASON(ASN1_R_UNSUPPORTED_CIPHER) ,"unsupported cipher"}, | 310 | {ERR_REASON(ASN1_R_UNSUPPORTED_CIPHER) ,"unsupported cipher"}, |
| 311 | {ERR_REASON(ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM),"unsupported encryption algorithm"}, | 311 | {ERR_REASON(ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM),"unsupported encryption algorithm"}, |
diff --git a/src/lib/libcrypto/asn1/x_pubkey.c b/src/lib/libcrypto/asn1/x_pubkey.c index b649e1fcf9..627ec87f9f 100644 --- a/src/lib/libcrypto/asn1/x_pubkey.c +++ b/src/lib/libcrypto/asn1/x_pubkey.c | |||
| @@ -175,15 +175,12 @@ EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key) | |||
| 175 | CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY); | 175 | CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY); |
| 176 | if (key->pkey) | 176 | if (key->pkey) |
| 177 | { | 177 | { |
| 178 | CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY); | ||
| 179 | EVP_PKEY_free(ret); | 178 | EVP_PKEY_free(ret); |
| 180 | ret = key->pkey; | 179 | ret = key->pkey; |
| 181 | } | 180 | } |
| 182 | else | 181 | else |
| 183 | { | ||
| 184 | key->pkey = ret; | 182 | key->pkey = ret; |
| 185 | CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY); | 183 | CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY); |
| 186 | } | ||
| 187 | CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_EVP_PKEY); | 184 | CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_EVP_PKEY); |
| 188 | 185 | ||
| 189 | return ret; | 186 | return ret; |
