sorcery-argon2 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +0 -2
- data/.rubocop.yml +34 -2
- data/CHANGELOG.md +4 -0
- data/MAINTAINING.md +8 -3
- data/bin/setup +3 -0
- data/ext/phc-winner-argon2/.gitattributes +10 -0
- data/ext/phc-winner-argon2/.gitignore +22 -0
- data/ext/phc-winner-argon2/.travis.yml +25 -0
- data/ext/phc-winner-argon2/Argon2.sln +158 -0
- data/ext/phc-winner-argon2/CHANGELOG.md +32 -0
- data/ext/phc-winner-argon2/LICENSE +314 -0
- data/ext/phc-winner-argon2/Makefile +255 -0
- data/ext/phc-winner-argon2/Package.swift +46 -0
- data/ext/phc-winner-argon2/README.md +303 -0
- data/ext/phc-winner-argon2/appveyor.yml +25 -0
- data/ext/phc-winner-argon2/argon2-specs.pdf +0 -0
- data/ext/phc-winner-argon2/export.sh +7 -0
- data/ext/phc-winner-argon2/include/argon2.h +437 -0
- data/ext/phc-winner-argon2/kats/argon2d +12304 -0
- data/ext/phc-winner-argon2/kats/argon2d.shasum +1 -0
- data/ext/phc-winner-argon2/kats/argon2d_v16 +12304 -0
- data/ext/phc-winner-argon2/kats/argon2d_v16.shasum +1 -0
- data/ext/phc-winner-argon2/kats/argon2i +12304 -0
- data/ext/phc-winner-argon2/kats/argon2i.shasum +1 -0
- data/ext/phc-winner-argon2/kats/argon2i_v16 +12304 -0
- data/ext/phc-winner-argon2/kats/argon2i_v16.shasum +1 -0
- data/ext/phc-winner-argon2/kats/argon2id +12304 -0
- data/ext/phc-winner-argon2/kats/argon2id.shasum +1 -0
- data/ext/phc-winner-argon2/kats/argon2id_v16 +12304 -0
- data/ext/phc-winner-argon2/kats/argon2id_v16.shasum +1 -0
- data/ext/phc-winner-argon2/kats/check-sums.ps1 +42 -0
- data/ext/phc-winner-argon2/kats/check-sums.sh +13 -0
- data/ext/phc-winner-argon2/kats/test.ps1 +50 -0
- data/ext/phc-winner-argon2/kats/test.sh +49 -0
- data/ext/phc-winner-argon2/latex/IEEEtran.cls +6347 -0
- data/ext/phc-winner-argon2/latex/Makefile +18 -0
- data/ext/phc-winner-argon2/latex/argon2-specs.tex +920 -0
- data/ext/phc-winner-argon2/latex/pics/argon2-par.pdf +0 -0
- data/ext/phc-winner-argon2/latex/pics/compression.pdf +0 -0
- data/ext/phc-winner-argon2/latex/pics/generic.pdf +0 -0
- data/ext/phc-winner-argon2/latex/pics/power-distribution.jpg +0 -0
- data/ext/phc-winner-argon2/latex/tradeoff.bib +822 -0
- data/ext/phc-winner-argon2/libargon2.pc.in +18 -0
- data/ext/phc-winner-argon2/man/argon2.1 +57 -0
- data/ext/phc-winner-argon2/src/argon2.c +452 -0
- data/ext/phc-winner-argon2/src/bench.c +111 -0
- data/ext/phc-winner-argon2/src/blake2/blake2-impl.h +156 -0
- data/ext/phc-winner-argon2/src/blake2/blake2.h +89 -0
- data/ext/phc-winner-argon2/src/blake2/blake2b.c +390 -0
- data/ext/phc-winner-argon2/src/blake2/blamka-round-opt.h +471 -0
- data/ext/phc-winner-argon2/src/blake2/blamka-round-ref.h +56 -0
- data/ext/phc-winner-argon2/src/core.c +648 -0
- data/ext/phc-winner-argon2/src/core.h +228 -0
- data/ext/phc-winner-argon2/src/encoding.c +463 -0
- data/ext/phc-winner-argon2/src/encoding.h +57 -0
- data/ext/phc-winner-argon2/src/genkat.c +213 -0
- data/ext/phc-winner-argon2/src/genkat.h +51 -0
- data/ext/phc-winner-argon2/src/opt.c +283 -0
- data/ext/phc-winner-argon2/src/ref.c +194 -0
- data/ext/phc-winner-argon2/src/run.c +337 -0
- data/ext/phc-winner-argon2/src/test.c +289 -0
- data/ext/phc-winner-argon2/src/thread.c +57 -0
- data/ext/phc-winner-argon2/src/thread.h +67 -0
- data/ext/phc-winner-argon2/vs2015/Argon2Opt/Argon2Opt.vcxproj +231 -0
- data/ext/phc-winner-argon2/vs2015/Argon2Opt/Argon2Opt.vcxproj.filters +69 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptBench/Argon2OptBench.vcxproj +231 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptBench/Argon2OptBench.vcxproj.filters +69 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptDll/Argon2OptDll.vcxproj +230 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptDll/Argon2OptDll.vcxproj.filters +66 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptGenKAT/Argon2OptGenKAT.vcxproj +244 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptGenKAT/Argon2OptGenKAT.vcxproj.filters +72 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptTestCI/Argon2OptTestCI.vcxproj +235 -0
- data/ext/phc-winner-argon2/vs2015/Argon2OptTestCI/Argon2OptTestCI.vcxproj.filters +69 -0
- data/ext/phc-winner-argon2/vs2015/Argon2Ref/Argon2Ref.vcxproj +243 -0
- data/ext/phc-winner-argon2/vs2015/Argon2Ref/Argon2Ref.vcxproj.filters +69 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefBench/Argon2RefBench.vcxproj +231 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefBench/Argon2RefBench.vcxproj.filters +69 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefDll/Argon2RefDll.vcxproj +230 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefDll/Argon2RefDll.vcxproj.filters +66 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefGenKAT/Argon2RefGenKAT.vcxproj +232 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefGenKAT/Argon2RefGenKAT.vcxproj.filters +72 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefTestCI/Argon2RefTestCI.vcxproj +231 -0
- data/ext/phc-winner-argon2/vs2015/Argon2RefTestCI/Argon2RefTestCI.vcxproj.filters +69 -0
- data/lib/argon2/ffi_engine.rb +4 -4
- data/lib/argon2/password.rb +11 -3
- data/lib/argon2/version.rb +1 -1
- metadata +84 -3
@@ -0,0 +1,66 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup>
|
4
|
+
<Filter Include="Source Files">
|
5
|
+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
6
|
+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
7
|
+
</Filter>
|
8
|
+
<Filter Include="Header Files">
|
9
|
+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
10
|
+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
11
|
+
</Filter>
|
12
|
+
<Filter Include="Resource Files">
|
13
|
+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
14
|
+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
15
|
+
</Filter>
|
16
|
+
</ItemGroup>
|
17
|
+
<ItemGroup>
|
18
|
+
<ClInclude Include="..\..\include\argon2.h">
|
19
|
+
<Filter>Header Files</Filter>
|
20
|
+
</ClInclude>
|
21
|
+
<ClInclude Include="..\..\src\blake2\blake2.h">
|
22
|
+
<Filter>Header Files</Filter>
|
23
|
+
</ClInclude>
|
24
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h">
|
25
|
+
<Filter>Header Files</Filter>
|
26
|
+
</ClInclude>
|
27
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h">
|
28
|
+
<Filter>Header Files</Filter>
|
29
|
+
</ClInclude>
|
30
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h">
|
31
|
+
<Filter>Header Files</Filter>
|
32
|
+
</ClInclude>
|
33
|
+
<ClInclude Include="..\..\src\core.h">
|
34
|
+
<Filter>Header Files</Filter>
|
35
|
+
</ClInclude>
|
36
|
+
<ClInclude Include="..\..\src\encoding.h">
|
37
|
+
<Filter>Header Files</Filter>
|
38
|
+
</ClInclude>
|
39
|
+
<ClInclude Include="..\..\src\opt.h">
|
40
|
+
<Filter>Header Files</Filter>
|
41
|
+
</ClInclude>
|
42
|
+
<ClInclude Include="..\..\src\thread.h">
|
43
|
+
<Filter>Header Files</Filter>
|
44
|
+
</ClInclude>
|
45
|
+
</ItemGroup>
|
46
|
+
<ItemGroup>
|
47
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c">
|
48
|
+
<Filter>Source Files</Filter>
|
49
|
+
</ClCompile>
|
50
|
+
<ClCompile Include="..\..\src\argon2.c">
|
51
|
+
<Filter>Source Files</Filter>
|
52
|
+
</ClCompile>
|
53
|
+
<ClCompile Include="..\..\src\core.c">
|
54
|
+
<Filter>Source Files</Filter>
|
55
|
+
</ClCompile>
|
56
|
+
<ClCompile Include="..\..\src\encoding.c">
|
57
|
+
<Filter>Source Files</Filter>
|
58
|
+
</ClCompile>
|
59
|
+
<ClCompile Include="..\..\src\opt.c">
|
60
|
+
<Filter>Source Files</Filter>
|
61
|
+
</ClCompile>
|
62
|
+
<ClCompile Include="..\..\src\thread.c">
|
63
|
+
<Filter>Source Files</Filter>
|
64
|
+
</ClCompile>
|
65
|
+
</ItemGroup>
|
66
|
+
</Project>
|
@@ -0,0 +1,244 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="14.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="ReleaseStatic|Win32">
|
9
|
+
<Configuration>ReleaseStatic</Configuration>
|
10
|
+
<Platform>Win32</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
<ProjectConfiguration Include="ReleaseStatic|x64">
|
13
|
+
<Configuration>ReleaseStatic</Configuration>
|
14
|
+
<Platform>x64</Platform>
|
15
|
+
</ProjectConfiguration>
|
16
|
+
<ProjectConfiguration Include="Release|Win32">
|
17
|
+
<Configuration>Release</Configuration>
|
18
|
+
<Platform>Win32</Platform>
|
19
|
+
</ProjectConfiguration>
|
20
|
+
<ProjectConfiguration Include="Debug|x64">
|
21
|
+
<Configuration>Debug</Configuration>
|
22
|
+
<Platform>x64</Platform>
|
23
|
+
</ProjectConfiguration>
|
24
|
+
<ProjectConfiguration Include="Release|x64">
|
25
|
+
<Configuration>Release</Configuration>
|
26
|
+
<Platform>x64</Platform>
|
27
|
+
</ProjectConfiguration>
|
28
|
+
</ItemGroup>
|
29
|
+
<PropertyGroup Label="Globals">
|
30
|
+
<ProjectGuid>{DBBAAAE6-4560-4D11-8280-30A6650A82EF}</ProjectGuid>
|
31
|
+
<RootNamespace>Argon2OptGenKAT</RootNamespace>
|
32
|
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
|
+
</PropertyGroup>
|
34
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
42
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
43
|
+
<ConfigurationType>Application</ConfigurationType>
|
44
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
45
|
+
<CharacterSet>MultiByte</CharacterSet>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
48
|
+
<ConfigurationType>Application</ConfigurationType>
|
49
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
50
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
51
|
+
<CharacterSet>MultiByte</CharacterSet>
|
52
|
+
</PropertyGroup>
|
53
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
54
|
+
<ConfigurationType>Application</ConfigurationType>
|
55
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
56
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
57
|
+
<CharacterSet>MultiByte</CharacterSet>
|
58
|
+
</PropertyGroup>
|
59
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
60
|
+
<ConfigurationType>Application</ConfigurationType>
|
61
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
62
|
+
<CharacterSet>MultiByte</CharacterSet>
|
63
|
+
</PropertyGroup>
|
64
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
65
|
+
<ConfigurationType>Application</ConfigurationType>
|
66
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
67
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
68
|
+
<CharacterSet>MultiByte</CharacterSet>
|
69
|
+
</PropertyGroup>
|
70
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
71
|
+
<ConfigurationType>Application</ConfigurationType>
|
72
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
73
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
74
|
+
<CharacterSet>MultiByte</CharacterSet>
|
75
|
+
</PropertyGroup>
|
76
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
77
|
+
<ImportGroup Label="ExtensionSettings">
|
78
|
+
</ImportGroup>
|
79
|
+
<ImportGroup Label="Shared">
|
80
|
+
</ImportGroup>
|
81
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
82
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
83
|
+
</ImportGroup>
|
84
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
85
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
86
|
+
</ImportGroup>
|
87
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="PropertySheets">
|
88
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
89
|
+
</ImportGroup>
|
90
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
91
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
92
|
+
</ImportGroup>
|
93
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
94
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
95
|
+
</ImportGroup>
|
96
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="PropertySheets">
|
97
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
98
|
+
</ImportGroup>
|
99
|
+
<PropertyGroup Label="UserMacros" />
|
100
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
101
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
102
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
103
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
104
|
+
</PropertyGroup>
|
105
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
106
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
107
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
108
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
109
|
+
</PropertyGroup>
|
110
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
111
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
112
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
113
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
114
|
+
</PropertyGroup>
|
115
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
116
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
117
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
118
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
119
|
+
</PropertyGroup>
|
120
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
121
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
122
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
123
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
124
|
+
</PropertyGroup>
|
125
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
126
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
127
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
128
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
129
|
+
</PropertyGroup>
|
130
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
131
|
+
<ClCompile>
|
132
|
+
<WarningLevel>Level3</WarningLevel>
|
133
|
+
<Optimization>Disabled</Optimization>
|
134
|
+
<SDLCheck>true</SDLCheck>
|
135
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
136
|
+
<UndefinePreprocessorDefinitions>
|
137
|
+
</UndefinePreprocessorDefinitions>
|
138
|
+
</ClCompile>
|
139
|
+
</ItemDefinitionGroup>
|
140
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
141
|
+
<ClCompile>
|
142
|
+
<WarningLevel>Level3</WarningLevel>
|
143
|
+
<Optimization>Disabled</Optimization>
|
144
|
+
<SDLCheck>true</SDLCheck>
|
145
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
146
|
+
<UndefinePreprocessorDefinitions>
|
147
|
+
</UndefinePreprocessorDefinitions>
|
148
|
+
</ClCompile>
|
149
|
+
</ItemDefinitionGroup>
|
150
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
151
|
+
<ClCompile>
|
152
|
+
<WarningLevel>Level3</WarningLevel>
|
153
|
+
<Optimization>MaxSpeed</Optimization>
|
154
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
155
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
156
|
+
<SDLCheck>true</SDLCheck>
|
157
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
158
|
+
<UndefinePreprocessorDefinitions>
|
159
|
+
</UndefinePreprocessorDefinitions>
|
160
|
+
</ClCompile>
|
161
|
+
<Link>
|
162
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
163
|
+
<OptimizeReferences>true</OptimizeReferences>
|
164
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
165
|
+
</Link>
|
166
|
+
</ItemDefinitionGroup>
|
167
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
168
|
+
<ClCompile>
|
169
|
+
<WarningLevel>Level3</WarningLevel>
|
170
|
+
<Optimization>MaxSpeed</Optimization>
|
171
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
172
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
173
|
+
<SDLCheck>true</SDLCheck>
|
174
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
175
|
+
<UndefinePreprocessorDefinitions>
|
176
|
+
</UndefinePreprocessorDefinitions>
|
177
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
178
|
+
</ClCompile>
|
179
|
+
<Link>
|
180
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
181
|
+
<OptimizeReferences>true</OptimizeReferences>
|
182
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
183
|
+
</Link>
|
184
|
+
</ItemDefinitionGroup>
|
185
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
186
|
+
<ClCompile>
|
187
|
+
<WarningLevel>Level3</WarningLevel>
|
188
|
+
<Optimization>MaxSpeed</Optimization>
|
189
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
190
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
191
|
+
<SDLCheck>true</SDLCheck>
|
192
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
193
|
+
<UndefinePreprocessorDefinitions>
|
194
|
+
</UndefinePreprocessorDefinitions>
|
195
|
+
</ClCompile>
|
196
|
+
<Link>
|
197
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
198
|
+
<OptimizeReferences>true</OptimizeReferences>
|
199
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
200
|
+
</Link>
|
201
|
+
</ItemDefinitionGroup>
|
202
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
203
|
+
<ClCompile>
|
204
|
+
<WarningLevel>Level3</WarningLevel>
|
205
|
+
<Optimization>MaxSpeed</Optimization>
|
206
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
207
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
208
|
+
<SDLCheck>true</SDLCheck>
|
209
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GENKAT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
210
|
+
<UndefinePreprocessorDefinitions>
|
211
|
+
</UndefinePreprocessorDefinitions>
|
212
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
213
|
+
</ClCompile>
|
214
|
+
<Link>
|
215
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
216
|
+
<OptimizeReferences>true</OptimizeReferences>
|
217
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
218
|
+
</Link>
|
219
|
+
</ItemDefinitionGroup>
|
220
|
+
<ItemGroup>
|
221
|
+
<ClInclude Include="..\..\include\argon2.h" />
|
222
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h" />
|
223
|
+
<ClInclude Include="..\..\src\blake2\blake2.h" />
|
224
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h" />
|
225
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h" />
|
226
|
+
<ClInclude Include="..\..\src\core.h" />
|
227
|
+
<ClInclude Include="..\..\src\encoding.h" />
|
228
|
+
<ClInclude Include="..\..\src\genkat.h" />
|
229
|
+
<ClInclude Include="..\..\src\opt.h" />
|
230
|
+
<ClInclude Include="..\..\src\thread.h" />
|
231
|
+
</ItemGroup>
|
232
|
+
<ItemGroup>
|
233
|
+
<ClCompile Include="..\..\src\argon2.c" />
|
234
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c" />
|
235
|
+
<ClCompile Include="..\..\src\core.c" />
|
236
|
+
<ClCompile Include="..\..\src\encoding.c" />
|
237
|
+
<ClCompile Include="..\..\src\genkat.c" />
|
238
|
+
<ClCompile Include="..\..\src\opt.c" />
|
239
|
+
<ClCompile Include="..\..\src\thread.c" />
|
240
|
+
</ItemGroup>
|
241
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
242
|
+
<ImportGroup Label="ExtensionTargets">
|
243
|
+
</ImportGroup>
|
244
|
+
</Project>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup>
|
4
|
+
<Filter Include="Source Files">
|
5
|
+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
6
|
+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
7
|
+
</Filter>
|
8
|
+
<Filter Include="Header Files">
|
9
|
+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
10
|
+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
11
|
+
</Filter>
|
12
|
+
<Filter Include="Resource Files">
|
13
|
+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
14
|
+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
15
|
+
</Filter>
|
16
|
+
</ItemGroup>
|
17
|
+
<ItemGroup>
|
18
|
+
<ClInclude Include="..\..\include\argon2.h">
|
19
|
+
<Filter>Header Files</Filter>
|
20
|
+
</ClInclude>
|
21
|
+
<ClInclude Include="..\..\src\blake2\blake2.h">
|
22
|
+
<Filter>Header Files</Filter>
|
23
|
+
</ClInclude>
|
24
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h">
|
25
|
+
<Filter>Header Files</Filter>
|
26
|
+
</ClInclude>
|
27
|
+
<ClInclude Include="..\..\src\core.h">
|
28
|
+
<Filter>Header Files</Filter>
|
29
|
+
</ClInclude>
|
30
|
+
<ClInclude Include="..\..\src\encoding.h">
|
31
|
+
<Filter>Header Files</Filter>
|
32
|
+
</ClInclude>
|
33
|
+
<ClInclude Include="..\..\src\genkat.h">
|
34
|
+
<Filter>Header Files</Filter>
|
35
|
+
</ClInclude>
|
36
|
+
<ClInclude Include="..\..\src\opt.h">
|
37
|
+
<Filter>Header Files</Filter>
|
38
|
+
</ClInclude>
|
39
|
+
<ClInclude Include="..\..\src\thread.h">
|
40
|
+
<Filter>Header Files</Filter>
|
41
|
+
</ClInclude>
|
42
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h">
|
43
|
+
<Filter>Header Files</Filter>
|
44
|
+
</ClInclude>
|
45
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h">
|
46
|
+
<Filter>Header Files</Filter>
|
47
|
+
</ClInclude>
|
48
|
+
</ItemGroup>
|
49
|
+
<ItemGroup>
|
50
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c">
|
51
|
+
<Filter>Source Files</Filter>
|
52
|
+
</ClCompile>
|
53
|
+
<ClCompile Include="..\..\src\argon2.c">
|
54
|
+
<Filter>Source Files</Filter>
|
55
|
+
</ClCompile>
|
56
|
+
<ClCompile Include="..\..\src\core.c">
|
57
|
+
<Filter>Source Files</Filter>
|
58
|
+
</ClCompile>
|
59
|
+
<ClCompile Include="..\..\src\encoding.c">
|
60
|
+
<Filter>Source Files</Filter>
|
61
|
+
</ClCompile>
|
62
|
+
<ClCompile Include="..\..\src\genkat.c">
|
63
|
+
<Filter>Source Files</Filter>
|
64
|
+
</ClCompile>
|
65
|
+
<ClCompile Include="..\..\src\opt.c">
|
66
|
+
<Filter>Source Files</Filter>
|
67
|
+
</ClCompile>
|
68
|
+
<ClCompile Include="..\..\src\thread.c">
|
69
|
+
<Filter>Source Files</Filter>
|
70
|
+
</ClCompile>
|
71
|
+
</ItemGroup>
|
72
|
+
</Project>
|
@@ -0,0 +1,235 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="14.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="ReleaseStatic|Win32">
|
9
|
+
<Configuration>ReleaseStatic</Configuration>
|
10
|
+
<Platform>Win32</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
<ProjectConfiguration Include="ReleaseStatic|x64">
|
13
|
+
<Configuration>ReleaseStatic</Configuration>
|
14
|
+
<Platform>x64</Platform>
|
15
|
+
</ProjectConfiguration>
|
16
|
+
<ProjectConfiguration Include="Release|Win32">
|
17
|
+
<Configuration>Release</Configuration>
|
18
|
+
<Platform>Win32</Platform>
|
19
|
+
</ProjectConfiguration>
|
20
|
+
<ProjectConfiguration Include="Debug|x64">
|
21
|
+
<Configuration>Debug</Configuration>
|
22
|
+
<Platform>x64</Platform>
|
23
|
+
</ProjectConfiguration>
|
24
|
+
<ProjectConfiguration Include="Release|x64">
|
25
|
+
<Configuration>Release</Configuration>
|
26
|
+
<Platform>x64</Platform>
|
27
|
+
</ProjectConfiguration>
|
28
|
+
</ItemGroup>
|
29
|
+
<PropertyGroup Label="Globals">
|
30
|
+
<ProjectGuid>{12956597-5E42-433A-93F3-D4EFF50AA207}</ProjectGuid>
|
31
|
+
<RootNamespace>Argon2</RootNamespace>
|
32
|
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
|
+
<ProjectName>Argon2OptTestCI</ProjectName>
|
34
|
+
</PropertyGroup>
|
35
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
36
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
37
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
38
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
39
|
+
</PropertyGroup>
|
40
|
+
<PropertyGroup Label="PlatformToolset">
|
41
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
42
|
+
</PropertyGroup>
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
44
|
+
<ConfigurationType>Application</ConfigurationType>
|
45
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
46
|
+
<CharacterSet>MultiByte</CharacterSet>
|
47
|
+
</PropertyGroup>
|
48
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
49
|
+
<ConfigurationType>Application</ConfigurationType>
|
50
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
52
|
+
<CharacterSet>MultiByte</CharacterSet>
|
53
|
+
</PropertyGroup>
|
54
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
55
|
+
<ConfigurationType>Application</ConfigurationType>
|
56
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
57
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
58
|
+
<CharacterSet>MultiByte</CharacterSet>
|
59
|
+
</PropertyGroup>
|
60
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
61
|
+
<ConfigurationType>Application</ConfigurationType>
|
62
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
63
|
+
<CharacterSet>MultiByte</CharacterSet>
|
64
|
+
</PropertyGroup>
|
65
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
66
|
+
<ConfigurationType>Application</ConfigurationType>
|
67
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
68
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
69
|
+
<CharacterSet>MultiByte</CharacterSet>
|
70
|
+
</PropertyGroup>
|
71
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
72
|
+
<ConfigurationType>Application</ConfigurationType>
|
73
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
74
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
75
|
+
<CharacterSet>MultiByte</CharacterSet>
|
76
|
+
</PropertyGroup>
|
77
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
78
|
+
<ImportGroup Label="ExtensionSettings">
|
79
|
+
</ImportGroup>
|
80
|
+
<ImportGroup Label="Shared">
|
81
|
+
</ImportGroup>
|
82
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
83
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
84
|
+
</ImportGroup>
|
85
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
86
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
87
|
+
</ImportGroup>
|
88
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="PropertySheets">
|
89
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
90
|
+
</ImportGroup>
|
91
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
92
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
93
|
+
</ImportGroup>
|
94
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
95
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
96
|
+
</ImportGroup>
|
97
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="PropertySheets">
|
98
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
99
|
+
</ImportGroup>
|
100
|
+
<PropertyGroup Label="UserMacros" />
|
101
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
102
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
103
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
104
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
105
|
+
</PropertyGroup>
|
106
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
107
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
108
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
109
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
110
|
+
</PropertyGroup>
|
111
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
112
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
113
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
114
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
115
|
+
</PropertyGroup>
|
116
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
117
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
118
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
119
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
120
|
+
</PropertyGroup>
|
121
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
122
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
123
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
124
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
125
|
+
</PropertyGroup>
|
126
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
127
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
128
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
129
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
130
|
+
</PropertyGroup>
|
131
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
132
|
+
<ClCompile>
|
133
|
+
<WarningLevel>Level3</WarningLevel>
|
134
|
+
<Optimization>Disabled</Optimization>
|
135
|
+
<SDLCheck>true</SDLCheck>
|
136
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
137
|
+
</ClCompile>
|
138
|
+
</ItemDefinitionGroup>
|
139
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
140
|
+
<ClCompile>
|
141
|
+
<WarningLevel>Level3</WarningLevel>
|
142
|
+
<Optimization>Disabled</Optimization>
|
143
|
+
<SDLCheck>true</SDLCheck>
|
144
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
145
|
+
</ClCompile>
|
146
|
+
<Link>
|
147
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
148
|
+
</Link>
|
149
|
+
</ItemDefinitionGroup>
|
150
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
151
|
+
<ClCompile>
|
152
|
+
<WarningLevel>Level3</WarningLevel>
|
153
|
+
<Optimization>MaxSpeed</Optimization>
|
154
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
155
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
156
|
+
<SDLCheck>true</SDLCheck>
|
157
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
158
|
+
</ClCompile>
|
159
|
+
<Link>
|
160
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
161
|
+
<OptimizeReferences>true</OptimizeReferences>
|
162
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
163
|
+
</Link>
|
164
|
+
</ItemDefinitionGroup>
|
165
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
166
|
+
<ClCompile>
|
167
|
+
<WarningLevel>Level3</WarningLevel>
|
168
|
+
<Optimization>MaxSpeed</Optimization>
|
169
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
170
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
171
|
+
<SDLCheck>true</SDLCheck>
|
172
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
173
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
174
|
+
</ClCompile>
|
175
|
+
<Link>
|
176
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
177
|
+
<OptimizeReferences>true</OptimizeReferences>
|
178
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
179
|
+
</Link>
|
180
|
+
</ItemDefinitionGroup>
|
181
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
182
|
+
<ClCompile>
|
183
|
+
<WarningLevel>Level3</WarningLevel>
|
184
|
+
<Optimization>MaxSpeed</Optimization>
|
185
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
186
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
187
|
+
<SDLCheck>true</SDLCheck>
|
188
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
189
|
+
</ClCompile>
|
190
|
+
<Link>
|
191
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
192
|
+
<OptimizeReferences>true</OptimizeReferences>
|
193
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
194
|
+
</Link>
|
195
|
+
</ItemDefinitionGroup>
|
196
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
197
|
+
<ClCompile>
|
198
|
+
<WarningLevel>Level3</WarningLevel>
|
199
|
+
<Optimization>MaxSpeed</Optimization>
|
200
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
201
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
202
|
+
<SDLCheck>true</SDLCheck>
|
203
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
204
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
205
|
+
</ClCompile>
|
206
|
+
<Link>
|
207
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
208
|
+
<OptimizeReferences>true</OptimizeReferences>
|
209
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
210
|
+
</Link>
|
211
|
+
</ItemDefinitionGroup>
|
212
|
+
<ItemGroup>
|
213
|
+
<ClCompile Include="..\..\src\argon2.c" />
|
214
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c" />
|
215
|
+
<ClCompile Include="..\..\src\core.c" />
|
216
|
+
<ClCompile Include="..\..\src\encoding.c" />
|
217
|
+
<ClCompile Include="..\..\src\opt.c" />
|
218
|
+
<ClCompile Include="..\..\src\test.c" />
|
219
|
+
<ClCompile Include="..\..\src\thread.c" />
|
220
|
+
</ItemGroup>
|
221
|
+
<ItemGroup>
|
222
|
+
<ClInclude Include="..\..\include\argon2.h" />
|
223
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h" />
|
224
|
+
<ClInclude Include="..\..\src\blake2\blake2.h" />
|
225
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h" />
|
226
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h" />
|
227
|
+
<ClInclude Include="..\..\src\core.h" />
|
228
|
+
<ClInclude Include="..\..\src\encoding.h" />
|
229
|
+
<ClInclude Include="..\..\src\opt.h" />
|
230
|
+
<ClInclude Include="..\..\src\thread.h" />
|
231
|
+
</ItemGroup>
|
232
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
233
|
+
<ImportGroup Label="ExtensionTargets">
|
234
|
+
</ImportGroup>
|
235
|
+
</Project>
|