blob: 4adec9082db21c23e733aa64b6c06c22cd4d0a26 [file] [log] [blame]
Steve Dower65e4cb12014-11-22 12:54:57 -08001<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Release|Win32">
9 <Configuration>Release</Configuration>
10 <Platform>Win32</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="PGInstrument|Win32">
13 <Configuration>PGInstrument</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="PGInstrument|x64">
17 <Configuration>PGInstrument</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
20 <ProjectConfiguration Include="PGUpdate|Win32">
21 <Configuration>PGUpdate</Configuration>
22 <Platform>Win32</Platform>
23 </ProjectConfiguration>
24 <ProjectConfiguration Include="PGUpdate|x64">
25 <Configuration>PGUpdate</Configuration>
26 <Platform>x64</Platform>
27 </ProjectConfiguration>
28 <ProjectConfiguration Include="Debug|x64">
29 <Configuration>Debug</Configuration>
30 <Platform>x64</Platform>
31 </ProjectConfiguration>
32 <ProjectConfiguration Include="Release|x64">
33 <Configuration>Release</Configuration>
34 <Platform>x64</Platform>
35 </ProjectConfiguration>
36 </ItemGroup>
37 <PropertyGroup Label="Globals">
38 <ProjectGuid>{E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}</ProjectGuid>
39 <RootNamespace>libeay</RootNamespace>
40 </PropertyGroup>
41
42 <Import Project="python.props" />
43 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
44 <Import Project="openssl.props" />
45
46 <PropertyGroup Label="Configuration">
47 <ConfigurationType>StaticLibrary</ConfigurationType>
48 <IntDir Condition="'$(Platform)' != 'x64'">$(opensslDir)tmp32\libeay\</IntDir>
49 <IntDir Condition="'$(Platform)' == 'x64'">$(opensslDir)tmp64\libeay\</IntDir>
50 </PropertyGroup>
51
52 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53
54 <Target Name="CreateBuildinfH" Inputs="$(MSBuildProjectFullPath)" Outputs="$(IntDir)\buildinf.h" AfterTargets="PrepareForBuild">
55 <PropertyGroup>
56 <_DATEValue>#define DATE "$([System.DateTime]::Now.ToString(`ddd MMM dd HH':'mm':'ss yyyy`))"</_DATEValue>
57 <_CFLAGSValue>#define CFLAGS "cl /MD /Ox -W3 -Gs0 -Gy -nologo @(PreprocessorDefinitions->'-D%(Identity)',' ')"</_CFLAGSValue>
58 <_PLATFORMValue Condition="$(Platform)=='Win32'">#define PLATFORM "VC-WIN32"</_PLATFORMValue>
59 <_PLATFORMValue Condition="$(Platform)=='x64'">#define PLATFORM "VC-WIN64A"</_PLATFORMValue>
60 </PropertyGroup>
61 <WriteLinesToFile File="$(IntDir)\buildinf.h"
62 Lines="$(_DATEValue);$(_CFLAGSValue);$(_PLATFORMValue)"
63 Overwrite="true" />
64 <Message Text="Updating buildinf.h:
65 $(_DATEValue)
66 $(_CFLAGSValue)
67 $(_PLATFORMValue)" Importance="normal" />
68 </Target>
69
70 <Target Name="SuppressOriginalBuildinfH" Condition="Exists('$(opensslDir)crypto\buildinf.h')" BeforeTargets="PrepareForBuild">
71 <Move SourceFiles="$(opensslDir)crypto\buildinf.h" DestinationFiles="$(opensslDir)crypto\buildinf.h.orig" />
72 </Target>
73
74 <ItemGroup>
75 <ClCompile Include="$(opensslDir)crypto\cversion.c">
76 <AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
77 </ClCompile>
78 </ItemGroup>
79
80 <ItemGroup>
81 <!--
82 <ClCompile Include="$(opensslDir)apps\errstr.c" />
83 <ClCompile Include="$(opensslDir)crypto\aes\aes_cfb.c" />
84 <ClCompile Include="$(opensslDir)crypto\aes\aes_ctr.c" />
85 <ClCompile Include="$(opensslDir)crypto\aes\aes_ecb.c" />
86 -->
87 <ClCompile Include="$(opensslDir)crypto\aes\aes_ige.c" />
88 <ClCompile Include="$(opensslDir)crypto\aes\aes_misc.c" />
89 <!--
90 <ClCompile Include="$(opensslDir)crypto\aes\aes_ofb.c" />
91 -->
92 <ClCompile Include="$(opensslDir)crypto\aes\aes_wrap.c" />
93 <ClCompile Include="$(opensslDir)crypto\asn1\a_bitstr.c" />
94 <ClCompile Include="$(opensslDir)crypto\asn1\a_bool.c" />
95 <ClCompile Include="$(opensslDir)crypto\asn1\a_bytes.c" />
96 <ClCompile Include="$(opensslDir)crypto\asn1\a_d2i_fp.c" />
97 <ClCompile Include="$(opensslDir)crypto\asn1\a_digest.c" />
98 <ClCompile Include="$(opensslDir)crypto\asn1\a_dup.c" />
99 <ClCompile Include="$(opensslDir)crypto\asn1\a_enum.c" />
100 <ClCompile Include="$(opensslDir)crypto\asn1\a_gentm.c" />
101 <ClCompile Include="$(opensslDir)crypto\asn1\a_i2d_fp.c" />
102 <ClCompile Include="$(opensslDir)crypto\asn1\a_int.c" />
103 <ClCompile Include="$(opensslDir)crypto\asn1\a_mbstr.c" />
104 <ClCompile Include="$(opensslDir)crypto\asn1\a_object.c" />
105 <ClCompile Include="$(opensslDir)crypto\asn1\a_octet.c" />
106 <ClCompile Include="$(opensslDir)crypto\asn1\a_print.c" />
107 <ClCompile Include="$(opensslDir)crypto\asn1\a_set.c" />
108 <ClCompile Include="$(opensslDir)crypto\asn1\a_sign.c" />
109 <ClCompile Include="$(opensslDir)crypto\asn1\a_strex.c" />
110 <ClCompile Include="$(opensslDir)crypto\asn1\a_strnid.c" />
111 <ClCompile Include="$(opensslDir)crypto\asn1\a_time.c" />
112 <ClCompile Include="$(opensslDir)crypto\asn1\a_type.c" />
113 <ClCompile Include="$(opensslDir)crypto\asn1\a_utctm.c" />
114 <ClCompile Include="$(opensslDir)crypto\asn1\a_utf8.c" />
115 <ClCompile Include="$(opensslDir)crypto\asn1\a_verify.c" />
116 <ClCompile Include="$(opensslDir)crypto\asn1\ameth_lib.c" />
117 <ClCompile Include="$(opensslDir)crypto\asn1\asn_mime.c" />
118 <ClCompile Include="$(opensslDir)crypto\asn1\asn_moid.c" />
119 <ClCompile Include="$(opensslDir)crypto\asn1\asn_pack.c" />
120 <ClCompile Include="$(opensslDir)crypto\asn1\asn1_err.c" />
121 <ClCompile Include="$(opensslDir)crypto\asn1\asn1_gen.c" />
122 <ClCompile Include="$(opensslDir)crypto\asn1\asn1_lib.c" />
123 <ClCompile Include="$(opensslDir)crypto\asn1\asn1_par.c" />
124 <ClCompile Include="$(opensslDir)crypto\asn1\bio_asn1.c" />
125 <ClCompile Include="$(opensslDir)crypto\asn1\bio_ndef.c" />
126 <ClCompile Include="$(opensslDir)crypto\asn1\d2i_pr.c" />
127 <!--
128 <ClCompile Include="$(opensslDir)crypto\asn1\d2i_pu.c" />
129 -->
130 <ClCompile Include="$(opensslDir)crypto\asn1\evp_asn1.c" />
131 <!--
132 <ClCompile Include="$(opensslDir)crypto\asn1\f_enum.c" />
133 -->
134 <ClCompile Include="$(opensslDir)crypto\asn1\f_int.c" />
135 <ClCompile Include="$(opensslDir)crypto\asn1\f_string.c" />
136 <ClCompile Include="$(opensslDir)crypto\asn1\i2d_pr.c" />
137 <!--
138 <ClCompile Include="$(opensslDir)crypto\asn1\i2d_pu.c" />
139 -->
140 <ClCompile Include="$(opensslDir)crypto\asn1\n_pkey.c" />
141 <ClCompile Include="$(opensslDir)crypto\asn1\nsseq.c" />
142 <ClCompile Include="$(opensslDir)crypto\asn1\p5_pbe.c" />
143 <ClCompile Include="$(opensslDir)crypto\asn1\p5_pbev2.c" />
144 <ClCompile Include="$(opensslDir)crypto\asn1\p8_pkey.c" />
145 <!--
146 <ClCompile Include="$(opensslDir)crypto\asn1\t_bitst.c" />
147 <ClCompile Include="$(opensslDir)crypto\asn1\t_crl.c" />
148 -->
149 <ClCompile Include="$(opensslDir)crypto\asn1\t_pkey.c" />
150 <!--
151 <ClCompile Include="$(opensslDir)crypto\asn1\t_req.c" />
152 <ClCompile Include="$(opensslDir)crypto\asn1\t_spki.c" />
153 -->
154 <ClCompile Include="$(opensslDir)crypto\asn1\t_x509.c" />
155 <ClCompile Include="$(opensslDir)crypto\asn1\t_x509a.c" />
156 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_dec.c" />
157 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_enc.c" />
158 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_fre.c" />
159 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_new.c" />
160 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_prn.c" />
161 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_typ.c" />
162 <ClCompile Include="$(opensslDir)crypto\asn1\tasn_utl.c" />
163 <ClCompile Include="$(opensslDir)crypto\asn1\x_algor.c" />
164 <ClCompile Include="$(opensslDir)crypto\asn1\x_attrib.c" />
165 <ClCompile Include="$(opensslDir)crypto\asn1\x_bignum.c" />
166 <ClCompile Include="$(opensslDir)crypto\asn1\x_crl.c" />
167 <ClCompile Include="$(opensslDir)crypto\asn1\x_exten.c" />
168 <ClCompile Include="$(opensslDir)crypto\asn1\x_info.c" />
169 <ClCompile Include="$(opensslDir)crypto\asn1\x_long.c" />
170 <ClCompile Include="$(opensslDir)crypto\asn1\x_name.c" />
171 <ClCompile Include="$(opensslDir)crypto\asn1\x_nx509.c" />
172 <ClCompile Include="$(opensslDir)crypto\asn1\x_pkey.c" />
173 <ClCompile Include="$(opensslDir)crypto\asn1\x_pubkey.c" />
174 <ClCompile Include="$(opensslDir)crypto\asn1\x_req.c" />
175 <ClCompile Include="$(opensslDir)crypto\asn1\x_sig.c" />
176 <ClCompile Include="$(opensslDir)crypto\asn1\x_spki.c" />
177 <ClCompile Include="$(opensslDir)crypto\asn1\x_val.c" />
178 <ClCompile Include="$(opensslDir)crypto\asn1\x_x509.c" />
179 <ClCompile Include="$(opensslDir)crypto\asn1\x_x509a.c" />
180 <ClCompile Include="$(opensslDir)crypto\bf\bf_cfb64.c" />
181 <ClCompile Include="$(opensslDir)crypto\bf\bf_ecb.c" />
182 <ClCompile Include="$(opensslDir)crypto\bf\bf_ofb64.c" />
183 <ClCompile Include="$(opensslDir)crypto\bf\bf_skey.c" />
184 <ClCompile Include="$(opensslDir)crypto\bio\b_dump.c" />
185 <ClCompile Include="$(opensslDir)crypto\bio\b_print.c" />
186 <!--
187 <ClCompile Include="$(opensslDir)crypto\bio\b_sock.c" />
188 -->
189 <ClCompile Include="$(opensslDir)crypto\bio\bf_buff.c" />
190 <!--
191 <ClCompile Include="$(opensslDir)crypto\bio\bf_nbio.c" />
192 <ClCompile Include="$(opensslDir)crypto\bio\bf_null.c" />
193 <ClCompile Include="$(opensslDir)crypto\bio\bio_cb.c" />
194 -->
195 <ClCompile Include="$(opensslDir)crypto\bio\bio_err.c" />
196 <ClCompile Include="$(opensslDir)crypto\bio\bio_lib.c" />
197 <!--
198 <ClCompile Include="$(opensslDir)crypto\bio\bss_acpt.c" />
199 <ClCompile Include="$(opensslDir)crypto\bio\bss_bio.c" />
200 <ClCompile Include="$(opensslDir)crypto\bio\bss_conn.c" />
201 <ClCompile Include="$(opensslDir)crypto\bio\bss_dgram.c" />
202 <ClCompile Include="$(opensslDir)crypto\bio\bss_fd.c" />
203 -->
204 <ClCompile Include="$(opensslDir)crypto\bio\bss_file.c" />
205 <!--
206 <ClCompile Include="$(opensslDir)crypto\bio\bss_log.c" />
207 -->
208 <ClCompile Include="$(opensslDir)crypto\bio\bss_mem.c" />
209 <ClCompile Include="$(opensslDir)crypto\bio\bss_null.c" />
210 <ClCompile Include="$(opensslDir)crypto\bio\bss_sock.c" />
211 <ClCompile Include="$(opensslDir)crypto\bn\bn_add.c" />
212 <ClCompile Include="$(opensslDir)crypto\bn\bn_blind.c" />
213 <!--
214 <ClCompile Include="$(opensslDir)crypto\bn\bn_const.c" />
215 -->
216 <ClCompile Include="$(opensslDir)crypto\bn\bn_ctx.c" />
217 <!--
218 <ClCompile Include="$(opensslDir)crypto\bn\bn_depr.c" />
219 -->
220 <ClCompile Include="$(opensslDir)crypto\bn\bn_div.c" />
221 <ClCompile Include="$(opensslDir)crypto\bn\bn_err.c" />
222 <ClCompile Include="$(opensslDir)crypto\bn\bn_exp.c" />
223 <ClCompile Include="$(opensslDir)crypto\bn\bn_exp2.c" />
224 <ClCompile Include="$(opensslDir)crypto\bn\bn_gcd.c" />
225 <ClCompile Include="$(opensslDir)crypto\bn\bn_gf2m.c" />
226 <ClCompile Include="$(opensslDir)crypto\bn\bn_kron.c" />
227 <ClCompile Include="$(opensslDir)crypto\bn\bn_lib.c" />
228 <ClCompile Include="$(opensslDir)crypto\bn\bn_mod.c" />
229 <ClCompile Include="$(opensslDir)crypto\bn\bn_mont.c" />
230 <!--
231 <ClCompile Include="$(opensslDir)crypto\bn\bn_mpi.c" />
232 -->
233 <ClCompile Include="$(opensslDir)crypto\bn\bn_mul.c" />
234 <ClCompile Include="$(opensslDir)crypto\bn\bn_nist.c" />
235 <ClCompile Include="$(opensslDir)crypto\bn\bn_prime.c" />
236 <ClCompile Include="$(opensslDir)crypto\bn\bn_print.c" />
237 <ClCompile Include="$(opensslDir)crypto\bn\bn_rand.c" />
238 <ClCompile Include="$(opensslDir)crypto\bn\bn_recp.c" />
239 <ClCompile Include="$(opensslDir)crypto\bn\bn_shift.c" />
240 <ClCompile Include="$(opensslDir)crypto\bn\bn_sqr.c" />
241 <ClCompile Include="$(opensslDir)crypto\bn\bn_sqrt.c" />
242 <ClCompile Include="$(opensslDir)crypto\bn\bn_word.c" />
243 <!--
244 <ClCompile Include="$(opensslDir)crypto\bn\bn_x931p.c" />
245 -->
246 <ClCompile Include="$(opensslDir)crypto\buffer\buf_err.c" />
247 <ClCompile Include="$(opensslDir)crypto\buffer\buf_str.c" />
248 <ClCompile Include="$(opensslDir)crypto\buffer\buffer.c" />
249 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_cfb.c" />
250 <!--
251 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_ctr.c" />
252 -->
253 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_ecb.c" />
254 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_ofb.c" />
255 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_utl.c" />
256 <ClCompile Include="$(opensslDir)crypto\cast\c_cfb64.c" />
257 <ClCompile Include="$(opensslDir)crypto\cast\c_ecb.c" />
258 <ClCompile Include="$(opensslDir)crypto\cast\c_ofb64.c" />
259 <ClCompile Include="$(opensslDir)crypto\cast\c_skey.c" />
260 <ClCompile Include="$(opensslDir)crypto\cmac\cm_ameth.c" />
261 <ClCompile Include="$(opensslDir)crypto\cmac\cm_pmeth.c" />
262 <ClCompile Include="$(opensslDir)crypto\cmac\cmac.c" />
263 <ClCompile Include="$(opensslDir)crypto\cms\cms_asn1.c" />
264 <ClCompile Include="$(opensslDir)crypto\cms\cms_att.c" />
265 <!--
266 <ClCompile Include="$(opensslDir)crypto\cms\cms_cd.c" />
267 -->
268 <ClCompile Include="$(opensslDir)crypto\cms\cms_dd.c" />
269 <ClCompile Include="$(opensslDir)crypto\cms\cms_enc.c" />
270 <ClCompile Include="$(opensslDir)crypto\cms\cms_env.c" />
271 <ClCompile Include="$(opensslDir)crypto\cms\cms_err.c" />
272 <!--
273 <ClCompile Include="$(opensslDir)crypto\cms\cms_ess.c" />
274 -->
275 <ClCompile Include="$(opensslDir)crypto\cms\cms_io.c" />
276 <ClCompile Include="$(opensslDir)crypto\cms\cms_lib.c" />
277 <ClCompile Include="$(opensslDir)crypto\cms\cms_pwri.c" />
278 <ClCompile Include="$(opensslDir)crypto\cms\cms_sd.c" />
279 <!--
280 <ClCompile Include="$(opensslDir)crypto\cms\cms_smime.c" />
281 <ClCompile Include="$(opensslDir)crypto\comp\c_rle.c" />
282 -->
283 <ClCompile Include="$(opensslDir)crypto\comp\c_zlib.c" />
284 <ClCompile Include="$(opensslDir)crypto\comp\comp_err.c" />
285 <ClCompile Include="$(opensslDir)crypto\comp\comp_lib.c" />
286 <ClCompile Include="$(opensslDir)crypto\conf\conf_api.c" />
287 <ClCompile Include="$(opensslDir)crypto\conf\conf_def.c" />
288 <ClCompile Include="$(opensslDir)crypto\conf\conf_err.c" />
289 <ClCompile Include="$(opensslDir)crypto\conf\conf_lib.c" />
290 <ClCompile Include="$(opensslDir)crypto\conf\conf_mall.c" />
291 <ClCompile Include="$(opensslDir)crypto\conf\conf_mod.c" />
292 <!--
293 <ClCompile Include="$(opensslDir)crypto\conf\conf_sap.c" />
294 -->
295 <ClCompile Include="$(opensslDir)crypto\cpt_err.c" />
296 <ClCompile Include="$(opensslDir)crypto\cryptlib.c" />
297 <ClCompile Include="$(opensslDir)crypto\des\cbc_cksm.c" />
298 <!--
299 <ClCompile Include="$(opensslDir)crypto\des\cbc_enc.c" />
300 -->
301 <ClCompile Include="$(opensslDir)crypto\des\cfb_enc.c" />
302 <ClCompile Include="$(opensslDir)crypto\des\cfb64ede.c" />
303 <ClCompile Include="$(opensslDir)crypto\des\cfb64enc.c" />
304 <!--
305 <ClCompile Include="$(opensslDir)crypto\des\des_old.c" />
306 <ClCompile Include="$(opensslDir)crypto\des\des_old2.c" />
307 -->
308 <ClCompile Include="$(opensslDir)crypto\des\ecb_enc.c" />
309 <ClCompile Include="$(opensslDir)crypto\des\ecb3_enc.c" />
310 <!--
311 <ClCompile Include="$(opensslDir)crypto\des\ede_cbcm_enc.c" />
312 <ClCompile Include="$(opensslDir)crypto\des\enc_read.c" />
313 <ClCompile Include="$(opensslDir)crypto\des\enc_writ.c" />
314 <ClCompile Include="$(opensslDir)crypto\des\fcrypt.c" />
315 <ClCompile Include="$(opensslDir)crypto\des\ofb_enc.c" />
316 -->
317 <ClCompile Include="$(opensslDir)crypto\des\ofb64ede.c" />
318 <ClCompile Include="$(opensslDir)crypto\des\ofb64enc.c" />
319 <!--
320 <ClCompile Include="$(opensslDir)crypto\des\pcbc_enc.c" />
321 <ClCompile Include="$(opensslDir)crypto\des\qud_cksm.c" />
322 <ClCompile Include="$(opensslDir)crypto\des\rand_key.c" />
323 <ClCompile Include="$(opensslDir)crypto\des\read2pwd.c" />
324 <ClCompile Include="$(opensslDir)crypto\des\rpc_enc.c" />
325 -->
326 <ClCompile Include="$(opensslDir)crypto\des\set_key.c" />
327 <!--
328 <ClCompile Include="$(opensslDir)crypto\des\str2key.c" />
329 -->
330 <ClCompile Include="$(opensslDir)crypto\des\xcbc_enc.c" />
331 <ClCompile Include="$(opensslDir)crypto\dh\dh_ameth.c" />
332 <ClCompile Include="$(opensslDir)crypto\dh\dh_asn1.c" />
333 <ClCompile Include="$(opensslDir)crypto\dh\dh_check.c" />
334 <!--
335 <ClCompile Include="$(opensslDir)crypto\dh\dh_depr.c" />
336 -->
337 <ClCompile Include="$(opensslDir)crypto\dh\dh_err.c" />
338 <ClCompile Include="$(opensslDir)crypto\dh\dh_gen.c" />
339 <ClCompile Include="$(opensslDir)crypto\dh\dh_key.c" />
340 <ClCompile Include="$(opensslDir)crypto\dh\dh_lib.c" />
341 <ClCompile Include="$(opensslDir)crypto\dh\dh_pmeth.c" />
342 <!--
343 <ClCompile Include="$(opensslDir)crypto\dh\dh_prn.c" />
344 -->
345 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_ameth.c" />
346 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_asn1.c" />
347 <!--
348 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_depr.c" />
349 -->
350 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_err.c" />
351 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_gen.c" />
352 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_key.c" />
353 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_lib.c" />
354 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_ossl.c" />
355 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_pmeth.c" />
356 <!--
357 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_prn.c" />
358 -->
359 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_sign.c" />
360 <ClCompile Include="$(opensslDir)crypto\dsa\dsa_vrf.c" />
361 <!--
362 <ClCompile Include="$(opensslDir)crypto\dso\dso_beos.c" />
363 <ClCompile Include="$(opensslDir)crypto\dso\dso_dl.c" />
364 <ClCompile Include="$(opensslDir)crypto\dso\dso_dlfcn.c" />
365 -->
366 <ClCompile Include="$(opensslDir)crypto\dso\dso_err.c" />
367 <ClCompile Include="$(opensslDir)crypto\dso\dso_lib.c" />
368 <!--
369 <ClCompile Include="$(opensslDir)crypto\dso\dso_null.c" />
370 -->
371 <ClCompile Include="$(opensslDir)crypto\dso\dso_openssl.c" />
372 <!--
373 <ClCompile Include="$(opensslDir)crypto\dso\dso_vms.c" />
374 -->
375 <ClCompile Include="$(opensslDir)crypto\dso\dso_win32.c" />
376 <!--
377 <ClCompile Include="$(opensslDir)crypto\ebcdic.c" />
378 -->
379 <ClCompile Include="$(opensslDir)crypto\ec\ec_ameth.c" />
380 <ClCompile Include="$(opensslDir)crypto\ec\ec_asn1.c" />
381 <!--
382 <ClCompile Include="$(opensslDir)crypto\ec\ec_check.c" />
383 -->
384 <ClCompile Include="$(opensslDir)crypto\ec\ec_curve.c" />
385 <ClCompile Include="$(opensslDir)crypto\ec\ec_cvt.c" />
386 <ClCompile Include="$(opensslDir)crypto\ec\ec_err.c" />
387 <ClCompile Include="$(opensslDir)crypto\ec\ec_key.c" />
388 <ClCompile Include="$(opensslDir)crypto\ec\ec_lib.c" />
389 <ClCompile Include="$(opensslDir)crypto\ec\ec_mult.c" />
390 <ClCompile Include="$(opensslDir)crypto\ec\ec_oct.c" />
391 <ClCompile Include="$(opensslDir)crypto\ec\ec_pmeth.c" />
392 <ClCompile Include="$(opensslDir)crypto\ec\ec_print.c" />
393 <ClCompile Include="$(opensslDir)crypto\ec\ec2_mult.c" />
394 <ClCompile Include="$(opensslDir)crypto\ec\ec2_oct.c" />
395 <ClCompile Include="$(opensslDir)crypto\ec\ec2_smpl.c" />
396 <ClCompile Include="$(opensslDir)crypto\ec\eck_prn.c" />
397 <ClCompile Include="$(opensslDir)crypto\ec\ecp_mont.c" />
398 <ClCompile Include="$(opensslDir)crypto\ec\ecp_nist.c" />
399 <!--
400 <ClCompile Include="$(opensslDir)crypto\ec\ecp_nistp224.c" />
401 <ClCompile Include="$(opensslDir)crypto\ec\ecp_nistp256.c" />
402 <ClCompile Include="$(opensslDir)crypto\ec\ecp_nistp521.c" />
403 <ClCompile Include="$(opensslDir)crypto\ec\ecp_nistputil.c" />
404 -->
405 <ClCompile Include="$(opensslDir)crypto\ec\ecp_oct.c" />
406 <ClCompile Include="$(opensslDir)crypto\ec\ecp_smpl.c" />
407 <ClCompile Include="$(opensslDir)crypto\ecdh\ech_err.c" />
408 <ClCompile Include="$(opensslDir)crypto\ecdh\ech_key.c" />
409 <ClCompile Include="$(opensslDir)crypto\ecdh\ech_lib.c" />
410 <ClCompile Include="$(opensslDir)crypto\ecdh\ech_ossl.c" />
411 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_asn1.c" />
412 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_err.c" />
413 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_lib.c" />
414 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_ossl.c" />
415 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_sign.c" />
416 <ClCompile Include="$(opensslDir)crypto\ecdsa\ecs_vrf.c" />
417 <ClCompile Include="$(opensslDir)crypto\engine\eng_all.c" />
418 <ClCompile Include="$(opensslDir)crypto\engine\eng_cnf.c" />
419 <!--
420 <ClCompile Include="$(opensslDir)crypto\engine\eng_cryptodev.c" />
421 -->
422 <ClCompile Include="$(opensslDir)crypto\engine\eng_ctrl.c" />
423 <ClCompile Include="$(opensslDir)crypto\engine\eng_dyn.c" />
424 <ClCompile Include="$(opensslDir)crypto\engine\eng_err.c" />
425 <ClCompile Include="$(opensslDir)crypto\engine\eng_fat.c" />
426 <ClCompile Include="$(opensslDir)crypto\engine\eng_init.c" />
427 <ClCompile Include="$(opensslDir)crypto\engine\eng_lib.c" />
428 <ClCompile Include="$(opensslDir)crypto\engine\eng_list.c" />
429 <!--
430 <ClCompile Include="$(opensslDir)crypto\engine\eng_openssl.c" />
431 -->
432 <ClCompile Include="$(opensslDir)crypto\engine\eng_pkey.c" />
433 <!--
434 <ClCompile Include="$(opensslDir)crypto\engine\eng_rdrand.c" />
435 <ClCompile Include="$(opensslDir)crypto\engine\eng_rsax.c" />
436 -->
437 <ClCompile Include="$(opensslDir)crypto\engine\eng_table.c" />
438 <ClCompile Include="$(opensslDir)crypto\engine\tb_asnmth.c" />
439 <ClCompile Include="$(opensslDir)crypto\engine\tb_cipher.c" />
440 <ClCompile Include="$(opensslDir)crypto\engine\tb_dh.c" />
441 <ClCompile Include="$(opensslDir)crypto\engine\tb_digest.c" />
442 <ClCompile Include="$(opensslDir)crypto\engine\tb_dsa.c" />
443 <ClCompile Include="$(opensslDir)crypto\engine\tb_ecdh.c" />
444 <ClCompile Include="$(opensslDir)crypto\engine\tb_ecdsa.c" />
445 <ClCompile Include="$(opensslDir)crypto\engine\tb_pkmeth.c" />
446 <ClCompile Include="$(opensslDir)crypto\engine\tb_rand.c" />
447 <ClCompile Include="$(opensslDir)crypto\engine\tb_rsa.c" />
448 <!--
449 <ClCompile Include="$(opensslDir)crypto\engine\tb_store.c" />
450 -->
451 <ClCompile Include="$(opensslDir)crypto\err\err.c" />
452 <ClCompile Include="$(opensslDir)crypto\err\err_all.c" />
453 <ClCompile Include="$(opensslDir)crypto\err\err_prn.c" />
454 <ClCompile Include="$(opensslDir)crypto\evp\bio_b64.c" />
455 <ClCompile Include="$(opensslDir)crypto\evp\bio_enc.c" />
456 <ClCompile Include="$(opensslDir)crypto\evp\bio_md.c" />
457 <!--
458 <ClCompile Include="$(opensslDir)crypto\evp\bio_ok.c" />
459 -->
460 <ClCompile Include="$(opensslDir)crypto\evp\c_all.c" />
461 <ClCompile Include="$(opensslDir)crypto\evp\c_allc.c" />
462 <ClCompile Include="$(opensslDir)crypto\evp\c_alld.c" />
463 <ClCompile Include="$(opensslDir)crypto\evp\digest.c" />
464 <ClCompile Include="$(opensslDir)crypto\evp\e_aes.c" />
465 <ClCompile Include="$(opensslDir)crypto\evp\e_aes_cbc_hmac_sha1.c" />
466 <ClCompile Include="$(opensslDir)crypto\evp\e_bf.c" />
467 <ClCompile Include="$(opensslDir)crypto\evp\e_camellia.c" />
468 <ClCompile Include="$(opensslDir)crypto\evp\e_cast.c" />
469 <ClCompile Include="$(opensslDir)crypto\evp\e_des.c" />
470 <ClCompile Include="$(opensslDir)crypto\evp\e_des3.c" />
471 <!--
472 <ClCompile Include="$(opensslDir)crypto\evp\e_idea.c" />
473 -->
474 <ClCompile Include="$(opensslDir)crypto\evp\e_null.c" />
475 <!--
476 <ClCompile Include="$(opensslDir)crypto\evp\e_old.c" />
477 -->
478 <ClCompile Include="$(opensslDir)crypto\evp\e_rc2.c" />
479 <ClCompile Include="$(opensslDir)crypto\evp\e_rc4.c" />
480 <ClCompile Include="$(opensslDir)crypto\evp\e_rc4_hmac_md5.c" />
481 <!--
482 <ClCompile Include="$(opensslDir)crypto\evp\e_rc5.c" />
483 -->
484 <ClCompile Include="$(opensslDir)crypto\evp\e_seed.c" />
485 <ClCompile Include="$(opensslDir)crypto\evp\e_xcbc_d.c" />
486 <ClCompile Include="$(opensslDir)crypto\evp\encode.c" />
487 <!--
488 <ClCompile Include="$(opensslDir)crypto\evp\evp_acnf.c" />
489 -->
490 <ClCompile Include="$(opensslDir)crypto\evp\evp_cnf.c" />
491 <ClCompile Include="$(opensslDir)crypto\evp\evp_enc.c" />
492 <ClCompile Include="$(opensslDir)crypto\evp\evp_err.c" />
493 <!--
494 <ClCompile Include="$(opensslDir)crypto\evp\evp_fips.c" />
495 -->
496 <ClCompile Include="$(opensslDir)crypto\evp\evp_key.c" />
497 <ClCompile Include="$(opensslDir)crypto\evp\evp_lib.c" />
498 <ClCompile Include="$(opensslDir)crypto\evp\evp_pbe.c" />
499 <ClCompile Include="$(opensslDir)crypto\evp\evp_pkey.c" />
500 <ClCompile Include="$(opensslDir)crypto\evp\m_dss.c" />
501 <ClCompile Include="$(opensslDir)crypto\evp\m_dss1.c" />
502 <ClCompile Include="$(opensslDir)crypto\evp\m_ecdsa.c" />
503 <ClCompile Include="$(opensslDir)crypto\evp\m_md4.c" />
504 <ClCompile Include="$(opensslDir)crypto\evp\m_md5.c" />
505 <!--
506 <ClCompile Include="$(opensslDir)crypto\evp\m_null.c" />
507 -->
508 <ClCompile Include="$(opensslDir)crypto\evp\m_ripemd.c" />
509 <ClCompile Include="$(opensslDir)crypto\evp\m_sha.c" />
510 <ClCompile Include="$(opensslDir)crypto\evp\m_sha1.c" />
511 <ClCompile Include="$(opensslDir)crypto\evp\m_sigver.c" />
512 <ClCompile Include="$(opensslDir)crypto\evp\m_wp.c" />
513 <ClCompile Include="$(opensslDir)crypto\evp\names.c" />
514 <!--
515 <ClCompile Include="$(opensslDir)crypto\evp\p_dec.c" />
516 -->
517 <ClCompile Include="$(opensslDir)crypto\evp\p_lib.c" />
518 <!--
519 <ClCompile Include="$(opensslDir)crypto\evp\p_open.c" />
520 <ClCompile Include="$(opensslDir)crypto\evp\p_seal.c" />
521 -->
522 <ClCompile Include="$(opensslDir)crypto\evp\p_sign.c" />
523 <ClCompile Include="$(opensslDir)crypto\evp\p_verify.c" />
524 <ClCompile Include="$(opensslDir)crypto\evp\p5_crpt.c" />
525 <ClCompile Include="$(opensslDir)crypto\evp\p5_crpt2.c" />
526 <ClCompile Include="$(opensslDir)crypto\evp\pmeth_fn.c" />
527 <ClCompile Include="$(opensslDir)crypto\evp\pmeth_gn.c" />
528 <ClCompile Include="$(opensslDir)crypto\evp\pmeth_lib.c" />
529 <ClCompile Include="$(opensslDir)crypto\ex_data.c" />
530 <!--
531 <ClCompile Include="$(opensslDir)crypto\fips_ers.c" />
532 -->
533 <ClCompile Include="$(opensslDir)crypto\hmac\hm_ameth.c" />
534 <ClCompile Include="$(opensslDir)crypto\hmac\hm_pmeth.c" />
535 <ClCompile Include="$(opensslDir)crypto\hmac\hmac.c" />
536 <!--
537 <ClCompile Include="$(opensslDir)crypto\krb5\krb5_asn.c" />
538 <ClCompile Include="$(opensslDir)crypto\lhash\lh_stats.c" />
539 -->
540 <ClCompile Include="$(opensslDir)crypto\lhash\lhash.c" />
541 <ClCompile Include="$(opensslDir)crypto\md4\md4_dgst.c" />
542 <!--
543 <ClCompile Include="$(opensslDir)crypto\md4\md4_one.c" />
544 -->
545 <ClCompile Include="$(opensslDir)crypto\md5\md5_dgst.c" />
546 <!--
547 <ClCompile Include="$(opensslDir)crypto\md5\md5_one.c" />
548 -->
549 <ClCompile Include="$(opensslDir)crypto\mem.c" />
550 <ClCompile Include="$(opensslDir)crypto\mem_dbg.c" />
551 <ClCompile Include="$(opensslDir)crypto\modes\cbc128.c" />
552 <ClCompile Include="$(opensslDir)crypto\modes\ccm128.c" />
553 <ClCompile Include="$(opensslDir)crypto\modes\cfb128.c" />
554 <ClCompile Include="$(opensslDir)crypto\modes\ctr128.c" />
555 <ClCompile Include="$(opensslDir)crypto\modes\cts128.c" />
556 <ClCompile Include="$(opensslDir)crypto\modes\gcm128.c" />
557 <ClCompile Include="$(opensslDir)crypto\modes\ofb128.c" />
558 <ClCompile Include="$(opensslDir)crypto\modes\xts128.c" />
559 <ClCompile Include="$(opensslDir)crypto\o_dir.c" />
560 <!--
561 <ClCompile Include="$(opensslDir)crypto\o_fips.c" />
562 -->
563 <ClCompile Include="$(opensslDir)crypto\o_init.c" />
564 <!--
565 <ClCompile Include="$(opensslDir)crypto\o_str.c" />
566 -->
567 <ClCompile Include="$(opensslDir)crypto\o_time.c" />
568 <ClCompile Include="$(opensslDir)crypto\objects\o_names.c" />
569 <ClCompile Include="$(opensslDir)crypto\objects\obj_dat.c" />
570 <ClCompile Include="$(opensslDir)crypto\objects\obj_err.c" />
571 <ClCompile Include="$(opensslDir)crypto\objects\obj_lib.c" />
572 <ClCompile Include="$(opensslDir)crypto\objects\obj_xref.c" />
573 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_asn.c" />
574 <!--
575 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_cl.c" />
576 -->
577 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_err.c" />
578 <!--
579 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_ext.c" />
580 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_ht.c" />
581 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_lib.c" />
582 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_prn.c" />
583 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_srv.c" />
584 <ClCompile Include="$(opensslDir)crypto\ocsp\ocsp_vfy.c" />
585 -->
586 <ClCompile Include="$(opensslDir)crypto\pem\pem_all.c" />
587 <ClCompile Include="$(opensslDir)crypto\pem\pem_err.c" />
588 <ClCompile Include="$(opensslDir)crypto\pem\pem_info.c" />
589 <ClCompile Include="$(opensslDir)crypto\pem\pem_lib.c" />
590 <ClCompile Include="$(opensslDir)crypto\pem\pem_oth.c" />
591 <ClCompile Include="$(opensslDir)crypto\pem\pem_pk8.c" />
592 <ClCompile Include="$(opensslDir)crypto\pem\pem_pkey.c" />
593 <!--
594 <ClCompile Include="$(opensslDir)crypto\pem\pem_seal.c" />
595 <ClCompile Include="$(opensslDir)crypto\pem\pem_sign.c" />
596 -->
597 <ClCompile Include="$(opensslDir)crypto\pem\pem_x509.c" />
598 <ClCompile Include="$(opensslDir)crypto\pem\pem_xaux.c" />
599 <ClCompile Include="$(opensslDir)crypto\pem\pvkfmt.c" />
600 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_add.c" />
601 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_asn.c" />
602 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_attr.c" />
603 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crpt.c" />
604 <!--
605 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crt.c" />
606 -->
607 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_decr.c" />
608 <!--
609 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_init.c" />
610 -->
611 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_key.c" />
612 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_kiss.c" />
613 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_mutl.c" />
614 <!--
615 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_npas.c" />
616 -->
617 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_p8d.c" />
618 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_p8e.c" />
619 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_utl.c" />
620 <ClCompile Include="$(opensslDir)crypto\pkcs12\pk12err.c" />
621 <!--
622 <ClCompile Include="$(opensslDir)crypto\pkcs7\bio_pk7.c" />
623 -->
624 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_asn1.c" />
625 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_attr.c" />
626 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_doit.c" />
627 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_lib.c" />
628 <!--
629 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_mime.c" />
630 <ClCompile Include="$(opensslDir)crypto\pkcs7\pk7_smime.c" />
631 -->
632 <ClCompile Include="$(opensslDir)crypto\pkcs7\pkcs7err.c" />
633 <ClCompile Include="$(opensslDir)crypto\pqueue\pqueue.c" />
634 <ClCompile Include="$(opensslDir)crypto\rand\md_rand.c" />
635 <ClCompile Include="$(opensslDir)crypto\rand\rand_egd.c" />
636 <ClCompile Include="$(opensslDir)crypto\rand\rand_err.c" />
637 <ClCompile Include="$(opensslDir)crypto\rand\rand_lib.c" />
638 <!--
639 <ClCompile Include="$(opensslDir)crypto\rand\rand_nw.c" />
640 <ClCompile Include="$(opensslDir)crypto\rand\rand_os2.c" />
641 <ClCompile Include="$(opensslDir)crypto\rand\rand_unix.c" />
642 -->
643 <ClCompile Include="$(opensslDir)crypto\rand\rand_win.c" />
644 <!--
645 <ClCompile Include="$(opensslDir)crypto\rand\randfile.c" />
646 -->
647 <ClCompile Include="$(opensslDir)crypto\rc2\rc2_cbc.c" />
648 <ClCompile Include="$(opensslDir)crypto\rc2\rc2_ecb.c" />
649 <ClCompile Include="$(opensslDir)crypto\rc2\rc2_skey.c" />
650 <ClCompile Include="$(opensslDir)crypto\rc2\rc2cfb64.c" />
651 <ClCompile Include="$(opensslDir)crypto\rc2\rc2ofb64.c" />
652 <ClCompile Include="$(opensslDir)crypto\rc4\rc4_utl.c" />
653 <ClCompile Include="$(opensslDir)crypto\ripemd\rmd_dgst.c" />
654 <!--
655 <ClCompile Include="$(opensslDir)crypto\ripemd\rmd_one.c" />
656 -->
657 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_ameth.c" />
658 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_asn1.c" />
659 <!--
660 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_chk.c" />
661 -->
662 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_crpt.c" />
663 <!--
664 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_depr.c" />
665 -->
666 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_eay.c" />
667 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_err.c" />
668 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_gen.c" />
669 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_lib.c" />
670 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_none.c" />
671 <!--
672 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_null.c" />
673 -->
674 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_oaep.c" />
675 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_pk1.c" />
676 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_pmeth.c" />
677 <!--
678 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_prn.c" />
679 -->
680 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_pss.c" />
681 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_saos.c" />
682 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_sign.c" />
683 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_ssl.c" />
684 <ClCompile Include="$(opensslDir)crypto\rsa\rsa_x931.c" />
685 <ClCompile Include="$(opensslDir)crypto\seed\seed.c" />
686 <ClCompile Include="$(opensslDir)crypto\seed\seed_cbc.c" />
687 <ClCompile Include="$(opensslDir)crypto\seed\seed_cfb.c" />
688 <ClCompile Include="$(opensslDir)crypto\seed\seed_ecb.c" />
689 <ClCompile Include="$(opensslDir)crypto\seed\seed_ofb.c" />
690 <ClCompile Include="$(opensslDir)crypto\sha\sha_dgst.c" />
691 <ClCompile Include="$(opensslDir)crypto\sha\sha_one.c" />
692 <ClCompile Include="$(opensslDir)crypto\sha\sha1_one.c" />
693 <ClCompile Include="$(opensslDir)crypto\sha\sha1dgst.c" />
694 <ClCompile Include="$(opensslDir)crypto\sha\sha256.c" />
695 <ClCompile Include="$(opensslDir)crypto\sha\sha512.c" />
696 <ClCompile Include="$(opensslDir)crypto\srp\srp_lib.c" />
697 <ClCompile Include="$(opensslDir)crypto\srp\srp_vfy.c" />
698 <ClCompile Include="$(opensslDir)crypto\stack\stack.c" />
699 <!--
700 <ClCompile Include="$(opensslDir)crypto\ts\ts_asn1.c" />
701 <ClCompile Include="$(opensslDir)crypto\ts\ts_conf.c" />
702 -->
703 <ClCompile Include="$(opensslDir)crypto\ts\ts_err.c" />
704 <!--
705 <ClCompile Include="$(opensslDir)crypto\ts\ts_lib.c" />
706 <ClCompile Include="$(opensslDir)crypto\ts\ts_req_print.c" />
707 <ClCompile Include="$(opensslDir)crypto\ts\ts_req_utils.c" />
708 <ClCompile Include="$(opensslDir)crypto\ts\ts_rsp_print.c" />
709 <ClCompile Include="$(opensslDir)crypto\ts\ts_rsp_sign.c" />
710 <ClCompile Include="$(opensslDir)crypto\ts\ts_rsp_utils.c" />
711 <ClCompile Include="$(opensslDir)crypto\ts\ts_rsp_verify.c" />
712 <ClCompile Include="$(opensslDir)crypto\ts\ts_verify_ctx.c" />
713 -->
714 <ClCompile Include="$(opensslDir)crypto\txt_db\txt_db.c" />
715 <!--
716 <ClCompile Include="$(opensslDir)crypto\ui\ui_compat.c" />
717 -->
718 <ClCompile Include="$(opensslDir)crypto\ui\ui_err.c" />
719 <ClCompile Include="$(opensslDir)crypto\ui\ui_lib.c" />
720 <ClCompile Include="$(opensslDir)crypto\ui\ui_openssl.c" />
721 <ClCompile Include="$(opensslDir)crypto\ui\ui_util.c" />
722 <!--
723 <ClCompile Include="$(opensslDir)crypto\uid.c" />
724 -->
725 <ClCompile Include="$(opensslDir)crypto\whrlpool\wp_dgst.c" />
726 <ClCompile Include="$(opensslDir)crypto\x509\by_dir.c" />
727 <ClCompile Include="$(opensslDir)crypto\x509\by_file.c" />
728 <ClCompile Include="$(opensslDir)crypto\x509\x_all.c" />
729 <ClCompile Include="$(opensslDir)crypto\x509\x509_att.c" />
730 <ClCompile Include="$(opensslDir)crypto\x509\x509_cmp.c" />
731 <ClCompile Include="$(opensslDir)crypto\x509\x509_d2.c" />
732 <ClCompile Include="$(opensslDir)crypto\x509\x509_def.c" />
733 <ClCompile Include="$(opensslDir)crypto\x509\x509_err.c" />
734 <ClCompile Include="$(opensslDir)crypto\x509\x509_ext.c" />
735 <ClCompile Include="$(opensslDir)crypto\x509\x509_lu.c" />
736 <ClCompile Include="$(opensslDir)crypto\x509\x509_obj.c" />
737 <!--
738 <ClCompile Include="$(opensslDir)crypto\x509\x509_r2x.c" />
739 -->
740 <ClCompile Include="$(opensslDir)crypto\x509\x509_req.c" />
741 <!--
742 <ClCompile Include="$(opensslDir)crypto\x509\x509_set.c" />
743 -->
744 <ClCompile Include="$(opensslDir)crypto\x509\x509_trs.c" />
745 <!--
746 <ClCompile Include="$(opensslDir)crypto\x509\x509_txt.c" />
747 -->
748 <ClCompile Include="$(opensslDir)crypto\x509\x509_v3.c" />
749 <ClCompile Include="$(opensslDir)crypto\x509\x509_vfy.c" />
750 <ClCompile Include="$(opensslDir)crypto\x509\x509_vpm.c" />
751 <!--
752 <ClCompile Include="$(opensslDir)crypto\x509\x509cset.c" />
753 -->
754 <ClCompile Include="$(opensslDir)crypto\x509\x509name.c" />
755 <ClCompile Include="$(opensslDir)crypto\x509\x509rset.c" />
756 <!--
757 <ClCompile Include="$(opensslDir)crypto\x509\x509spki.c" />
758 -->
759 <ClCompile Include="$(opensslDir)crypto\x509\x509type.c" />
760 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_cache.c" />
761 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_data.c" />
762 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_lib.c" />
763 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_map.c" />
764 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_node.c" />
765 <ClCompile Include="$(opensslDir)crypto\x509v3\pcy_tree.c" />
766 <!--
767 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_addr.c" />
768 -->
769 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_akey.c" />
770 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_akeya.c" />
771 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_alt.c" />
772 <!--
773 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_asid.c" />
774 -->
775 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_bcons.c" />
776 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_bitst.c" />
777 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_conf.c" />
778 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_cpols.c" />
779 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_crld.c" />
780 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_enum.c" />
781 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_extku.c" />
782 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_genn.c" />
783 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_ia5.c" />
784 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_info.c" />
785 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_int.c" />
786 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_lib.c" />
787 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_ncons.c" />
788 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_ocsp.c" />
789 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_pci.c" />
790 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_pcia.c" />
791 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_pcons.c" />
792 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_pku.c" />
793 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_pmaps.c" />
794 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_prn.c" />
795 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_purp.c" />
796 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_skey.c" />
797 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_sxnet.c" />
798 <ClCompile Include="$(opensslDir)crypto\x509v3\v3_utl.c" />
799 <ClCompile Include="$(opensslDir)crypto\x509v3\v3err.c" />
800 <ClCompile Include="$(opensslDir)engines\ccgost\e_gost_err.c" />
801 <ClCompile Include="$(opensslDir)engines\ccgost\gost_ameth.c" />
802 <ClCompile Include="$(opensslDir)engines\ccgost\gost_asn1.c" />
803 <ClCompile Include="$(opensslDir)engines\ccgost\gost_crypt.c" />
804 <ClCompile Include="$(opensslDir)engines\ccgost\gost_ctl.c" />
805 <ClCompile Include="$(opensslDir)engines\ccgost\gost_eng.c" />
806 <ClCompile Include="$(opensslDir)engines\ccgost\gost_keywrap.c" />
807 <ClCompile Include="$(opensslDir)engines\ccgost\gost_md.c" />
808 <ClCompile Include="$(opensslDir)engines\ccgost\gost_params.c" />
809 <ClCompile Include="$(opensslDir)engines\ccgost\gost_pmeth.c" />
810 <ClCompile Include="$(opensslDir)engines\ccgost\gost_sign.c" />
811 <ClCompile Include="$(opensslDir)engines\ccgost\gost2001.c" />
812 <ClCompile Include="$(opensslDir)engines\ccgost\gost2001_keyx.c" />
813 <ClCompile Include="$(opensslDir)engines\ccgost\gost89.c" />
814 <ClCompile Include="$(opensslDir)engines\ccgost\gost94_keyx.c" />
815 <ClCompile Include="$(opensslDir)engines\ccgost\gosthash.c" />
816 <ClCompile Include="$(opensslDir)engines\e_4758cca.c" />
817 <ClCompile Include="$(opensslDir)engines\e_aep.c" />
818 <ClCompile Include="$(opensslDir)engines\e_atalla.c" />
819 <ClCompile Include="$(opensslDir)engines\e_capi.c" />
820 <ClCompile Include="$(opensslDir)engines\e_chil.c" />
821 <ClCompile Include="$(opensslDir)engines\e_cswift.c" />
822 <ClCompile Include="$(opensslDir)engines\e_gmp.c" />
823 <ClCompile Include="$(opensslDir)engines\e_nuron.c" />
824 <ClCompile Include="$(opensslDir)engines\e_padlock.c" />
825 <ClCompile Include="$(opensslDir)engines\e_sureware.c" />
826 <ClCompile Include="$(opensslDir)engines\e_ubsec.c" />
827 </ItemGroup>
828 <ItemGroup Condition="$(Platform) == 'Win32'">
829 <ClCompile Include="$(opensslDir)crypto\whrlpool\wp_block.c" />
830 </ItemGroup>
831 <ItemGroup Condition="$(Platform) == 'x64'">
832 <ClCompile Include="$(opensslDir)crypto\bf\bf_enc.c" />
833 <ClCompile Include="$(opensslDir)crypto\bn\bn_asm.c" />
834 <ClCompile Include="$(opensslDir)crypto\camellia\cmll_misc.c" />
835 <ClCompile Include="$(opensslDir)crypto\cast\c_enc.c" />
836 <ClCompile Include="$(opensslDir)crypto\des\des_enc.c" />
837 <ClCompile Include="$(opensslDir)crypto\des\fcrypt_b.c" />
838 </ItemGroup>
839
840 <ItemGroup Condition="$(Platform) == 'Win32'">
841 <NasmCompile Include="$(opensslDir)tmp32\aes-586.asm" />
842 <NasmCompile Include="$(opensslDir)tmp32\aesni-x86.asm" />
843 <NasmCompile Include="$(opensslDir)tmp32\bf-586.asm" />
844 <NasmCompile Include="$(opensslDir)tmp32\bn-586.asm" />
845 <NasmCompile Include="$(opensslDir)tmp32\cast-586.asm" />
846 <NasmCompile Include="$(opensslDir)tmp32\cmll-x86.asm" />
847 <NasmCompile Include="$(opensslDir)tmp32\co-586.asm" />
848 <NasmCompile Include="$(opensslDir)tmp32\crypt586.asm" />
849 <NasmCompile Include="$(opensslDir)tmp32\des-586.asm" />
850 <NasmCompile Include="$(opensslDir)tmp32\ghash-x86.asm" />
851 <NasmCompile Include="$(opensslDir)tmp32\md5-586.asm" />
852 <NasmCompile Include="$(opensslDir)tmp32\rc4-586.asm" />
853 <NasmCompile Include="$(opensslDir)tmp32\rmd-586.asm" />
854 <NasmCompile Include="$(opensslDir)tmp32\sha1-586.asm" />
855 <NasmCompile Include="$(opensslDir)tmp32\sha256-586.asm" />
856 <NasmCompile Include="$(opensslDir)tmp32\sha512-586.asm" />
857 <NasmCompile Include="$(opensslDir)tmp32\vpaes-x86.asm" />
858 <NasmCompile Include="$(opensslDir)tmp32\wp-mmx.asm" />
859 <NasmCompile Include="$(opensslDir)tmp32\x86cpuid.asm" />
860 <NasmCompile Include="$(opensslDir)tmp32\x86-gf2m.asm" />
861 <NasmCompile Include="$(opensslDir)tmp32\x86-mont.asm" />
862 </ItemGroup>
863 <ItemGroup Condition="$(Platform) == 'x64'">
864 <NasmCompile Include="$(opensslDir)tmp64\aesni-sha1-x86_64.asm" />
865 <NasmCompile Include="$(opensslDir)tmp64\aesni-sha1-x86_64.asm" />
866 <NasmCompile Include="$(opensslDir)tmp64\aesni-x86_64.asm" />
867 <NasmCompile Include="$(opensslDir)tmp64\aes-x86_64.asm" />
868 <NasmCompile Include="$(opensslDir)tmp64\bsaes-x86_64.asm" />
869 <NasmCompile Include="$(opensslDir)tmp64\cmll-x86_64.asm" />
870 <NasmCompile Include="$(opensslDir)tmp64\ghash-x86_64.asm" />
871 <NasmCompile Include="$(opensslDir)tmp64\md5-x86_64.asm" />
872 <NasmCompile Include="$(opensslDir)tmp64\modexp512-x86_64.asm" />
873 <NasmCompile Include="$(opensslDir)tmp64\rc4-md5-x86_64.asm" />
874 <NasmCompile Include="$(opensslDir)tmp64\rc4-x86_64.asm" />
875 <NasmCompile Include="$(opensslDir)tmp64\sha1-x86_64.asm" />
876 <NasmCompile Include="$(opensslDir)tmp64\sha256-x86_64.asm" />
877 <NasmCompile Include="$(opensslDir)tmp64\sha512-x86_64.asm" />
878 <NasmCompile Include="$(opensslDir)tmp64\vpaes-x86_64.asm" />
879 <NasmCompile Include="$(opensslDir)tmp64\wp-x86_64.asm" />
880 <NasmCompile Include="$(opensslDir)tmp64\x86_64cpuid.asm" />
881 <NasmCompile Include="$(opensslDir)tmp64\x86_64-gf2m.asm" />
882 <NasmCompile Include="$(opensslDir)tmp64\x86_64-mont.asm" />
883 <NasmCompile Include="$(opensslDir)tmp64\x86_64-mont5.asm" />
884 </ItemGroup>
885
886 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
887 <Target Name="Clean" />
888 <Target Name="CleanAll">
889 <Delete Files="$(TargetPath)" />
890 <RemoveDir Directories="$(IntDir)" />
891 </Target>
892</Project>