rbnacl-libsodium 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/lib/rbnacl/libsodium/version.rb +1 -1
  4. data/vendor/libsodium/AUTHORS +3 -0
  5. data/vendor/libsodium/ChangeLog +21 -0
  6. data/vendor/libsodium/Makefile.in +9 -0
  7. data/vendor/libsodium/THANKS +3 -0
  8. data/vendor/libsodium/aclocal.m4 +1 -0
  9. data/vendor/libsodium/autom4te.cache/output.1 +919 -85
  10. data/vendor/libsodium/autom4te.cache/output.5 +18351 -0
  11. data/vendor/libsodium/autom4te.cache/requests +960 -725
  12. data/vendor/libsodium/autom4te.cache/traces.1 +289 -247
  13. data/vendor/libsodium/autom4te.cache/traces.5 +3032 -0
  14. data/vendor/libsodium/build-aux/ltmain.sh +70 -11
  15. data/vendor/libsodium/builds/msvc/properties/ARM.props +20 -0
  16. data/vendor/libsodium/builds/msvc/properties/ReleaseDEXE.props +1 -1
  17. data/vendor/libsodium/builds/msvc/version.h +2 -2
  18. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +3 -1
  19. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +13 -1
  20. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +244 -241
  21. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +192 -189
  22. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +2 -0
  23. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +13 -1
  24. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +244 -241
  25. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +192 -189
  26. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +3 -1
  27. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +13 -1
  28. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +244 -241
  29. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +192 -189
  30. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +3 -1
  31. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +13 -1
  32. data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj +244 -241
  33. data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj.filters +192 -189
  34. data/vendor/libsodium/configure +918 -84
  35. data/vendor/libsodium/configure.ac +89 -15
  36. data/vendor/libsodium/dist-build/Makefile.am +6 -2
  37. data/vendor/libsodium/dist-build/Makefile.in +15 -2
  38. data/vendor/libsodium/dist-build/android-armv8-a.sh +4 -0
  39. data/vendor/libsodium/dist-build/android-build.sh +9 -9
  40. data/vendor/libsodium/dist-build/android-mips64.sh +4 -0
  41. data/vendor/libsodium/dist-build/android-x86-64.sh +4 -0
  42. data/vendor/libsodium/dist-build/emscripten.sh +3 -3
  43. data/vendor/libsodium/dist-build/ios.sh +5 -5
  44. data/vendor/libsodium/dist-build/nativeclient.sh +28 -0
  45. data/vendor/libsodium/examples/Makefile +21 -0
  46. data/vendor/libsodium/examples/auth.c +68 -0
  47. data/vendor/libsodium/examples/box.c +133 -0
  48. data/vendor/libsodium/examples/box_detached.c +132 -0
  49. data/vendor/libsodium/examples/generichash.c +80 -0
  50. data/vendor/libsodium/examples/generichash_stream.c +58 -0
  51. data/vendor/libsodium/examples/shorthash.c +58 -0
  52. data/vendor/libsodium/examples/sign.c +78 -0
  53. data/vendor/libsodium/examples/utils.h +106 -0
  54. data/vendor/libsodium/libsodium-uninstalled.pc.in +1 -1
  55. data/vendor/libsodium/libsodium.vcxproj +2 -0
  56. data/vendor/libsodium/libsodium.vcxproj.filters +6 -0
  57. data/vendor/libsodium/m4/ax_check_compile_flag.m4 +2 -2
  58. data/vendor/libsodium/m4/ax_check_define.m4 +92 -0
  59. data/vendor/libsodium/m4/ax_check_link_flag.m4 +3 -2
  60. data/vendor/libsodium/m4/libtool.m4 +111 -60
  61. data/vendor/libsodium/m4/ltoptions.m4 +1 -1
  62. data/vendor/libsodium/m4/ltsugar.m4 +1 -1
  63. data/vendor/libsodium/m4/ltversion.m4 +6 -6
  64. data/vendor/libsodium/m4/lt~obsolete.m4 +1 -1
  65. data/vendor/libsodium/msvc-scripts/Makefile.in +9 -0
  66. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  67. data/vendor/libsodium/src/Makefile.in +9 -0
  68. data/vendor/libsodium/src/libsodium/Makefile.am +27 -3
  69. data/vendor/libsodium/src/libsodium/Makefile.in +170 -63
  70. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +852 -0
  71. data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +137 -17
  72. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c +1 -0
  73. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha512.c +1 -0
  74. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +10 -6
  75. data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +1 -1
  76. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +29 -23
  77. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +9 -10
  78. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +4 -2
  79. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +1 -0
  80. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +4 -0
  81. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +3 -0
  82. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +2 -1
  83. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_frombytes_curve25519_ref10.c +10 -10
  84. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/api.h +10 -0
  85. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +51 -0
  86. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c +29 -0
  87. data/vendor/libsodium/src/libsodium/include/Makefile.am +6 -0
  88. data/vendor/libsodium/src/libsodium/include/Makefile.in +67 -40
  89. data/vendor/libsodium/src/libsodium/include/sodium.h +4 -0
  90. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +88 -0
  91. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +28 -2
  92. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +0 -6
  93. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha256.h +1 -1
  94. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_chacha20.h +23 -0
  95. data/vendor/libsodium/src/libsodium/include/sodium/export.h +8 -0
  96. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_nativeclient.h +37 -0
  97. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +3 -2
  98. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +6 -0
  99. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +15 -1
  100. data/vendor/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c +49 -0
  101. data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +11 -1
  102. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +71 -45
  103. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +12 -2
  104. data/vendor/libsodium/src/libsodium/sodium/runtime.c +26 -3
  105. data/vendor/libsodium/src/libsodium/sodium/utils.c +86 -13
  106. data/vendor/libsodium/test/Makefile.in +9 -0
  107. data/vendor/libsodium/test/default/Makefile.am +130 -0
  108. data/vendor/libsodium/test/default/Makefile.in +197 -50
  109. data/vendor/libsodium/test/default/aead_aes256gcm.c +3197 -0
  110. data/vendor/libsodium/test/default/aead_aes256gcm.exp +1 -0
  111. data/vendor/libsodium/test/default/aead_chacha20poly1305.c +150 -17
  112. data/vendor/libsodium/test/default/aead_chacha20poly1305.exp +51 -0
  113. data/vendor/libsodium/test/default/chacha20.c +80 -5
  114. data/vendor/libsodium/test/default/chacha20.exp +11 -0
  115. data/vendor/libsodium/test/default/generichash.c +1332 -1
  116. data/vendor/libsodium/test/default/generichash.exp +1 -1
  117. data/vendor/libsodium/test/default/generichash2.c +3 -2
  118. data/vendor/libsodium/test/default/generichash3.c +2 -1
  119. data/vendor/libsodium/test/default/nacl-test-wrapper.sh +26 -0
  120. data/vendor/libsodium/test/default/randombytes.c +4 -0
  121. data/vendor/libsodium/test/default/scalarmult.c +33 -14
  122. data/vendor/libsodium/test/default/scalarmult.exp +4 -4
  123. data/vendor/libsodium/test/default/secretbox.c +9 -0
  124. data/vendor/libsodium/test/default/secretbox.exp +19 -0
  125. data/vendor/libsodium/test/default/secretbox_easy.c +40 -4
  126. data/vendor/libsodium/test/default/secretbox_easy.exp +58 -1
  127. data/vendor/libsodium/test/default/sodium_core.c +2 -0
  128. data/vendor/libsodium/test/default/sodium_utils.c +46 -7
  129. data/vendor/libsodium/test/default/sodium_utils.exp +5 -0
  130. data/vendor/libsodium/test/default/stream.c +1 -0
  131. metadata +28 -3
@@ -2,11 +2,11 @@
2
2
  ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
3
3
  ## by inline-source v2014-01-03.01
4
4
 
5
- # libtool (GNU libtool) 2.4.4
5
+ # libtool (GNU libtool) 2.4.6
6
6
  # Provide generalized library-building support services.
7
7
  # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
8
8
 
9
- # Copyright (C) 1996-2014 Free Software Foundation, Inc.
9
+ # Copyright (C) 1996-2015 Free Software Foundation, Inc.
10
10
  # This is free software; see the source for copying conditions. There is NO
11
11
  # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
12
 
@@ -31,8 +31,8 @@
31
31
 
32
32
  PROGRAM=libtool
33
33
  PACKAGE=libtool
34
- VERSION=2.4.4
35
- package_revision=2.4.4
34
+ VERSION=2.4.6
35
+ package_revision=2.4.6
36
36
 
37
37
 
38
38
  ## ------ ##
@@ -64,12 +64,12 @@ package_revision=2.4.4
64
64
  # libraries, which are installed to $pkgauxdir.
65
65
 
66
66
  # Set a version string for this script.
67
- scriptversion=2014-01-03.01; # UTC
67
+ scriptversion=2015-01-20.17; # UTC
68
68
 
69
69
  # General shell script boiler plate, and helper functions.
70
70
  # Written by Gary V. Vaughan, 2004
71
71
 
72
- # Copyright (C) 2004-2014 Free Software Foundation, Inc.
72
+ # Copyright (C) 2004-2015 Free Software Foundation, Inc.
73
73
  # This is free software; see the source for copying conditions. There is NO
74
74
  # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
75
75
 
@@ -192,7 +192,7 @@ func_path_progs ()
192
192
 
193
193
  _G_path_prog_max=0
194
194
  _G_path_prog_found=false
195
- _G_save_IFS=$IFS; IFS=$PATH_SEPARATOR
195
+ _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}
196
196
  for _G_dir in $_G_PATH; do
197
197
  IFS=$_G_save_IFS
198
198
  test -z "$_G_dir" && _G_dir=.
@@ -1375,7 +1375,7 @@ scriptversion=2014-01-07.03; # UTC
1375
1375
  # A portable, pluggable option parser for Bourne shell.
1376
1376
  # Written by Gary V. Vaughan, 2010
1377
1377
 
1378
- # Copyright (C) 2010-2014 Free Software Foundation, Inc.
1378
+ # Copyright (C) 2010-2015 Free Software Foundation, Inc.
1379
1379
  # This is free software; see the source for copying conditions. There is NO
1380
1380
  # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1381
1381
 
@@ -1977,7 +1977,7 @@ func_version ()
1977
1977
  # End:
1978
1978
 
1979
1979
  # Set a version string.
1980
- scriptversion='(GNU libtool) 2.4.4'
1980
+ scriptversion='(GNU libtool) 2.4.6'
1981
1981
 
1982
1982
 
1983
1983
  # func_echo ARG...
@@ -2039,7 +2039,12 @@ usage_message="Options:
2039
2039
  "
2040
2040
 
2041
2041
  # Additional text appended to 'usage_message' in response to '--help'.
2042
- long_help_message=$long_help_message"
2042
+ func_help ()
2043
+ {
2044
+ $debug_cmd
2045
+
2046
+ func_usage_message
2047
+ $ECHO "$long_help_message
2043
2048
 
2044
2049
  MODE must be one of the following:
2045
2050
 
@@ -2063,13 +2068,15 @@ include the following information:
2063
2068
  compiler: $LTCC
2064
2069
  compiler flags: $LTCFLAGS
2065
2070
  linker: $LD (gnu? $with_gnu_ld)
2066
- version: $progname (GNU libtool) 2.4.4
2071
+ version: $progname (GNU libtool) 2.4.6
2067
2072
  automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
2068
2073
  autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
2069
2074
 
2070
2075
  Report bugs to <bug-libtool@gnu.org>.
2071
2076
  GNU libtool home page: <http://www.gnu.org/software/libtool/>.
2072
2077
  General help using GNU software: <http://www.gnu.org/gethelp/>."
2078
+ exit 0
2079
+ }
2073
2080
 
2074
2081
 
2075
2082
  # func_lo2o OBJECT-NAME
@@ -6461,6 +6468,24 @@ func_win32_import_lib_p ()
6461
6468
  esac
6462
6469
  }
6463
6470
 
6471
+ # func_suncc_cstd_abi
6472
+ # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!!
6473
+ # Several compiler flags select an ABI that is incompatible with the
6474
+ # Cstd library. Avoid specifying it if any are in CXXFLAGS.
6475
+ func_suncc_cstd_abi ()
6476
+ {
6477
+ $debug_cmd
6478
+
6479
+ case " $compile_command " in
6480
+ *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*)
6481
+ suncc_use_cstd_abi=no
6482
+ ;;
6483
+ *)
6484
+ suncc_use_cstd_abi=yes
6485
+ ;;
6486
+ esac
6487
+ }
6488
+
6464
6489
  # func_mode_link arg...
6465
6490
  func_mode_link ()
6466
6491
  {
@@ -7437,6 +7462,9 @@ func_mode_link ()
7437
7462
  eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
7438
7463
  eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
7439
7464
 
7465
+ # Definition is injected by LT_CONFIG during libtool generation.
7466
+ func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH"
7467
+
7440
7468
  func_dirname "$output" "/" ""
7441
7469
  output_objdir=$func_dirname_result$objdir
7442
7470
  func_to_tool_file "$output_objdir/"
@@ -8599,6 +8627,37 @@ func_mode_link ()
8599
8627
  eval $var=\"$tmp_libs\"
8600
8628
  done # for var
8601
8629
  fi
8630
+
8631
+ # Add Sun CC postdeps if required:
8632
+ test CXX = "$tagname" && {
8633
+ case $host_os in
8634
+ linux*)
8635
+ case `$CC -V 2>&1 | sed 5q` in
8636
+ *Sun\ C*) # Sun C++ 5.9
8637
+ func_suncc_cstd_abi
8638
+
8639
+ if test no != "$suncc_use_cstd_abi"; then
8640
+ func_append postdeps ' -library=Cstd -library=Crun'
8641
+ fi
8642
+ ;;
8643
+ esac
8644
+ ;;
8645
+
8646
+ solaris*)
8647
+ func_cc_basename "$CC"
8648
+ case $func_cc_basename_result in
8649
+ CC* | sunCC*)
8650
+ func_suncc_cstd_abi
8651
+
8652
+ if test no != "$suncc_use_cstd_abi"; then
8653
+ func_append postdeps ' -library=Cstd -library=Crun'
8654
+ fi
8655
+ ;;
8656
+ esac
8657
+ ;;
8658
+ esac
8659
+ }
8660
+
8602
8661
  # Last step: remove runtime libs from dependency_libs
8603
8662
  # (they stay in deplibs)
8604
8663
  tmp_libs=
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+
4
+ <PropertyGroup>
5
+ <_PropertySheetDisplayName>ARM Settings</_PropertySheetDisplayName>
6
+ </PropertyGroup>
7
+
8
+ <ItemDefinitionGroup>
9
+ <ClCompile>
10
+ <PreprocessorDefinitions>WIN32;_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
11
+ </ClCompile>
12
+ <Link>
13
+ <TargetMachine>MachineARM</TargetMachine>
14
+ </Link>
15
+ <Lib>
16
+ <AdditionalOptions>/MACHINE:ARM %(AdditionalOptions)</AdditionalOptions>
17
+ </Lib>
18
+ </ItemDefinitionGroup>
19
+
20
+ </Project>
@@ -13,7 +13,7 @@
13
13
 
14
14
  <ItemDefinitionGroup>
15
15
  <ClCompile>
16
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
16
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
17
17
  </ClCompile>
18
18
  </ItemDefinitionGroup>
19
19
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  #include "export.h"
6
6
 
7
- #define SODIUM_VERSION_STRING "1.0.3"
7
+ #define SODIUM_VERSION_STRING "1.0.4"
8
8
 
9
9
  #define SODIUM_LIBRARY_VERSION_MAJOR 7
10
- #define SODIUM_LIBRARY_VERSION_MINOR 5
10
+ #define SODIUM_LIBRARY_VERSION_MINOR 6
11
11
 
12
12
  #ifdef __cplusplus
13
13
  extern "C" {
@@ -67,6 +67,7 @@
67
67
  <Import Project="$(ProjectDir)$(ProjectName).props" />
68
68
  </ImportGroup>
69
69
  <ItemGroup>
70
+ <ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
70
71
  <ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
71
72
  <ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
72
73
  <ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
@@ -98,6 +99,7 @@
98
99
  <ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\chacha20\ref\api.h" />
99
100
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium.h" />
100
101
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
102
+ <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h" />
101
103
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
102
104
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
103
105
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha256.h" />
@@ -349,4 +351,4 @@
349
351
  <Xml Include="..\..\..\..\packaging\nuget\package.xml" />
350
352
  </ItemGroup>
351
353
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
352
- </Project>
354
+ </Project>
@@ -745,6 +745,9 @@
745
745
  <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
746
746
  <Filter>include\sodium</Filter>
747
747
  </ClInclude>
748
+ <ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
749
+ <Filter>include\sodium</Filter>
750
+ </ClInclude>
748
751
  </ItemGroup>
749
752
  <ItemGroup>
750
753
  <None Include="..\..\..\..\packaging\nuget\package.bat">
@@ -1016,6 +1019,12 @@
1016
1019
  <Filter Include="src\crypto_aead\chacha20poly1305\sodium">
1017
1020
  <UniqueIdentifier>{da16d0f4-7f2d-4a0c-a0e2-92eec8662999}</UniqueIdentifier>
1018
1021
  </Filter>
1022
+ <Filter Include="src\crypto_aead\aes256gcm">
1023
+ <UniqueIdentifier>{da56d2de-fe58-4978-97e1-9a5896a98b31}</UniqueIdentifier>
1024
+ </Filter>
1025
+ <Filter Include="src\crypto_aead\aes256gcm\aesni">
1026
+ <UniqueIdentifier>{f250f9b0-38e2-4a30-8ce7-6ea797744c0f}</UniqueIdentifier>
1027
+ </Filter>
1019
1028
  </ItemGroup>
1020
1029
  <ItemGroup>
1021
1030
  <ClCompile Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\base_curve25519_ref10.c">
@@ -1069,5 +1078,8 @@
1069
1078
  <ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
1070
1079
  <Filter>src\crypto_aead\chacha20poly1305\sodium</Filter>
1071
1080
  </ClCompile>
1081
+ <ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
1082
+ <Filter>src\crypto_aead\aes256gcm\aesni</Filter>
1083
+ </ClCompile>
1072
1084
  </ItemGroup>
1073
- </Project>
1085
+ </Project>
@@ -1,241 +1,244 @@
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>v100</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_chacha20poly1305.c">
68
- <ExcludedFromBuild>false</ExcludedFromBuild>
69
- </ClCompile>
70
- <ClCompile Include="..\..\..\..\test\default\auth.c">
71
- <ExcludedFromBuild>true</ExcludedFromBuild>
72
- </ClCompile>
73
- <ClCompile Include="..\..\..\..\test\default\auth2.c">
74
- <ExcludedFromBuild>true</ExcludedFromBuild>
75
- </ClCompile>
76
- <ClCompile Include="..\..\..\..\test\default\auth3.c">
77
- <ExcludedFromBuild>true</ExcludedFromBuild>
78
- </ClCompile>
79
- <ClCompile Include="..\..\..\..\test\default\auth5.c">
80
- <ExcludedFromBuild>true</ExcludedFromBuild>
81
- </ClCompile>
82
- <ClCompile Include="..\..\..\..\test\default\auth6.c">
83
- <ExcludedFromBuild>true</ExcludedFromBuild>
84
- </ClCompile>
85
- <ClCompile Include="..\..\..\..\test\default\auth7.c">
86
- <ExcludedFromBuild>true</ExcludedFromBuild>
87
- </ClCompile>
88
- <ClCompile Include="..\..\..\..\test\default\box.c">
89
- <ExcludedFromBuild>true</ExcludedFromBuild>
90
- </ClCompile>
91
- <ClCompile Include="..\..\..\..\test\default\box2.c">
92
- <ExcludedFromBuild>true</ExcludedFromBuild>
93
- </ClCompile>
94
- <ClCompile Include="..\..\..\..\test\default\box7.c">
95
- <ExcludedFromBuild>true</ExcludedFromBuild>
96
- </ClCompile>
97
- <ClCompile Include="..\..\..\..\test\default\box8.c">
98
- <ExcludedFromBuild>true</ExcludedFromBuild>
99
- </ClCompile>
100
- <ClCompile Include="..\..\..\..\test\default\box_easy.c">
101
- <ExcludedFromBuild>true</ExcludedFromBuild>
102
- </ClCompile>
103
- <ClCompile Include="..\..\..\..\test\default\box_easy2.c">
104
- <ExcludedFromBuild>true</ExcludedFromBuild>
105
- </ClCompile>
106
- <ClCompile Include="..\..\..\..\test\default\box_seal.c">
107
- <ExcludedFromBuild>true</ExcludedFromBuild>
108
- </ClCompile>
109
- <ClCompile Include="..\..\..\..\test\default\box_seed.c">
110
- <ExcludedFromBuild>true</ExcludedFromBuild>
111
- </ClCompile>
112
- <ClCompile Include="..\..\..\..\test\default\core1.c">
113
- <ExcludedFromBuild>true</ExcludedFromBuild>
114
- </ClCompile>
115
- <ClCompile Include="..\..\..\..\test\default\core2.c">
116
- <ExcludedFromBuild>true</ExcludedFromBuild>
117
- </ClCompile>
118
- <ClCompile Include="..\..\..\..\test\default\core3.c">
119
- <ExcludedFromBuild>true</ExcludedFromBuild>
120
- </ClCompile>
121
- <ClCompile Include="..\..\..\..\test\default\core4.c">
122
- <ExcludedFromBuild>true</ExcludedFromBuild>
123
- </ClCompile>
124
- <ClCompile Include="..\..\..\..\test\default\core5.c">
125
- <ExcludedFromBuild>true</ExcludedFromBuild>
126
- </ClCompile>
127
- <ClCompile Include="..\..\..\..\test\default\core6.c">
128
- <ExcludedFromBuild>true</ExcludedFromBuild>
129
- </ClCompile>
130
- <ClCompile Include="..\..\..\..\test\default\ed25519_convert.c">
131
- <ExcludedFromBuild>true</ExcludedFromBuild>
132
- </ClCompile>
133
- <ClCompile Include="..\..\..\..\test\default\generichash.c">
134
- <ExcludedFromBuild>true</ExcludedFromBuild>
135
- </ClCompile>
136
- <ClCompile Include="..\..\..\..\test\default\generichash2.c">
137
- <ExcludedFromBuild>true</ExcludedFromBuild>
138
- </ClCompile>
139
- <ClCompile Include="..\..\..\..\test\default\generichash3.c">
140
- <ExcludedFromBuild>true</ExcludedFromBuild>
141
- </ClCompile>
142
- <ClCompile Include="..\..\..\..\test\default\hash.c">
143
- <ExcludedFromBuild>true</ExcludedFromBuild>
144
- </ClCompile>
145
- <ClCompile Include="..\..\..\..\test\default\hash3.c">
146
- <ExcludedFromBuild>true</ExcludedFromBuild>
147
- </ClCompile>
148
- <ClCompile Include="..\..\..\..\test\default\onetimeauth.c">
149
- <ExcludedFromBuild>true</ExcludedFromBuild>
150
- </ClCompile>
151
- <ClCompile Include="..\..\..\..\test\default\onetimeauth2.c">
152
- <ExcludedFromBuild>true</ExcludedFromBuild>
153
- </ClCompile>
154
- <ClCompile Include="..\..\..\..\test\default\onetimeauth7.c">
155
- <ExcludedFromBuild>true</ExcludedFromBuild>
156
- </ClCompile>
157
- <ClCompile Include="..\..\..\..\test\default\pwhash.c">
158
- <ExcludedFromBuild>true</ExcludedFromBuild>
159
- </ClCompile>
160
- <ClCompile Include="..\..\..\..\test\default\pwhash_scrypt_ll.c">
161
- <ExcludedFromBuild>true</ExcludedFromBuild>
162
- </ClCompile>
163
- <ClCompile Include="..\..\..\..\test\default\randombytes.c">
164
- <ExcludedFromBuild>true</ExcludedFromBuild>
165
- </ClCompile>
166
- <ClCompile Include="..\..\..\..\test\default\scalarmult.c">
167
- <ExcludedFromBuild>true</ExcludedFromBuild>
168
- </ClCompile>
169
- <ClCompile Include="..\..\..\..\test\default\scalarmult2.c">
170
- <ExcludedFromBuild>true</ExcludedFromBuild>
171
- </ClCompile>
172
- <ClCompile Include="..\..\..\..\test\default\scalarmult5.c">
173
- <ExcludedFromBuild>true</ExcludedFromBuild>
174
- </ClCompile>
175
- <ClCompile Include="..\..\..\..\test\default\scalarmult6.c">
176
- <ExcludedFromBuild>true</ExcludedFromBuild>
177
- </ClCompile>
178
- <ClCompile Include="..\..\..\..\test\default\scalarmult7.c">
179
- <ExcludedFromBuild>true</ExcludedFromBuild>
180
- </ClCompile>
181
- <ClCompile Include="..\..\..\..\test\default\secretbox.c">
182
- <ExcludedFromBuild>true</ExcludedFromBuild>
183
- </ClCompile>
184
- <ClCompile Include="..\..\..\..\test\default\secretbox2.c">
185
- <ExcludedFromBuild>true</ExcludedFromBuild>
186
- </ClCompile>
187
- <ClCompile Include="..\..\..\..\test\default\secretbox7.c">
188
- <ExcludedFromBuild>true</ExcludedFromBuild>
189
- </ClCompile>
190
- <ClCompile Include="..\..\..\..\test\default\secretbox8.c">
191
- <ExcludedFromBuild>true</ExcludedFromBuild>
192
- </ClCompile>
193
- <ClCompile Include="..\..\..\..\test\default\secretbox_easy.c">
194
- <ExcludedFromBuild>true</ExcludedFromBuild>
195
- </ClCompile>
196
- <ClCompile Include="..\..\..\..\test\default\secretbox_easy2.c">
197
- <ExcludedFromBuild>true</ExcludedFromBuild>
198
- </ClCompile>
199
- <ClCompile Include="..\..\..\..\test\default\shorthash.c">
200
- <ExcludedFromBuild>true</ExcludedFromBuild>
201
- </ClCompile>
202
- <ClCompile Include="..\..\..\..\test\default\sign.c">
203
- <ExcludedFromBuild>true</ExcludedFromBuild>
204
- </ClCompile>
205
- <ClCompile Include="..\..\..\..\test\default\sodium_core.c">
206
- <ExcludedFromBuild>true</ExcludedFromBuild>
207
- </ClCompile>
208
- <ClCompile Include="..\..\..\..\test\default\sodium_utils.c">
209
- <ExcludedFromBuild>true</ExcludedFromBuild>
210
- </ClCompile>
211
- <ClCompile Include="..\..\..\..\test\default\sodium_utils2.c">
212
- <ExcludedFromBuild>true</ExcludedFromBuild>
213
- </ClCompile>
214
- <ClCompile Include="..\..\..\..\test\default\sodium_utils3.c">
215
- <ExcludedFromBuild>true</ExcludedFromBuild>
216
- </ClCompile>
217
- <ClCompile Include="..\..\..\..\test\default\sodium_version.c">
218
- <ExcludedFromBuild>true</ExcludedFromBuild>
219
- </ClCompile>
220
- <ClCompile Include="..\..\..\..\test\default\stream.c">
221
- <ExcludedFromBuild>true</ExcludedFromBuild>
222
- </ClCompile>
223
- <ClCompile Include="..\..\..\..\test\default\stream2.c">
224
- <ExcludedFromBuild>true</ExcludedFromBuild>
225
- </ClCompile>
226
- <ClCompile Include="..\..\..\..\test\default\stream3.c">
227
- <ExcludedFromBuild>true</ExcludedFromBuild>
228
- </ClCompile>
229
- <ClCompile Include="..\..\..\..\test\default\stream4.c">
230
- <ExcludedFromBuild>true</ExcludedFromBuild>
231
- </ClCompile>
232
- <ClCompile Include="..\..\..\..\test\default\verify1.c">
233
- <ExcludedFromBuild>true</ExcludedFromBuild>
234
- </ClCompile>
235
- </ItemGroup>
236
- <ItemGroup>
237
- <ClInclude Include="..\..\..\..\test\default\cmptest.h" />
238
- <ClInclude Include="..\..\..\..\test\quirks\quirks.h" />
239
- </ItemGroup>
240
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
241
- </Project>
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>v100</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>