rbnacl-libsodium 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +23 -0
- data/CHANGES.md +5 -0
- data/Gemfile +5 -2
- data/Rakefile +5 -0
- data/ext/rbnacl/extconf.rb +2 -1
- data/lib/rbnacl/libsodium.rb +8 -2
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/AUTHORS +14 -0
- data/vendor/libsodium/ChangeLog +26 -0
- data/vendor/libsodium/LICENSE +1 -1
- data/vendor/libsodium/Makefile.am +1 -0
- data/vendor/libsodium/Makefile.in +9 -0
- data/vendor/libsodium/README.markdown +7 -0
- data/vendor/libsodium/aclocal.m4 +1 -0
- data/vendor/libsodium/appveyor.yml +25 -0
- data/vendor/libsodium/autom4te.cache/output.1 +640 -126
- data/vendor/libsodium/autom4te.cache/output.6 +19049 -0
- data/vendor/libsodium/autom4te.cache/requests +1151 -914
- data/vendor/libsodium/autom4te.cache/traces.1 +472 -426
- data/vendor/libsodium/autom4te.cache/traces.6 +3193 -0
- data/vendor/libsodium/builds/msvc/version.h +2 -2
- data/vendor/libsodium/builds/msvc/vs2010/libsodium.sln +50 -79
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +20 -8
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +208 -166
- data/vendor/libsodium/builds/msvc/vs2012/libsodium.sln +50 -79
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +20 -8
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +206 -164
- data/vendor/libsodium/builds/msvc/vs2013/libsodium.sln +52 -81
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +20 -8
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +206 -164
- data/vendor/libsodium/builds/msvc/vs2015/libsodium.sln +52 -81
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +20 -8
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +206 -164
- data/vendor/libsodium/configure +639 -125
- data/vendor/libsodium/configure.ac +94 -16
- data/vendor/libsodium/dist-build/Makefile.in +9 -0
- data/vendor/libsodium/dist-build/emscripten-symbols.def +370 -0
- data/vendor/libsodium/dist-build/emscripten.sh +9 -3
- data/vendor/libsodium/dist-build/generate-emscripten-symbols.sh +43 -0
- data/vendor/libsodium/libsodium-uninstalled.pc.in +1 -1
- data/vendor/libsodium/libsodium.pc.in +1 -1
- data/vendor/libsodium/libsodium.vcxproj +70 -66
- data/vendor/libsodium/libsodium.vcxproj.filters +204 -192
- data/vendor/libsodium/m4/ax_valgrind_check.m4 +190 -0
- data/vendor/libsodium/msvc-scripts/Makefile.in +9 -0
- data/vendor/libsodium/msvc-scripts/process.bat +2 -2
- data/vendor/libsodium/src/Makefile.in +9 -0
- data/vendor/libsodium/src/libsodium/Makefile.am +31 -6
- data/vendor/libsodium/src/libsodium/Makefile.in +238 -42
- data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +234 -38
- data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +208 -118
- data/vendor/libsodium/src/libsodium/crypto_box/crypto_box_seal.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +1 -4
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +1799 -1790
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.h +39 -39
- data/vendor/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c +86 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.h +28 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +38 -46
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +47 -55
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +47 -55
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +47 -55
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c +7 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +0 -89
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +50 -141
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.c +45 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.h +123 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ref.c +3 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-sse41.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/{blake2b-round.h → blake2b-compress-sse41.h} +2 -28
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.c +2 -4
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.h +97 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-avx2.h +339 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse2.h +0 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse41.h +0 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +29 -18
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +4 -43
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +3 -32
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +1 -20
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +22 -41
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +12 -39
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +2 -4
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h +1 -20
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c +570 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h +198 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c +444 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.h +32 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c +229 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c +222 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-impl.h +40 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c +238 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.h +251 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c +80 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ref.h +38 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ssse3.h +117 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c +164 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c +106 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +4 -4
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +186 -186
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +3 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +33 -33
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +253 -254
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c +16 -17
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c +11 -11
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts_namespace.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe.h +3 -2
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51.h +5 -3
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +41 -41
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S +10 -2
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S +4 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S +4 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +31 -32
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S +4 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S +4 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +2 -6
- data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +8 -28
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +75 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +6 -6
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common.h +1 -18
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c +20 -20
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/types.h +4 -4
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +6 -6
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +56 -77
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +2 -8
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +1 -5
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +1 -5
- data/vendor/libsodium/src/libsodium/include/Makefile.am +3 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.in +19 -8
- data/vendor/libsodium/src/libsodium/include/sodium.h +3 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +50 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +94 -22
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +6 -6
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_hchacha20.h +35 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +3 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash.h +89 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash_argon2i.h +86 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h +6 -6
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +0 -11
- data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
- data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +3 -0
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +5 -1
- data/vendor/libsodium/src/libsodium/sodium/common.h +150 -0
- data/vendor/libsodium/src/libsodium/sodium/core.c +3 -1
- data/vendor/libsodium/src/libsodium/sodium/runtime.c +37 -19
- data/vendor/libsodium/src/libsodium/sodium/utils.c +18 -9
- data/vendor/libsodium/test/Makefile.in +9 -0
- data/vendor/libsodium/test/default/Makefile.am +10 -0
- data/vendor/libsodium/test/default/Makefile.in +53 -20
- data/vendor/libsodium/test/default/aead_aes256gcm.c +43 -17
- data/vendor/libsodium/test/default/aead_chacha20poly1305.c +179 -86
- data/vendor/libsodium/test/default/auth7.c +5 -5
- data/vendor/libsodium/test/default/box.c +4 -4
- data/vendor/libsodium/test/default/box2.c +1 -1
- data/vendor/libsodium/test/default/core6.c +1 -1
- data/vendor/libsodium/test/default/generichash.c +12 -1
- data/vendor/libsodium/test/default/generichash2.c +2 -2
- data/vendor/libsodium/test/default/generichash3.c +21 -0
- data/vendor/libsodium/test/default/pwhash.c +186 -168
- data/vendor/libsodium/test/default/pwhash.exp +11 -30
- data/vendor/libsodium/test/default/pwhash_scrypt.c +349 -0
- data/vendor/libsodium/test/default/pwhash_scrypt.exp +31 -0
- data/vendor/libsodium/test/default/secretbox.c +1 -1
- data/vendor/libsodium/test/default/secretbox2.c +1 -1
- data/vendor/libsodium/test/default/sign.c +15 -0
- data/vendor/libsodium/test/default/sodium_utils2.c +8 -3
- data/vendor/libsodium/test/default/sodium_utils3.c +4 -2
- data/vendor/libsodium/test/default/verify1.c +0 -4
- data/vendor/libsodium/test/quirks/quirks.h +3 -0
- metadata +37 -22
- data/vendor/libsodium/builds/msvc/vs2010/test/test.props +0 -43
- data/vendor/libsodium/builds/msvc/vs2010/test/test.runner.bat +0 -78
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +0 -244
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +0 -192
- data/vendor/libsodium/builds/msvc/vs2012/test/test.props +0 -43
- data/vendor/libsodium/builds/msvc/vs2012/test/test.runner.bat +0 -78
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +0 -244
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +0 -192
- data/vendor/libsodium/builds/msvc/vs2013/test/test.props +0 -43
- data/vendor/libsodium/builds/msvc/vs2013/test/test.runner.bat +0 -78
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +0 -244
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +0 -192
- data/vendor/libsodium/builds/msvc/vs2015/test/test.props +0 -43
- data/vendor/libsodium/builds/msvc/vs2015/test/test.runner.bat +0 -78
- data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj +0 -244
- data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj.filters +0 -192
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sysendian.h +0 -146
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c +0 -64
@@ -1,192 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<ItemGroup>
|
4
|
-
<ClCompile Include="..\..\..\..\test\default\auth.c">
|
5
|
-
<Filter>src</Filter>
|
6
|
-
</ClCompile>
|
7
|
-
<ClCompile Include="..\..\..\..\test\default\auth2.c">
|
8
|
-
<Filter>src</Filter>
|
9
|
-
</ClCompile>
|
10
|
-
<ClCompile Include="..\..\..\..\test\default\auth3.c">
|
11
|
-
<Filter>src</Filter>
|
12
|
-
</ClCompile>
|
13
|
-
<ClCompile Include="..\..\..\..\test\default\auth5.c">
|
14
|
-
<Filter>src</Filter>
|
15
|
-
</ClCompile>
|
16
|
-
<ClCompile Include="..\..\..\..\test\default\box.c">
|
17
|
-
<Filter>src</Filter>
|
18
|
-
</ClCompile>
|
19
|
-
<ClCompile Include="..\..\..\..\test\default\box_easy.c">
|
20
|
-
<Filter>src</Filter>
|
21
|
-
</ClCompile>
|
22
|
-
<ClCompile Include="..\..\..\..\test\default\box_easy2.c">
|
23
|
-
<Filter>src</Filter>
|
24
|
-
</ClCompile>
|
25
|
-
<ClCompile Include="..\..\..\..\test\default\box_seal.c">
|
26
|
-
<Filter>src</Filter>
|
27
|
-
</ClCompile>
|
28
|
-
<ClCompile Include="..\..\..\..\test\default\box_seed.c">
|
29
|
-
<Filter>src</Filter>
|
30
|
-
</ClCompile>
|
31
|
-
<ClCompile Include="..\..\..\..\test\default\box2.c">
|
32
|
-
<Filter>src</Filter>
|
33
|
-
</ClCompile>
|
34
|
-
<ClCompile Include="..\..\..\..\test\default\box7.c">
|
35
|
-
<Filter>src</Filter>
|
36
|
-
</ClCompile>
|
37
|
-
<ClCompile Include="..\..\..\..\test\default\box8.c">
|
38
|
-
<Filter>src</Filter>
|
39
|
-
</ClCompile>
|
40
|
-
<ClCompile Include="..\..\..\..\test\default\core1.c">
|
41
|
-
<Filter>src</Filter>
|
42
|
-
</ClCompile>
|
43
|
-
<ClCompile Include="..\..\..\..\test\default\core2.c">
|
44
|
-
<Filter>src</Filter>
|
45
|
-
</ClCompile>
|
46
|
-
<ClCompile Include="..\..\..\..\test\default\core3.c">
|
47
|
-
<Filter>src</Filter>
|
48
|
-
</ClCompile>
|
49
|
-
<ClCompile Include="..\..\..\..\test\default\core4.c">
|
50
|
-
<Filter>src</Filter>
|
51
|
-
</ClCompile>
|
52
|
-
<ClCompile Include="..\..\..\..\test\default\core5.c">
|
53
|
-
<Filter>src</Filter>
|
54
|
-
</ClCompile>
|
55
|
-
<ClCompile Include="..\..\..\..\test\default\core6.c">
|
56
|
-
<Filter>src</Filter>
|
57
|
-
</ClCompile>
|
58
|
-
<ClCompile Include="..\..\..\..\test\default\ed25519_convert.c">
|
59
|
-
<Filter>src</Filter>
|
60
|
-
</ClCompile>
|
61
|
-
<ClCompile Include="..\..\..\..\test\default\generichash.c">
|
62
|
-
<Filter>src</Filter>
|
63
|
-
</ClCompile>
|
64
|
-
<ClCompile Include="..\..\..\..\test\default\generichash2.c">
|
65
|
-
<Filter>src</Filter>
|
66
|
-
</ClCompile>
|
67
|
-
<ClCompile Include="..\..\..\..\test\default\generichash3.c">
|
68
|
-
<Filter>src</Filter>
|
69
|
-
</ClCompile>
|
70
|
-
<ClCompile Include="..\..\..\..\test\default\hash.c">
|
71
|
-
<Filter>src</Filter>
|
72
|
-
</ClCompile>
|
73
|
-
<ClCompile Include="..\..\..\..\test\default\hash3.c">
|
74
|
-
<Filter>src</Filter>
|
75
|
-
</ClCompile>
|
76
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth.c">
|
77
|
-
<Filter>src</Filter>
|
78
|
-
</ClCompile>
|
79
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth2.c">
|
80
|
-
<Filter>src</Filter>
|
81
|
-
</ClCompile>
|
82
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth7.c">
|
83
|
-
<Filter>src</Filter>
|
84
|
-
</ClCompile>
|
85
|
-
<ClCompile Include="..\..\..\..\test\default\pwhash_scrypt_ll.c">
|
86
|
-
<Filter>src</Filter>
|
87
|
-
</ClCompile>
|
88
|
-
<ClCompile Include="..\..\..\..\test\default\randombytes.c">
|
89
|
-
<Filter>src</Filter>
|
90
|
-
</ClCompile>
|
91
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult.c">
|
92
|
-
<Filter>src</Filter>
|
93
|
-
</ClCompile>
|
94
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult2.c">
|
95
|
-
<Filter>src</Filter>
|
96
|
-
</ClCompile>
|
97
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult5.c">
|
98
|
-
<Filter>src</Filter>
|
99
|
-
</ClCompile>
|
100
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult6.c">
|
101
|
-
<Filter>src</Filter>
|
102
|
-
</ClCompile>
|
103
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult7.c">
|
104
|
-
<Filter>src</Filter>
|
105
|
-
</ClCompile>
|
106
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox.c">
|
107
|
-
<Filter>src</Filter>
|
108
|
-
</ClCompile>
|
109
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox_easy.c">
|
110
|
-
<Filter>src</Filter>
|
111
|
-
</ClCompile>
|
112
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox_easy2.c">
|
113
|
-
<Filter>src</Filter>
|
114
|
-
</ClCompile>
|
115
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox2.c">
|
116
|
-
<Filter>src</Filter>
|
117
|
-
</ClCompile>
|
118
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox7.c">
|
119
|
-
<Filter>src</Filter>
|
120
|
-
</ClCompile>
|
121
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox8.c">
|
122
|
-
<Filter>src</Filter>
|
123
|
-
</ClCompile>
|
124
|
-
<ClCompile Include="..\..\..\..\test\default\shorthash.c">
|
125
|
-
<Filter>src</Filter>
|
126
|
-
</ClCompile>
|
127
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_core.c">
|
128
|
-
<Filter>src</Filter>
|
129
|
-
</ClCompile>
|
130
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils.c">
|
131
|
-
<Filter>src</Filter>
|
132
|
-
</ClCompile>
|
133
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils2.c">
|
134
|
-
<Filter>src</Filter>
|
135
|
-
</ClCompile>
|
136
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils3.c">
|
137
|
-
<Filter>src</Filter>
|
138
|
-
</ClCompile>
|
139
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_version.c">
|
140
|
-
<Filter>src</Filter>
|
141
|
-
</ClCompile>
|
142
|
-
<ClCompile Include="..\..\..\..\test\default\stream.c">
|
143
|
-
<Filter>src</Filter>
|
144
|
-
</ClCompile>
|
145
|
-
<ClCompile Include="..\..\..\..\test\default\stream2.c">
|
146
|
-
<Filter>src</Filter>
|
147
|
-
</ClCompile>
|
148
|
-
<ClCompile Include="..\..\..\..\test\default\stream3.c">
|
149
|
-
<Filter>src</Filter>
|
150
|
-
</ClCompile>
|
151
|
-
<ClCompile Include="..\..\..\..\test\default\stream4.c">
|
152
|
-
<Filter>src</Filter>
|
153
|
-
</ClCompile>
|
154
|
-
<ClCompile Include="..\..\..\..\test\default\sign.c">
|
155
|
-
<Filter>src</Filter>
|
156
|
-
</ClCompile>
|
157
|
-
<ClCompile Include="..\..\..\..\test\default\pwhash.c">
|
158
|
-
<Filter>src</Filter>
|
159
|
-
</ClCompile>
|
160
|
-
<ClCompile Include="..\..\..\..\test\default\aead_chacha20poly1305.c">
|
161
|
-
<Filter>src</Filter>
|
162
|
-
</ClCompile>
|
163
|
-
<ClCompile Include="..\..\..\..\test\default\auth6.c">
|
164
|
-
<Filter>src</Filter>
|
165
|
-
</ClCompile>
|
166
|
-
<ClCompile Include="..\..\..\..\test\default\auth7.c">
|
167
|
-
<Filter>src</Filter>
|
168
|
-
</ClCompile>
|
169
|
-
<ClCompile Include="..\..\..\..\test\default\verify1.c">
|
170
|
-
<Filter>src</Filter>
|
171
|
-
</ClCompile>
|
172
|
-
<ClCompile Include="..\..\..\..\test\default\aead_aes256gcm.c">
|
173
|
-
<Filter>src</Filter>
|
174
|
-
</ClCompile>
|
175
|
-
</ItemGroup>
|
176
|
-
<ItemGroup>
|
177
|
-
<ClInclude Include="..\..\..\..\test\default\cmptest.h">
|
178
|
-
<Filter>include</Filter>
|
179
|
-
</ClInclude>
|
180
|
-
<ClInclude Include="..\..\..\..\test\quirks\quirks.h">
|
181
|
-
<Filter>include</Filter>
|
182
|
-
</ClInclude>
|
183
|
-
</ItemGroup>
|
184
|
-
<ItemGroup>
|
185
|
-
<Filter Include="src">
|
186
|
-
<UniqueIdentifier>{705beade-aa7f-49c0-900e-4b0cbbdc2f7b}</UniqueIdentifier>
|
187
|
-
</Filter>
|
188
|
-
<Filter Include="include">
|
189
|
-
<UniqueIdentifier>{5b5af4b5-c6aa-4b30-bdef-074b1bdc43ea}</UniqueIdentifier>
|
190
|
-
</Filter>
|
191
|
-
</ItemGroup>
|
192
|
-
</Project>
|
@@ -1,43 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
|
4
|
-
<PropertyGroup Label="Globals">
|
5
|
-
<_PropertySheetDisplayName>Libsodium Test Common Settings</_PropertySheetDisplayName>
|
6
|
-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
7
|
-
<RunCodeAnalysis>false</RunCodeAnalysis>
|
8
|
-
</PropertyGroup>
|
9
|
-
|
10
|
-
<!-- Configuration -->
|
11
|
-
|
12
|
-
<ItemDefinitionGroup>
|
13
|
-
<ClCompile>
|
14
|
-
<AdditionalIncludeDirectories>$(RepoRoot)test\default\;$(RepoRoot)test\quirks\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
15
|
-
<EnablePREfast>false</EnablePREfast>
|
16
|
-
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
17
|
-
<!--<PreprocessorDefinitions>NATIVE_LITTLE_ENDIAN;%(PreprocessorDefinitions)</PreprocessorDefinitions>-->
|
18
|
-
</ClCompile>
|
19
|
-
</ItemDefinitionGroup>
|
20
|
-
|
21
|
-
<!-- Dependencies -->
|
22
|
-
|
23
|
-
<ImportGroup Label="PropertySheets">
|
24
|
-
<Import Project="$(SolutionDir)libsodium.import.props" />
|
25
|
-
</ImportGroup>
|
26
|
-
|
27
|
-
<PropertyGroup Condition="'$(DefaultLinkage)' == 'dynamic'">
|
28
|
-
<Linkage-libsodium>dynamic</Linkage-libsodium>
|
29
|
-
</PropertyGroup>
|
30
|
-
<PropertyGroup Condition="'$(DefaultLinkage)' == 'ltcg'">
|
31
|
-
<Linkage-libsodium>ltcg</Linkage-libsodium>
|
32
|
-
</PropertyGroup>
|
33
|
-
<PropertyGroup Condition="'$(DefaultLinkage)' == 'static'">
|
34
|
-
<Linkage-libsodium>static</Linkage-libsodium>
|
35
|
-
</PropertyGroup>
|
36
|
-
|
37
|
-
<!-- Messages -->
|
38
|
-
|
39
|
-
<Target Name="LinkageInfo" BeforeTargets="PrepareForBuild">
|
40
|
-
<Message Text="Linkage-libsodium : $(Linkage-libsodium)" Importance="high"/>
|
41
|
-
</Target>
|
42
|
-
|
43
|
-
</Project>
|
@@ -1,78 +0,0 @@
|
|
1
|
-
REM WORK IN PROGRESS
|
2
|
-
|
3
|
-
@ECHO OFF
|
4
|
-
|
5
|
-
if "%1" == "" (
|
6
|
-
echo "Usage: wintest.bat <DebugDLL | ReleaseDLL | DebugLIB | ReleaseLIB | DebugLTCG | DebugLTCG"
|
7
|
-
goto :END
|
8
|
-
)
|
9
|
-
|
10
|
-
if "%2" == "x64" (SET ARCH=x64) else (SET ARCH=Win32)
|
11
|
-
SET CFLAGS=/nologo /DTEST_SRCDIR=\".\" /I..\..\src\libsodium\include\sodium /I..\..\src\libsodium\include /I..\quirks
|
12
|
-
SET LDFLAGS=/link /LTCG advapi32.lib ..\..\Build\%1\%ARCH%\libsodium.lib
|
13
|
-
|
14
|
-
if not "%3" == "" (
|
15
|
-
CD %3
|
16
|
-
)
|
17
|
-
|
18
|
-
if not exist sodium_version.c (
|
19
|
-
if not exist sodium_version.c (
|
20
|
-
echo "Are you on the right path?" %CD%
|
21
|
-
goto :END
|
22
|
-
)
|
23
|
-
)
|
24
|
-
|
25
|
-
if "%1" == "DebugDLL" ( goto :DebugDLL )
|
26
|
-
if "%1" == "ReleaseDLL" ( goto :ReleaseDLL )
|
27
|
-
|
28
|
-
if "%1" == "DebugLIB" ( goto :DebugLIB )
|
29
|
-
if "%1" == "ReleaseLIB" ( goto :ReleaseLIB )
|
30
|
-
|
31
|
-
if "%1" == "DebugLTCG" ( goto :DebugLTCG )
|
32
|
-
if "%1" == "ReleaseLTCG" ( goto :ReleaseLTCG )
|
33
|
-
|
34
|
-
echo "Invalid build type"
|
35
|
-
goto :END
|
36
|
-
|
37
|
-
:DebugDLL
|
38
|
-
SET CFLAGS=%CFLAGS% /GS /MDd /Od
|
39
|
-
SET PATH=..\..\Build\%1\%ARCH%;%PATH%
|
40
|
-
goto :COMPILE
|
41
|
-
:ReleaseDLL
|
42
|
-
SET CFLAGS=%CFLAGS% /MD /Ox
|
43
|
-
SET PATH=..\..\Build\%1\%ARCH%;%PATH%
|
44
|
-
goto :COMPILE
|
45
|
-
|
46
|
-
:DebugLIB
|
47
|
-
SET CFLAGS=%CFLAGS% /GS /MTd /Od /DSODIUM_STATIC
|
48
|
-
goto :COMPILE
|
49
|
-
:ReleaseLIB
|
50
|
-
SET CFLAGS=%CFLAGS% /MT /Ox /DSODIUM_STATIC
|
51
|
-
goto :COMPILE
|
52
|
-
|
53
|
-
:DebugLTCG
|
54
|
-
SET CFLAGS=%CFLAGS% /LTCG /GS /MTd /Od /DSODIUM_STATIC
|
55
|
-
goto :COMPILE
|
56
|
-
:ReleaseLTCG
|
57
|
-
SET CFLAGS=%CFLAGS% /LTCG /MT /Ox /DSODIUM_STATIC
|
58
|
-
goto :COMPILE
|
59
|
-
|
60
|
-
:COMPILE
|
61
|
-
echo Running the test suite:
|
62
|
-
FOR %%f in (*.c) DO (
|
63
|
-
cl %CFLAGS% %%f %LDFLAGS% /errorReport:prompt /OUT:%%f.exe > NUL 2>&1
|
64
|
-
if not exist %%f.exe (
|
65
|
-
echo %%f compile failed
|
66
|
-
goto :END
|
67
|
-
)
|
68
|
-
%%f.exe
|
69
|
-
if errorlevel 1 (
|
70
|
-
echo %%f failed
|
71
|
-
) else (
|
72
|
-
echo %%f ok
|
73
|
-
)
|
74
|
-
)
|
75
|
-
REM Remove temporary files
|
76
|
-
del *.exe *.obj *.res *.exp *.pdb
|
77
|
-
|
78
|
-
:END
|
@@ -1,244 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<PropertyGroup Label="Globals">
|
4
|
-
<ProjectGuid>{4EDBA07C-2F08-4C9E-805F-A4921814C117}</ProjectGuid>
|
5
|
-
<ProjectName>test</ProjectName>
|
6
|
-
<PlatformToolset>v140</PlatformToolset>
|
7
|
-
<ConfigurationType>Application</ConfigurationType>
|
8
|
-
</PropertyGroup>
|
9
|
-
<ItemGroup Label="ProjectConfigurations">
|
10
|
-
<ProjectConfiguration Include="DebugDEXE|Win32">
|
11
|
-
<Configuration>DebugDEXE</Configuration>
|
12
|
-
<Platform>Win32</Platform>
|
13
|
-
</ProjectConfiguration>
|
14
|
-
<ProjectConfiguration Include="ReleaseDEXE|Win32">
|
15
|
-
<Configuration>ReleaseDEXE</Configuration>
|
16
|
-
<Platform>Win32</Platform>
|
17
|
-
</ProjectConfiguration>
|
18
|
-
<ProjectConfiguration Include="DebugDEXE|x64">
|
19
|
-
<Configuration>DebugDEXE</Configuration>
|
20
|
-
<Platform>x64</Platform>
|
21
|
-
</ProjectConfiguration>
|
22
|
-
<ProjectConfiguration Include="ReleaseDEXE|x64">
|
23
|
-
<Configuration>ReleaseDEXE</Configuration>
|
24
|
-
<Platform>x64</Platform>
|
25
|
-
</ProjectConfiguration>
|
26
|
-
<ProjectConfiguration Include="DebugLEXE|Win32">
|
27
|
-
<Configuration>DebugLEXE</Configuration>
|
28
|
-
<Platform>Win32</Platform>
|
29
|
-
</ProjectConfiguration>
|
30
|
-
<ProjectConfiguration Include="ReleaseLEXE|Win32">
|
31
|
-
<Configuration>ReleaseLEXE</Configuration>
|
32
|
-
<Platform>Win32</Platform>
|
33
|
-
</ProjectConfiguration>
|
34
|
-
<ProjectConfiguration Include="DebugLEXE|x64">
|
35
|
-
<Configuration>DebugLEXE</Configuration>
|
36
|
-
<Platform>x64</Platform>
|
37
|
-
</ProjectConfiguration>
|
38
|
-
<ProjectConfiguration Include="ReleaseLEXE|x64">
|
39
|
-
<Configuration>ReleaseLEXE</Configuration>
|
40
|
-
<Platform>x64</Platform>
|
41
|
-
</ProjectConfiguration>
|
42
|
-
<ProjectConfiguration Include="DebugSEXE|Win32">
|
43
|
-
<Configuration>DebugSEXE</Configuration>
|
44
|
-
<Platform>Win32</Platform>
|
45
|
-
</ProjectConfiguration>
|
46
|
-
<ProjectConfiguration Include="ReleaseSEXE|Win32">
|
47
|
-
<Configuration>ReleaseSEXE</Configuration>
|
48
|
-
<Platform>Win32</Platform>
|
49
|
-
</ProjectConfiguration>
|
50
|
-
<ProjectConfiguration Include="DebugSEXE|x64">
|
51
|
-
<Configuration>DebugSEXE</Configuration>
|
52
|
-
<Platform>x64</Platform>
|
53
|
-
</ProjectConfiguration>
|
54
|
-
<ProjectConfiguration Include="ReleaseSEXE|x64">
|
55
|
-
<Configuration>ReleaseSEXE</Configuration>
|
56
|
-
<Platform>x64</Platform>
|
57
|
-
</ProjectConfiguration>
|
58
|
-
</ItemGroup>
|
59
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
60
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
61
|
-
<ImportGroup Label="PropertySheets">
|
62
|
-
<Import Project="$(ProjectDir)..\..\properties\$(Configuration).props" />
|
63
|
-
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
64
|
-
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
65
|
-
</ImportGroup>
|
66
|
-
<ItemGroup>
|
67
|
-
<ClCompile Include="..\..\..\..\test\default\aead_aes256gcm.c">
|
68
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
69
|
-
</ClCompile>
|
70
|
-
<ClCompile Include="..\..\..\..\test\default\aead_chacha20poly1305.c">
|
71
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
72
|
-
</ClCompile>
|
73
|
-
<ClCompile Include="..\..\..\..\test\default\auth.c">
|
74
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
75
|
-
</ClCompile>
|
76
|
-
<ClCompile Include="..\..\..\..\test\default\auth2.c">
|
77
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
78
|
-
</ClCompile>
|
79
|
-
<ClCompile Include="..\..\..\..\test\default\auth3.c">
|
80
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
81
|
-
</ClCompile>
|
82
|
-
<ClCompile Include="..\..\..\..\test\default\auth5.c">
|
83
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
84
|
-
</ClCompile>
|
85
|
-
<ClCompile Include="..\..\..\..\test\default\auth6.c">
|
86
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
87
|
-
</ClCompile>
|
88
|
-
<ClCompile Include="..\..\..\..\test\default\auth7.c">
|
89
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
90
|
-
</ClCompile>
|
91
|
-
<ClCompile Include="..\..\..\..\test\default\box.c">
|
92
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
93
|
-
</ClCompile>
|
94
|
-
<ClCompile Include="..\..\..\..\test\default\box2.c">
|
95
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
96
|
-
</ClCompile>
|
97
|
-
<ClCompile Include="..\..\..\..\test\default\box7.c">
|
98
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
99
|
-
</ClCompile>
|
100
|
-
<ClCompile Include="..\..\..\..\test\default\box8.c">
|
101
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
102
|
-
</ClCompile>
|
103
|
-
<ClCompile Include="..\..\..\..\test\default\box_easy.c">
|
104
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
105
|
-
</ClCompile>
|
106
|
-
<ClCompile Include="..\..\..\..\test\default\box_easy2.c">
|
107
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
108
|
-
</ClCompile>
|
109
|
-
<ClCompile Include="..\..\..\..\test\default\box_seal.c">
|
110
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
111
|
-
</ClCompile>
|
112
|
-
<ClCompile Include="..\..\..\..\test\default\box_seed.c">
|
113
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
114
|
-
</ClCompile>
|
115
|
-
<ClCompile Include="..\..\..\..\test\default\core1.c">
|
116
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
117
|
-
</ClCompile>
|
118
|
-
<ClCompile Include="..\..\..\..\test\default\core2.c">
|
119
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
120
|
-
</ClCompile>
|
121
|
-
<ClCompile Include="..\..\..\..\test\default\core3.c">
|
122
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
123
|
-
</ClCompile>
|
124
|
-
<ClCompile Include="..\..\..\..\test\default\core4.c">
|
125
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
126
|
-
</ClCompile>
|
127
|
-
<ClCompile Include="..\..\..\..\test\default\core5.c">
|
128
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
129
|
-
</ClCompile>
|
130
|
-
<ClCompile Include="..\..\..\..\test\default\core6.c">
|
131
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
132
|
-
</ClCompile>
|
133
|
-
<ClCompile Include="..\..\..\..\test\default\ed25519_convert.c">
|
134
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
135
|
-
</ClCompile>
|
136
|
-
<ClCompile Include="..\..\..\..\test\default\generichash.c">
|
137
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
138
|
-
</ClCompile>
|
139
|
-
<ClCompile Include="..\..\..\..\test\default\generichash2.c">
|
140
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
141
|
-
</ClCompile>
|
142
|
-
<ClCompile Include="..\..\..\..\test\default\generichash3.c">
|
143
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
144
|
-
</ClCompile>
|
145
|
-
<ClCompile Include="..\..\..\..\test\default\hash.c">
|
146
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
147
|
-
</ClCompile>
|
148
|
-
<ClCompile Include="..\..\..\..\test\default\hash3.c">
|
149
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
150
|
-
</ClCompile>
|
151
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth.c">
|
152
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
153
|
-
</ClCompile>
|
154
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth2.c">
|
155
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
156
|
-
</ClCompile>
|
157
|
-
<ClCompile Include="..\..\..\..\test\default\onetimeauth7.c">
|
158
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
159
|
-
</ClCompile>
|
160
|
-
<ClCompile Include="..\..\..\..\test\default\pwhash.c">
|
161
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
162
|
-
</ClCompile>
|
163
|
-
<ClCompile Include="..\..\..\..\test\default\pwhash_scrypt_ll.c">
|
164
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
165
|
-
</ClCompile>
|
166
|
-
<ClCompile Include="..\..\..\..\test\default\randombytes.c">
|
167
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
168
|
-
</ClCompile>
|
169
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult.c">
|
170
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
171
|
-
</ClCompile>
|
172
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult2.c">
|
173
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
174
|
-
</ClCompile>
|
175
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult5.c">
|
176
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
177
|
-
</ClCompile>
|
178
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult6.c">
|
179
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
180
|
-
</ClCompile>
|
181
|
-
<ClCompile Include="..\..\..\..\test\default\scalarmult7.c">
|
182
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
183
|
-
</ClCompile>
|
184
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox.c">
|
185
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
186
|
-
</ClCompile>
|
187
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox2.c">
|
188
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
189
|
-
</ClCompile>
|
190
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox7.c">
|
191
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
192
|
-
</ClCompile>
|
193
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox8.c">
|
194
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
195
|
-
</ClCompile>
|
196
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox_easy.c">
|
197
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
198
|
-
</ClCompile>
|
199
|
-
<ClCompile Include="..\..\..\..\test\default\secretbox_easy2.c">
|
200
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
201
|
-
</ClCompile>
|
202
|
-
<ClCompile Include="..\..\..\..\test\default\shorthash.c">
|
203
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
204
|
-
</ClCompile>
|
205
|
-
<ClCompile Include="..\..\..\..\test\default\sign.c">
|
206
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
207
|
-
</ClCompile>
|
208
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_core.c">
|
209
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
210
|
-
</ClCompile>
|
211
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils.c">
|
212
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
213
|
-
</ClCompile>
|
214
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils2.c">
|
215
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
216
|
-
</ClCompile>
|
217
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_utils3.c">
|
218
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
219
|
-
</ClCompile>
|
220
|
-
<ClCompile Include="..\..\..\..\test\default\sodium_version.c">
|
221
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
222
|
-
</ClCompile>
|
223
|
-
<ClCompile Include="..\..\..\..\test\default\stream.c">
|
224
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
225
|
-
</ClCompile>
|
226
|
-
<ClCompile Include="..\..\..\..\test\default\stream2.c">
|
227
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
228
|
-
</ClCompile>
|
229
|
-
<ClCompile Include="..\..\..\..\test\default\stream3.c">
|
230
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
231
|
-
</ClCompile>
|
232
|
-
<ClCompile Include="..\..\..\..\test\default\stream4.c">
|
233
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
234
|
-
</ClCompile>
|
235
|
-
<ClCompile Include="..\..\..\..\test\default\verify1.c">
|
236
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
237
|
-
</ClCompile>
|
238
|
-
</ItemGroup>
|
239
|
-
<ItemGroup>
|
240
|
-
<ClInclude Include="..\..\..\..\test\default\cmptest.h" />
|
241
|
-
<ClInclude Include="..\..\..\..\test\quirks\quirks.h" />
|
242
|
-
</ItemGroup>
|
243
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
244
|
-
</Project>
|