Sun, 17 Dec 2023 15:33:50 +0100
fix faulty string to int conversion utilities
Probably it was expected that errno is set to EINVAL when illegal characters are encountered. But this is not standard and does not happen on every system, allowing illegal strings to be parsed as valid integers.
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | <?xml version="1.0" encoding="utf-8"?> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | <ItemGroup Label="ProjectConfigurations"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
4 | <ProjectConfiguration Include="Debug|Win32"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
5 | <Configuration>Debug</Configuration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
6 | <Platform>Win32</Platform> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
7 | </ProjectConfiguration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
8 | <ProjectConfiguration Include="Release|Win32"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
9 | <Configuration>Release</Configuration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
10 | <Platform>Win32</Platform> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
11 | </ProjectConfiguration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
12 | <ProjectConfiguration Include="Debug|x64"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
13 | <Configuration>Debug</Configuration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
14 | <Platform>x64</Platform> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
15 | </ProjectConfiguration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
16 | <ProjectConfiguration Include="Release|x64"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
17 | <Configuration>Release</Configuration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
18 | <Platform>x64</Platform> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
19 | </ProjectConfiguration> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
20 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
21 | <PropertyGroup Label="Globals"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
22 | <VCProjectVersion>17.0</VCProjectVersion> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
23 | <Keyword>Win32Proj</Keyword> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
24 | <ProjectGuid>{ea9525df-6935-41c6-8330-351aad8555b8}</ProjectGuid> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
25 | <RootNamespace>test</RootNamespace> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
26 | <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
30 | <ConfigurationType>Application</ConfigurationType> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
31 | <UseDebugLibraries>true</UseDebugLibraries> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
32 | <PlatformToolset>v143</PlatformToolset> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
33 | <CharacterSet>Unicode</CharacterSet> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
34 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
35 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
36 | <ConfigurationType>Application</ConfigurationType> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
37 | <UseDebugLibraries>false</UseDebugLibraries> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
38 | <PlatformToolset>v143</PlatformToolset> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
39 | <WholeProgramOptimization>true</WholeProgramOptimization> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
40 | <CharacterSet>Unicode</CharacterSet> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
41 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
43 | <ConfigurationType>Application</ConfigurationType> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
44 | <UseDebugLibraries>true</UseDebugLibraries> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
45 | <PlatformToolset>v143</PlatformToolset> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
46 | <CharacterSet>Unicode</CharacterSet> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
47 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
48 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
49 | <ConfigurationType>Application</ConfigurationType> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
50 | <UseDebugLibraries>false</UseDebugLibraries> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
51 | <PlatformToolset>v143</PlatformToolset> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
52 | <WholeProgramOptimization>true</WholeProgramOptimization> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
53 | <CharacterSet>Unicode</CharacterSet> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
54 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
55 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
56 | <ImportGroup Label="ExtensionSettings"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
57 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
58 | <ImportGroup Label="Shared"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
59 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
60 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
61 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
62 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
63 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
64 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
65 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
66 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
67 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
68 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
69 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
70 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
71 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
72 | <PropertyGroup Label="UserMacros" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
73 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
74 | <OutDir>$(SolutionDir)..\..\build\vs\$(Platform)\$(Configuration)\</OutDir> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
75 | <IntDir>..\..\..\build\vs\test\$(Platform)\$(Configuration)\</IntDir> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
76 | </PropertyGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
77 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
78 | <ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
79 | <WarningLevel>Level3</WarningLevel> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
80 | <SDLCheck>true</SDLCheck> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
81 | <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
82 | <ConformanceMode>true</ConformanceMode> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
83 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
84 | <Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
85 | <SubSystem>Console</SubSystem> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
86 | <GenerateDebugInformation>true</GenerateDebugInformation> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
87 | </Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
88 | </ItemDefinitionGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
89 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
90 | <ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
91 | <WarningLevel>Level3</WarningLevel> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
92 | <FunctionLevelLinking>true</FunctionLevelLinking> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
93 | <IntrinsicFunctions>true</IntrinsicFunctions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
94 | <SDLCheck>true</SDLCheck> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
95 | <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
96 | <ConformanceMode>true</ConformanceMode> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
97 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
98 | <Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
99 | <SubSystem>Console</SubSystem> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
100 | <EnableCOMDATFolding>true</EnableCOMDATFolding> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
101 | <OptimizeReferences>true</OptimizeReferences> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
102 | <GenerateDebugInformation>true</GenerateDebugInformation> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
103 | </Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
104 | </ItemDefinitionGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
105 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
106 | <ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
107 | <WarningLevel>Level3</WarningLevel> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
108 | <SDLCheck>true</SDLCheck> |
793
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
109 | <PreprocessorDefinitions>_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
110 | <ConformanceMode>true</ConformanceMode> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
111 | <AdditionalIncludeDirectories>..\..\..\ucx;..\vcpkg_installed\x64-windows\x64-windows\include;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
112 | <LanguageStandard_C>stdc17</LanguageStandard_C> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
113 | <AdditionalOptions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
114 | </AdditionalOptions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
115 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
116 | <Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
117 | <SubSystem>Console</SubSystem> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
118 | <GenerateDebugInformation>true</GenerateDebugInformation> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
119 | <AdditionalLibraryDirectories>..\vcpkg_installed\x64-windows\x64-windows\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
120 | <AdditionalDependencies>charset.lib;iconv.lib;libcurl.lib;libxml2.lib;lzma.lib;zlib.lib;bcrypt.lib;%(AdditionalDependencies)</AdditionalDependencies> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
121 | </Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
122 | </ItemDefinitionGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
123 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
124 | <ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
125 | <WarningLevel>Level3</WarningLevel> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
126 | <FunctionLevelLinking>true</FunctionLevelLinking> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
127 | <IntrinsicFunctions>true</IntrinsicFunctions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
128 | <SDLCheck>true</SDLCheck> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
129 | <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
130 | <ConformanceMode>true</ConformanceMode> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
131 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
132 | <Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
133 | <SubSystem>Console</SubSystem> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
134 | <EnableCOMDATFolding>true</EnableCOMDATFolding> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
135 | <OptimizeReferences>true</OptimizeReferences> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
136 | <GenerateDebugInformation>true</GenerateDebugInformation> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
137 | </Link> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
138 | </ItemDefinitionGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
139 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
140 | <ClCompile Include="..\..\..\test\base64.c" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
141 | <ClCompile Include="..\..\..\test\crypto.c" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
142 | <ClCompile Include="..\..\..\test\main.c" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
143 | <ClCompile Include="..\..\..\test\test.c" /> |
793
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
144 | <ClCompile Include="..\..\..\test\utils.c" /> |
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
145 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
146 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
147 | <ClInclude Include="..\..\..\test\base64.h" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
148 | <ClInclude Include="..\..\..\test\crypto.h" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
149 | <ClInclude Include="..\..\..\test\test.h" /> |
793
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
150 | <ClInclude Include="..\..\..\test\utils.h" /> |
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
151 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
152 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
153 | <ProjectReference Include="..\libidav\libidav.vcxproj"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
154 | <Project>{c29c0378-6548-48e8-9426-31922515212a}</Project> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
155 | </ProjectReference> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
156 | <ProjectReference Include="..\ucx\ucx.vcxproj"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
157 | <Project>{27da0164-3475-43e2-a1a4-a5d07d305749}</Project> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
158 | </ProjectReference> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
159 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
160 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
161 | <ImportGroup Label="ExtensionTargets"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
162 | </ImportGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
163 | </Project> |