@leocuvee/wrkzcoin-multi-hashing 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +5 -0
- package/LICENSE +674 -0
- package/README.md +87 -0
- package/appveyor.yml +12 -0
- package/argon2/.gitattributes +10 -0
- package/argon2/.travis.yml +25 -0
- package/argon2/Argon2.sln +160 -0
- package/argon2/CHANGELOG.md +32 -0
- package/argon2/CMakeLists.txt +87 -0
- package/argon2/LICENSE +314 -0
- package/argon2/Makefile +196 -0
- package/argon2/README.md +297 -0
- package/argon2/appveyor.yml +40 -0
- package/argon2/argon2-specs.pdf +0 -0
- package/argon2/export.sh +7 -0
- package/argon2/include/argon2.h +427 -0
- package/argon2/latex/CMakeLists.txt +34 -0
- package/argon2/latex/IEEEtran.cls +6347 -0
- package/argon2/latex/Makefile +18 -0
- package/argon2/latex/argon2-specs.tex +920 -0
- package/argon2/latex/pics/argon2-par.pdf +0 -0
- package/argon2/latex/pics/compression.pdf +0 -0
- package/argon2/latex/pics/generic.pdf +0 -0
- package/argon2/latex/pics/power-distribution.jpg +0 -0
- package/argon2/latex/tradeoff.bib +822 -0
- package/argon2/libargon2.pc +16 -0
- package/argon2/man/CMakeLists.txt +8 -0
- package/argon2/man/argon2.1 +57 -0
- package/argon2/meson.build +16 -0
- package/argon2/meson_options.txt +1 -0
- package/argon2/src/CMakeLists.txt +147 -0
- package/argon2/src/argon2.c +452 -0
- package/argon2/src/argon2.pc.in +11 -0
- package/argon2/src/blake2/blake2-impl.h +156 -0
- package/argon2/src/blake2/blake2.h +89 -0
- package/argon2/src/blake2/blake2b.c +390 -0
- package/argon2/src/blake2/blamka-round-opt.h +471 -0
- package/argon2/src/blake2/blamka-round-ref.h +56 -0
- package/argon2/src/core.c +634 -0
- package/argon2/src/core.h +228 -0
- package/argon2/src/encoding.c +467 -0
- package/argon2/src/encoding.h +57 -0
- package/argon2/src/genkat.h +51 -0
- package/argon2/src/meson.build +68 -0
- package/argon2/src/opt.c +283 -0
- package/argon2/src/optimization/CMakeLists.txt +10 -0
- package/argon2/src/ref.c +194 -0
- package/argon2/src/thread.c +57 -0
- package/argon2/src/thread.h +67 -0
- package/argon2/tests/CMakeLists.txt +43 -0
- package/argon2/tests/bench.c +111 -0
- package/argon2/tests/genkat.c +207 -0
- package/argon2/tests/kats/argon2d +12304 -0
- package/argon2/tests/kats/argon2d.shasum +1 -0
- package/argon2/tests/kats/argon2d_v16 +12304 -0
- package/argon2/tests/kats/argon2d_v16.shasum +1 -0
- package/argon2/tests/kats/argon2i +12304 -0
- package/argon2/tests/kats/argon2i.shasum +1 -0
- package/argon2/tests/kats/argon2i_v16 +12304 -0
- package/argon2/tests/kats/argon2i_v16.shasum +1 -0
- package/argon2/tests/kats/argon2id +12304 -0
- package/argon2/tests/kats/argon2id.shasum +1 -0
- package/argon2/tests/kats/argon2id_v16 +12304 -0
- package/argon2/tests/kats/argon2id_v16.shasum +1 -0
- package/argon2/tests/kats/check-sums.ps1 +48 -0
- package/argon2/tests/kats/check-sums.sh +16 -0
- package/argon2/tests/kats/test.ps1 +132 -0
- package/argon2/tests/kats/test.sh +117 -0
- package/argon2/tests/meson.build +34 -0
- package/argon2/tests/test.c +289 -0
- package/argon2/tool/CMakeLists.txt +7 -0
- package/argon2/tool/main.c +339 -0
- package/argon2/tool/meson.build +8 -0
- package/argon2/vs2015/Argon2Opt/Argon2Opt.vcxproj +226 -0
- package/argon2/vs2015/Argon2Opt/Argon2Opt.vcxproj.filters +69 -0
- package/argon2/vs2015/Argon2OptBench/Argon2OptBench.vcxproj +226 -0
- package/argon2/vs2015/Argon2OptBench/Argon2OptBench.vcxproj.filters +69 -0
- package/argon2/vs2015/Argon2OptDll/Argon2OptDll.vcxproj +225 -0
- package/argon2/vs2015/Argon2OptDll/Argon2OptDll.vcxproj.filters +66 -0
- package/argon2/vs2015/Argon2OptGenKAT/Argon2OptGenKAT.vcxproj +239 -0
- package/argon2/vs2015/Argon2OptGenKAT/Argon2OptGenKAT.vcxproj.filters +72 -0
- package/argon2/vs2015/Argon2OptTestCI/Argon2OptTestCI.vcxproj +227 -0
- package/argon2/vs2015/Argon2OptTestCI/Argon2OptTestCI.vcxproj.filters +69 -0
- package/argon2/vs2015/Argon2Ref/Argon2Ref.vcxproj +226 -0
- package/argon2/vs2015/Argon2Ref/Argon2Ref.vcxproj.filters +69 -0
- package/argon2/vs2015/Argon2RefBench/Argon2RefBench.vcxproj +226 -0
- package/argon2/vs2015/Argon2RefBench/Argon2RefBench.vcxproj.filters +69 -0
- package/argon2/vs2015/Argon2RefDll/Argon2RefDll.vcxproj +225 -0
- package/argon2/vs2015/Argon2RefDll/Argon2RefDll.vcxproj.filters +66 -0
- package/argon2/vs2015/Argon2RefGenKAT/Argon2RefGenKAT.vcxproj +227 -0
- package/argon2/vs2015/Argon2RefGenKAT/Argon2RefGenKAT.vcxproj.filters +72 -0
- package/argon2/vs2015/Argon2RefTestCI/Argon2RefTestCI.vcxproj +226 -0
- package/argon2/vs2015/Argon2RefTestCI/Argon2RefTestCI.vcxproj.filters +69 -0
- package/bcrypt.c +566 -0
- package/bcrypt.h +14 -0
- package/binding.gyp +93 -0
- package/blake.c +17 -0
- package/blake.h +16 -0
- package/boolberry.cc +11 -0
- package/boolberry.h +6 -0
- package/build/Makefile +354 -0
- package/build/Release/.deps/Release/multihashing.node.d +1 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/argon2.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/blake2/blake2b.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/core.o.d +10 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/encoding.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/ref.o.d +14 -0
- package/build/Release/.deps/Release/obj.target/multihashing/argon2/src/thread.o.d +5 -0
- package/build/Release/.deps/Release/obj.target/multihashing/bcrypt.o.d +4 -0
- package/build/Release/.deps/Release/obj.target/multihashing/blake.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/boolberry.o.d +12 -0
- package/build/Release/.deps/Release/obj.target/multihashing/c11.o.d +20 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/aesb.o.d +3 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/c_blake256.o.d +5 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/c_groestl.o.d +10 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/c_jh.o.d +9 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/c_keccak.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/c_skein.o.d +10 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/hash.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/oaes_lib.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/crypto/wild_keccak.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_dark.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_dark_lite.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_fast.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_lite.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_soft_shell.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_turtle.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/cryptonight_turtle_lite.o.d +18 -0
- package/build/Release/.deps/Release/obj.target/multihashing/fresh.o.d +10 -0
- package/build/Release/.deps/Release/obj.target/multihashing/fugue.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/groestl.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/hefty1.o.d +12 -0
- package/build/Release/.deps/Release/obj.target/multihashing/keccak.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/multihashing.o.d +155 -0
- package/build/Release/.deps/Release/obj.target/multihashing/nist5.o.d +12 -0
- package/build/Release/.deps/Release/obj.target/multihashing/quark.o.d +14 -0
- package/build/Release/.deps/Release/obj.target/multihashing/qubit.o.d +12 -0
- package/build/Release/.deps/Release/obj.target/multihashing/scryptjane.o.d +30 -0
- package/build/Release/.deps/Release/obj.target/multihashing/scryptn.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha1.o.d +24 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/aes_helper.o.d +5 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/hamsi.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_blake.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_bmw.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_cubehash.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_echo.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_fugue.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_groestl.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_hefty1.o.d +5 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_jh.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_keccak.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_luffa.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_shabal.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_shavite.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_simd.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_skein.o.d +6 -0
- package/build/Release/.deps/Release/obj.target/multihashing/sha3/sph_whirlpool.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/shavite3.o.d +7 -0
- package/build/Release/.deps/Release/obj.target/multihashing/skein.o.d +8 -0
- package/build/Release/.deps/Release/obj.target/multihashing/x11.o.d +20 -0
- package/build/Release/.deps/Release/obj.target/multihashing/x13.o.d +23 -0
- package/build/Release/.deps/Release/obj.target/multihashing/x15.o.d +26 -0
- package/build/Release/.deps/Release/obj.target/multihashing.node.d +1 -0
- package/build/Release/multihashing.node +0 -0
- package/build/binding.Makefile +6 -0
- package/build/multihashing.target.mk +255 -0
- package/c11.c +85 -0
- package/c11.h +17 -0
- package/crypto/aesb.c +177 -0
- package/crypto/c_blake256.c +326 -0
- package/crypto/c_blake256.h +43 -0
- package/crypto/c_groestl.c +360 -0
- package/crypto/c_groestl.h +56 -0
- package/crypto/c_jh.c +367 -0
- package/crypto/c_jh.h +20 -0
- package/crypto/c_keccak.c +112 -0
- package/crypto/c_keccak.h +26 -0
- package/crypto/c_skein.c +2036 -0
- package/crypto/c_skein.h +45 -0
- package/crypto/crypto.h +186 -0
- package/crypto/cryptonote_core/account.cpp +50 -0
- package/crypto/cryptonote_core/account.h +61 -0
- package/crypto/cryptonote_core/cryptonote_basic_impl.cpp +186 -0
- package/crypto/cryptonote_core/cryptonote_basic_impl.h +65 -0
- package/crypto/cryptonote_core/cryptonote_format_utils.cpp +766 -0
- package/crypto/cryptonote_core/cryptonote_format_utils.h +30 -0
- package/crypto/cryptonote_protocol/cryptonote_protocol_defs.h +152 -0
- package/crypto/groestl_tables.h +38 -0
- package/crypto/hash-ops.h +57 -0
- package/crypto/hash.c +24 -0
- package/crypto/hash.h +22 -0
- package/crypto/int-util.h +230 -0
- package/crypto/oaes_config.h +50 -0
- package/crypto/oaes_lib.c +1468 -0
- package/crypto/oaes_lib.h +215 -0
- package/crypto/skein_port.h +190 -0
- package/crypto/variant2_int_sqrt.h +168 -0
- package/crypto/wild_keccak.cpp +119 -0
- package/crypto/wild_keccak.h +168 -0
- package/cryptonight.c +300 -0
- package/cryptonight.h +17 -0
- package/cryptonight_dark.c +300 -0
- package/cryptonight_dark.h +17 -0
- package/cryptonight_dark_lite.c +300 -0
- package/cryptonight_dark_lite.h +17 -0
- package/cryptonight_fast.c +300 -0
- package/cryptonight_fast.h +17 -0
- package/cryptonight_lite.c +300 -0
- package/cryptonight_lite.h +17 -0
- package/cryptonight_soft_shell.c +298 -0
- package/cryptonight_soft_shell.h +17 -0
- package/cryptonight_turtle.c +300 -0
- package/cryptonight_turtle.h +17 -0
- package/cryptonight_turtle_lite.c +300 -0
- package/cryptonight_turtle_lite.h +17 -0
- package/fresh.c +42 -0
- package/fresh.h +16 -0
- package/fugue.c +12 -0
- package/fugue.h +16 -0
- package/groestl.c +40 -0
- package/groestl.h +17 -0
- package/hefty1.c +63 -0
- package/hefty1.h +16 -0
- package/index.js +1 -0
- package/keccak.c +14 -0
- package/keccak.h +16 -0
- package/leocuvee-wrkzcoin-multi-hashing-0.0.20.tgz +0 -0
- package/multihashing.cc +699 -0
- package/nist5.c +46 -0
- package/nist5.h +16 -0
- package/package.json +56 -0
- package/quark.c +210 -0
- package/quark.h +16 -0
- package/qubit.c +45 -0
- package/qubit.h +16 -0
- package/scryptjane/scrypt-jane-chacha.h +132 -0
- package/scryptjane/scrypt-jane-hash.h +48 -0
- package/scryptjane/scrypt-jane-hash_keccak.h +168 -0
- package/scryptjane/scrypt-jane-hash_sha256.h +135 -0
- package/scryptjane/scrypt-jane-mix_chacha-avx.h +340 -0
- package/scryptjane/scrypt-jane-mix_chacha-sse2.h +371 -0
- package/scryptjane/scrypt-jane-mix_chacha-ssse3.h +348 -0
- package/scryptjane/scrypt-jane-mix_chacha.h +69 -0
- package/scryptjane/scrypt-jane-mix_salsa-avx.h +381 -0
- package/scryptjane/scrypt-jane-mix_salsa-sse2.h +443 -0
- package/scryptjane/scrypt-jane-mix_salsa.h +70 -0
- package/scryptjane/scrypt-jane-pbkdf2.h +112 -0
- package/scryptjane/scrypt-jane-portable-x86.h +364 -0
- package/scryptjane/scrypt-jane-portable.h +281 -0
- package/scryptjane/scrypt-jane-romix-basic.h +67 -0
- package/scryptjane/scrypt-jane-romix-template.h +118 -0
- package/scryptjane/scrypt-jane-romix.h +27 -0
- package/scryptjane/scrypt-jane-salsa.h +106 -0
- package/scryptjane/scrypt-jane-test-vectors.h +261 -0
- package/scryptjane.c +223 -0
- package/scryptjane.h +36 -0
- package/scryptn.c +258 -0
- package/scryptn.h +16 -0
- package/sha1.c +65 -0
- package/sha1.h +16 -0
- package/sha256.h +440 -0
- package/sha3/aes_helper.c +392 -0
- package/sha3/hamsi.c +867 -0
- package/sha3/hamsi_helper.c +39648 -0
- package/sha3/md_helper.c +347 -0
- package/sha3/sph_blake.c +1114 -0
- package/sha3/sph_blake.h +327 -0
- package/sha3/sph_bmw.c +965 -0
- package/sha3/sph_bmw.h +328 -0
- package/sha3/sph_cubehash.c +723 -0
- package/sha3/sph_cubehash.h +292 -0
- package/sha3/sph_echo.c +1031 -0
- package/sha3/sph_echo.h +320 -0
- package/sha3/sph_fugue.c +1208 -0
- package/sha3/sph_fugue.h +81 -0
- package/sha3/sph_groestl.c +3119 -0
- package/sha3/sph_groestl.h +329 -0
- package/sha3/sph_hamsi.h +321 -0
- package/sha3/sph_hefty1.c +378 -0
- package/sha3/sph_hefty1.h +66 -0
- package/sha3/sph_jh.c +1116 -0
- package/sha3/sph_jh.h +298 -0
- package/sha3/sph_keccak.c +1824 -0
- package/sha3/sph_keccak.h +293 -0
- package/sha3/sph_luffa.c +1426 -0
- package/sha3/sph_luffa.h +296 -0
- package/sha3/sph_shabal.c +806 -0
- package/sha3/sph_shabal.h +344 -0
- package/sha3/sph_shavite.c +1764 -0
- package/sha3/sph_shavite.h +314 -0
- package/sha3/sph_simd.c +1799 -0
- package/sha3/sph_simd.h +309 -0
- package/sha3/sph_skein.c +1254 -0
- package/sha3/sph_skein.h +298 -0
- package/sha3/sph_types.h +1976 -0
- package/sha3/sph_whirlpool.c +3480 -0
- package/sha3/sph_whirlpool.h +209 -0
- package/shavite3.c +24 -0
- package/shavite3.h +16 -0
- package/skein.c +26 -0
- package/skein.h +16 -0
- package/stdint.h +259 -0
- package/tests/argon2-tests.js +16 -0
- package/tests/benchmark.js +36 -0
- package/tests/cryptonight-tests.js +189 -0
- package/tests/cryptonight_monero.js +53 -0
- package/tests/test.js +16 -0
- package/x11.c +85 -0
- package/x11.h +16 -0
- package/x13.c +97 -0
- package/x13.h +5 -0
- package/x15.c +106 -0
- package/x15.h +16 -0
|
@@ -0,0 +1,226 @@
|
|
|
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>{B9CAC9CE-9F0D-4F52-8D67-FDBBAFCD0DE2}</ProjectGuid>
|
|
31
|
+
<RootNamespace>Argon2Ref</RootNamespace>
|
|
32
|
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
|
33
|
+
</PropertyGroup>
|
|
34
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
35
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
36
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
37
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
38
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
39
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
40
|
+
</PropertyGroup>
|
|
41
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
42
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
43
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
44
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
45
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
46
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
47
|
+
</PropertyGroup>
|
|
48
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
|
49
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
50
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
51
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
52
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
53
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
54
|
+
</PropertyGroup>
|
|
55
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
56
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
57
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
58
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
59
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
60
|
+
</PropertyGroup>
|
|
61
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
62
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
63
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
64
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
65
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
66
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
67
|
+
</PropertyGroup>
|
|
68
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
|
69
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
70
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
71
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
72
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
73
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
74
|
+
</PropertyGroup>
|
|
75
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
76
|
+
<ImportGroup Label="ExtensionSettings">
|
|
77
|
+
</ImportGroup>
|
|
78
|
+
<ImportGroup Label="Shared">
|
|
79
|
+
</ImportGroup>
|
|
80
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
81
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
82
|
+
</ImportGroup>
|
|
83
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
84
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
85
|
+
</ImportGroup>
|
|
86
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="PropertySheets">
|
|
87
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
88
|
+
</ImportGroup>
|
|
89
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
90
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
91
|
+
</ImportGroup>
|
|
92
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
93
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
94
|
+
</ImportGroup>
|
|
95
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="PropertySheets">
|
|
96
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
97
|
+
</ImportGroup>
|
|
98
|
+
<PropertyGroup Label="UserMacros" />
|
|
99
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
100
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
101
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
102
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
103
|
+
</PropertyGroup>
|
|
104
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
105
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
106
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
107
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
108
|
+
</PropertyGroup>
|
|
109
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
|
110
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
111
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
112
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
113
|
+
</PropertyGroup>
|
|
114
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
115
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
116
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
117
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
118
|
+
</PropertyGroup>
|
|
119
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
120
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
121
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
122
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
123
|
+
</PropertyGroup>
|
|
124
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
|
125
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
126
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
127
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
128
|
+
</PropertyGroup>
|
|
129
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
130
|
+
<ClCompile>
|
|
131
|
+
<WarningLevel>Level3</WarningLevel>
|
|
132
|
+
<Optimization>Disabled</Optimization>
|
|
133
|
+
<SDLCheck>true</SDLCheck>
|
|
134
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
135
|
+
</ClCompile>
|
|
136
|
+
</ItemDefinitionGroup>
|
|
137
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
138
|
+
<ClCompile>
|
|
139
|
+
<WarningLevel>Level3</WarningLevel>
|
|
140
|
+
<Optimization>Disabled</Optimization>
|
|
141
|
+
<SDLCheck>true</SDLCheck>
|
|
142
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
143
|
+
</ClCompile>
|
|
144
|
+
</ItemDefinitionGroup>
|
|
145
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
146
|
+
<ClCompile>
|
|
147
|
+
<WarningLevel>Level3</WarningLevel>
|
|
148
|
+
<Optimization>MaxSpeed</Optimization>
|
|
149
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
150
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
151
|
+
<SDLCheck>true</SDLCheck>
|
|
152
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
153
|
+
</ClCompile>
|
|
154
|
+
<Link>
|
|
155
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
156
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
157
|
+
</Link>
|
|
158
|
+
</ItemDefinitionGroup>
|
|
159
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
|
160
|
+
<ClCompile>
|
|
161
|
+
<WarningLevel>Level3</WarningLevel>
|
|
162
|
+
<Optimization>MaxSpeed</Optimization>
|
|
163
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
164
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
165
|
+
<SDLCheck>true</SDLCheck>
|
|
166
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
167
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
168
|
+
</ClCompile>
|
|
169
|
+
<Link>
|
|
170
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
171
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
172
|
+
</Link>
|
|
173
|
+
</ItemDefinitionGroup>
|
|
174
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
175
|
+
<ClCompile>
|
|
176
|
+
<WarningLevel>Level3</WarningLevel>
|
|
177
|
+
<Optimization>MaxSpeed</Optimization>
|
|
178
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
179
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
180
|
+
<SDLCheck>true</SDLCheck>
|
|
181
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
182
|
+
</ClCompile>
|
|
183
|
+
<Link>
|
|
184
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
185
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
186
|
+
</Link>
|
|
187
|
+
</ItemDefinitionGroup>
|
|
188
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
|
189
|
+
<ClCompile>
|
|
190
|
+
<WarningLevel>Level3</WarningLevel>
|
|
191
|
+
<Optimization>MaxSpeed</Optimization>
|
|
192
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
193
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
194
|
+
<SDLCheck>true</SDLCheck>
|
|
195
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
196
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
197
|
+
</ClCompile>
|
|
198
|
+
<Link>
|
|
199
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
200
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
201
|
+
</Link>
|
|
202
|
+
</ItemDefinitionGroup>
|
|
203
|
+
<ItemGroup>
|
|
204
|
+
<ClInclude Include="..\..\include\argon2.h" />
|
|
205
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h" />
|
|
206
|
+
<ClInclude Include="..\..\src\blake2\blake2.h" />
|
|
207
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h" />
|
|
208
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h" />
|
|
209
|
+
<ClInclude Include="..\..\src\core.h" />
|
|
210
|
+
<ClInclude Include="..\..\src\encoding.h" />
|
|
211
|
+
<ClInclude Include="..\..\src\ref.h" />
|
|
212
|
+
<ClInclude Include="..\..\src\thread.h" />
|
|
213
|
+
</ItemGroup>
|
|
214
|
+
<ItemGroup>
|
|
215
|
+
<ClCompile Include="..\..\src\argon2.c" />
|
|
216
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c" />
|
|
217
|
+
<ClCompile Include="..\..\src\core.c" />
|
|
218
|
+
<ClCompile Include="..\..\src\encoding.c" />
|
|
219
|
+
<ClCompile Include="..\..\src\ref.c" />
|
|
220
|
+
<ClCompile Include="..\..\src\run.c" />
|
|
221
|
+
<ClCompile Include="..\..\src\thread.c" />
|
|
222
|
+
</ItemGroup>
|
|
223
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
224
|
+
<ImportGroup Label="ExtensionTargets">
|
|
225
|
+
</ImportGroup>
|
|
226
|
+
</Project>
|
|
@@ -0,0 +1,69 @@
|
|
|
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\ref.h">
|
|
34
|
+
<Filter>Header Files</Filter>
|
|
35
|
+
</ClInclude>
|
|
36
|
+
<ClInclude Include="..\..\src\thread.h">
|
|
37
|
+
<Filter>Header Files</Filter>
|
|
38
|
+
</ClInclude>
|
|
39
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h">
|
|
40
|
+
<Filter>Header Files</Filter>
|
|
41
|
+
</ClInclude>
|
|
42
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h">
|
|
43
|
+
<Filter>Header Files</Filter>
|
|
44
|
+
</ClInclude>
|
|
45
|
+
</ItemGroup>
|
|
46
|
+
<ItemGroup>
|
|
47
|
+
<ClCompile Include="..\..\src\argon2.c">
|
|
48
|
+
<Filter>Source Files</Filter>
|
|
49
|
+
</ClCompile>
|
|
50
|
+
<ClCompile Include="..\..\src\core.c">
|
|
51
|
+
<Filter>Source Files</Filter>
|
|
52
|
+
</ClCompile>
|
|
53
|
+
<ClCompile Include="..\..\src\encoding.c">
|
|
54
|
+
<Filter>Source Files</Filter>
|
|
55
|
+
</ClCompile>
|
|
56
|
+
<ClCompile Include="..\..\src\ref.c">
|
|
57
|
+
<Filter>Source Files</Filter>
|
|
58
|
+
</ClCompile>
|
|
59
|
+
<ClCompile Include="..\..\src\run.c">
|
|
60
|
+
<Filter>Source Files</Filter>
|
|
61
|
+
</ClCompile>
|
|
62
|
+
<ClCompile Include="..\..\src\thread.c">
|
|
63
|
+
<Filter>Source Files</Filter>
|
|
64
|
+
</ClCompile>
|
|
65
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c">
|
|
66
|
+
<Filter>Source Files</Filter>
|
|
67
|
+
</ClCompile>
|
|
68
|
+
</ItemGroup>
|
|
69
|
+
</Project>
|
|
@@ -0,0 +1,226 @@
|
|
|
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>{99203F6A-6E8C-42FC-8C7C-C07E8913D539}</ProjectGuid>
|
|
31
|
+
<RootNamespace>Argon2RefBench</RootNamespace>
|
|
32
|
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
|
33
|
+
</PropertyGroup>
|
|
34
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
35
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
36
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
37
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
38
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
39
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
40
|
+
</PropertyGroup>
|
|
41
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
42
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
43
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
44
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
45
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
46
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
47
|
+
</PropertyGroup>
|
|
48
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
|
49
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
50
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
51
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
52
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
53
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
54
|
+
</PropertyGroup>
|
|
55
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
56
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
57
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
58
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
59
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
60
|
+
</PropertyGroup>
|
|
61
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
62
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
63
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
64
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
65
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
66
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
67
|
+
</PropertyGroup>
|
|
68
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
|
69
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
70
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
71
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
72
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
73
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
74
|
+
</PropertyGroup>
|
|
75
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
76
|
+
<ImportGroup Label="ExtensionSettings">
|
|
77
|
+
</ImportGroup>
|
|
78
|
+
<ImportGroup Label="Shared">
|
|
79
|
+
</ImportGroup>
|
|
80
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
81
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
82
|
+
</ImportGroup>
|
|
83
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
84
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
85
|
+
</ImportGroup>
|
|
86
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="PropertySheets">
|
|
87
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
88
|
+
</ImportGroup>
|
|
89
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
90
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
91
|
+
</ImportGroup>
|
|
92
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
93
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
94
|
+
</ImportGroup>
|
|
95
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="PropertySheets">
|
|
96
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
97
|
+
</ImportGroup>
|
|
98
|
+
<PropertyGroup Label="UserMacros" />
|
|
99
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
100
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
101
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
102
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
103
|
+
</PropertyGroup>
|
|
104
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
105
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
106
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
107
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
108
|
+
</PropertyGroup>
|
|
109
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
|
110
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
111
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
112
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
113
|
+
</PropertyGroup>
|
|
114
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
115
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
116
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
117
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
118
|
+
</PropertyGroup>
|
|
119
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
120
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
121
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
122
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
123
|
+
</PropertyGroup>
|
|
124
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
|
125
|
+
<OutDir>$(SolutionDir)vs2015\build\</OutDir>
|
|
126
|
+
<IntDir>$(SolutionDir)vs2015\build\$(ProjectName)\</IntDir>
|
|
127
|
+
<IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
|
|
128
|
+
</PropertyGroup>
|
|
129
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
130
|
+
<ClCompile>
|
|
131
|
+
<WarningLevel>Level3</WarningLevel>
|
|
132
|
+
<Optimization>Disabled</Optimization>
|
|
133
|
+
<SDLCheck>true</SDLCheck>
|
|
134
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
135
|
+
</ClCompile>
|
|
136
|
+
</ItemDefinitionGroup>
|
|
137
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
138
|
+
<ClCompile>
|
|
139
|
+
<WarningLevel>Level3</WarningLevel>
|
|
140
|
+
<Optimization>Disabled</Optimization>
|
|
141
|
+
<SDLCheck>true</SDLCheck>
|
|
142
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
143
|
+
</ClCompile>
|
|
144
|
+
</ItemDefinitionGroup>
|
|
145
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
146
|
+
<ClCompile>
|
|
147
|
+
<WarningLevel>Level3</WarningLevel>
|
|
148
|
+
<Optimization>MaxSpeed</Optimization>
|
|
149
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
150
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
151
|
+
<SDLCheck>true</SDLCheck>
|
|
152
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
153
|
+
</ClCompile>
|
|
154
|
+
<Link>
|
|
155
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
156
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
157
|
+
</Link>
|
|
158
|
+
</ItemDefinitionGroup>
|
|
159
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
|
160
|
+
<ClCompile>
|
|
161
|
+
<WarningLevel>Level3</WarningLevel>
|
|
162
|
+
<Optimization>MaxSpeed</Optimization>
|
|
163
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
164
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
165
|
+
<SDLCheck>true</SDLCheck>
|
|
166
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
167
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
168
|
+
</ClCompile>
|
|
169
|
+
<Link>
|
|
170
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
171
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
172
|
+
</Link>
|
|
173
|
+
</ItemDefinitionGroup>
|
|
174
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
175
|
+
<ClCompile>
|
|
176
|
+
<WarningLevel>Level3</WarningLevel>
|
|
177
|
+
<Optimization>MaxSpeed</Optimization>
|
|
178
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
179
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
180
|
+
<SDLCheck>true</SDLCheck>
|
|
181
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
182
|
+
</ClCompile>
|
|
183
|
+
<Link>
|
|
184
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
185
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
186
|
+
</Link>
|
|
187
|
+
</ItemDefinitionGroup>
|
|
188
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
|
189
|
+
<ClCompile>
|
|
190
|
+
<WarningLevel>Level3</WarningLevel>
|
|
191
|
+
<Optimization>MaxSpeed</Optimization>
|
|
192
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
193
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
194
|
+
<SDLCheck>true</SDLCheck>
|
|
195
|
+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
196
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
197
|
+
</ClCompile>
|
|
198
|
+
<Link>
|
|
199
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
200
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
201
|
+
</Link>
|
|
202
|
+
</ItemDefinitionGroup>
|
|
203
|
+
<ItemGroup>
|
|
204
|
+
<ClInclude Include="..\..\include\argon2.h" />
|
|
205
|
+
<ClInclude Include="..\..\src\blake2\blake2-impl.h" />
|
|
206
|
+
<ClInclude Include="..\..\src\blake2\blake2.h" />
|
|
207
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-opt.h" />
|
|
208
|
+
<ClInclude Include="..\..\src\blake2\blamka-round-ref.h" />
|
|
209
|
+
<ClInclude Include="..\..\src\core.h" />
|
|
210
|
+
<ClInclude Include="..\..\src\encoding.h" />
|
|
211
|
+
<ClInclude Include="..\..\src\ref.h" />
|
|
212
|
+
<ClInclude Include="..\..\src\thread.h" />
|
|
213
|
+
</ItemGroup>
|
|
214
|
+
<ItemGroup>
|
|
215
|
+
<ClCompile Include="..\..\src\argon2.c" />
|
|
216
|
+
<ClCompile Include="..\..\src\bench.c" />
|
|
217
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c" />
|
|
218
|
+
<ClCompile Include="..\..\src\core.c" />
|
|
219
|
+
<ClCompile Include="..\..\src\encoding.c" />
|
|
220
|
+
<ClCompile Include="..\..\src\ref.c" />
|
|
221
|
+
<ClCompile Include="..\..\src\thread.c" />
|
|
222
|
+
</ItemGroup>
|
|
223
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
224
|
+
<ImportGroup Label="ExtensionTargets">
|
|
225
|
+
</ImportGroup>
|
|
226
|
+
</Project>
|
|
@@ -0,0 +1,69 @@
|
|
|
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\ref.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\argon2.c">
|
|
48
|
+
<Filter>Source Files</Filter>
|
|
49
|
+
</ClCompile>
|
|
50
|
+
<ClCompile Include="..\..\src\bench.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\ref.c">
|
|
60
|
+
<Filter>Source Files</Filter>
|
|
61
|
+
</ClCompile>
|
|
62
|
+
<ClCompile Include="..\..\src\thread.c">
|
|
63
|
+
<Filter>Source Files</Filter>
|
|
64
|
+
</ClCompile>
|
|
65
|
+
<ClCompile Include="..\..\src\blake2\blake2b.c">
|
|
66
|
+
<Filter>Source Files</Filter>
|
|
67
|
+
</ClCompile>
|
|
68
|
+
</ItemGroup>
|
|
69
|
+
</Project>
|