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.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/AUTHORS +3 -0
- data/vendor/libsodium/ChangeLog +21 -0
- data/vendor/libsodium/Makefile.in +9 -0
- data/vendor/libsodium/THANKS +3 -0
- data/vendor/libsodium/aclocal.m4 +1 -0
- data/vendor/libsodium/autom4te.cache/output.1 +919 -85
- data/vendor/libsodium/autom4te.cache/output.5 +18351 -0
- data/vendor/libsodium/autom4te.cache/requests +960 -725
- data/vendor/libsodium/autom4te.cache/traces.1 +289 -247
- data/vendor/libsodium/autom4te.cache/traces.5 +3032 -0
- data/vendor/libsodium/build-aux/ltmain.sh +70 -11
- data/vendor/libsodium/builds/msvc/properties/ARM.props +20 -0
- data/vendor/libsodium/builds/msvc/properties/ReleaseDEXE.props +1 -1
- data/vendor/libsodium/builds/msvc/version.h +2 -2
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +3 -1
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +13 -1
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +244 -241
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +192 -189
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +2 -0
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +13 -1
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +244 -241
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +192 -189
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +3 -1
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +13 -1
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +244 -241
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +192 -189
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +3 -1
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +13 -1
- data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj +244 -241
- data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj.filters +192 -189
- data/vendor/libsodium/configure +918 -84
- data/vendor/libsodium/configure.ac +89 -15
- data/vendor/libsodium/dist-build/Makefile.am +6 -2
- data/vendor/libsodium/dist-build/Makefile.in +15 -2
- data/vendor/libsodium/dist-build/android-armv8-a.sh +4 -0
- data/vendor/libsodium/dist-build/android-build.sh +9 -9
- data/vendor/libsodium/dist-build/android-mips64.sh +4 -0
- data/vendor/libsodium/dist-build/android-x86-64.sh +4 -0
- data/vendor/libsodium/dist-build/emscripten.sh +3 -3
- data/vendor/libsodium/dist-build/ios.sh +5 -5
- data/vendor/libsodium/dist-build/nativeclient.sh +28 -0
- data/vendor/libsodium/examples/Makefile +21 -0
- data/vendor/libsodium/examples/auth.c +68 -0
- data/vendor/libsodium/examples/box.c +133 -0
- data/vendor/libsodium/examples/box_detached.c +132 -0
- data/vendor/libsodium/examples/generichash.c +80 -0
- data/vendor/libsodium/examples/generichash_stream.c +58 -0
- data/vendor/libsodium/examples/shorthash.c +58 -0
- data/vendor/libsodium/examples/sign.c +78 -0
- data/vendor/libsodium/examples/utils.h +106 -0
- data/vendor/libsodium/libsodium-uninstalled.pc.in +1 -1
- data/vendor/libsodium/libsodium.vcxproj +2 -0
- data/vendor/libsodium/libsodium.vcxproj.filters +6 -0
- data/vendor/libsodium/m4/ax_check_compile_flag.m4 +2 -2
- data/vendor/libsodium/m4/ax_check_define.m4 +92 -0
- data/vendor/libsodium/m4/ax_check_link_flag.m4 +3 -2
- data/vendor/libsodium/m4/libtool.m4 +111 -60
- data/vendor/libsodium/m4/ltoptions.m4 +1 -1
- data/vendor/libsodium/m4/ltsugar.m4 +1 -1
- data/vendor/libsodium/m4/ltversion.m4 +6 -6
- data/vendor/libsodium/m4/lt~obsolete.m4 +1 -1
- 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 +27 -3
- data/vendor/libsodium/src/libsodium/Makefile.in +170 -63
- data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +852 -0
- data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +137 -17
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha512.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +10 -6
- data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +29 -23
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +9 -10
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +4 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +4 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +3 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +2 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_frombytes_curve25519_ref10.c +10 -10
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/api.h +10 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +51 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c +29 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.am +6 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.in +67 -40
- data/vendor/libsodium/src/libsodium/include/sodium.h +4 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +88 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +28 -2
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +0 -6
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha256.h +1 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_chacha20.h +23 -0
- data/vendor/libsodium/src/libsodium/include/sodium/export.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/randombytes_nativeclient.h +37 -0
- data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +3 -2
- data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +6 -0
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +15 -1
- data/vendor/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c +49 -0
- data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +11 -1
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +71 -45
- data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +12 -2
- data/vendor/libsodium/src/libsodium/sodium/runtime.c +26 -3
- data/vendor/libsodium/src/libsodium/sodium/utils.c +86 -13
- data/vendor/libsodium/test/Makefile.in +9 -0
- data/vendor/libsodium/test/default/Makefile.am +130 -0
- data/vendor/libsodium/test/default/Makefile.in +197 -50
- data/vendor/libsodium/test/default/aead_aes256gcm.c +3197 -0
- data/vendor/libsodium/test/default/aead_aes256gcm.exp +1 -0
- data/vendor/libsodium/test/default/aead_chacha20poly1305.c +150 -17
- data/vendor/libsodium/test/default/aead_chacha20poly1305.exp +51 -0
- data/vendor/libsodium/test/default/chacha20.c +80 -5
- data/vendor/libsodium/test/default/chacha20.exp +11 -0
- data/vendor/libsodium/test/default/generichash.c +1332 -1
- data/vendor/libsodium/test/default/generichash.exp +1 -1
- data/vendor/libsodium/test/default/generichash2.c +3 -2
- data/vendor/libsodium/test/default/generichash3.c +2 -1
- data/vendor/libsodium/test/default/nacl-test-wrapper.sh +26 -0
- data/vendor/libsodium/test/default/randombytes.c +4 -0
- data/vendor/libsodium/test/default/scalarmult.c +33 -14
- data/vendor/libsodium/test/default/scalarmult.exp +4 -4
- data/vendor/libsodium/test/default/secretbox.c +9 -0
- data/vendor/libsodium/test/default/secretbox.exp +19 -0
- data/vendor/libsodium/test/default/secretbox_easy.c +40 -4
- data/vendor/libsodium/test/default/secretbox_easy.exp +58 -1
- data/vendor/libsodium/test/default/sodium_core.c +2 -0
- data/vendor/libsodium/test/default/sodium_utils.c +46 -7
- data/vendor/libsodium/test/default/sodium_utils.exp +5 -0
- data/vendor/libsodium/test/default/stream.c +1 -0
- 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.
|
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-
|
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.
|
35
|
-
package_revision=2.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=
|
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-
|
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-
|
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.
|
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
|
-
|
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.
|
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>
|
@@ -4,10 +4,10 @@
|
|
4
4
|
|
5
5
|
#include "export.h"
|
6
6
|
|
7
|
-
#define SODIUM_VERSION_STRING "1.0.
|
7
|
+
#define SODIUM_VERSION_STRING "1.0.4"
|
8
8
|
|
9
9
|
#define SODIUM_LIBRARY_VERSION_MAJOR 7
|
10
|
-
#define SODIUM_LIBRARY_VERSION_MINOR
|
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\
|
68
|
-
<ExcludedFromBuild>
|
69
|
-
</ClCompile>
|
70
|
-
<ClCompile Include="..\..\..\..\test\default\
|
71
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
72
|
-
</ClCompile>
|
73
|
-
<ClCompile Include="..\..\..\..\test\default\
|
74
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
75
|
-
</ClCompile>
|
76
|
-
<ClCompile Include="..\..\..\..\test\default\
|
77
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
78
|
-
</ClCompile>
|
79
|
-
<ClCompile Include="..\..\..\..\test\default\
|
80
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
81
|
-
</ClCompile>
|
82
|
-
<ClCompile Include="..\..\..\..\test\default\
|
83
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
84
|
-
</ClCompile>
|
85
|
-
<ClCompile Include="..\..\..\..\test\default\
|
86
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
87
|
-
</ClCompile>
|
88
|
-
<ClCompile Include="..\..\..\..\test\default\
|
89
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
90
|
-
</ClCompile>
|
91
|
-
<ClCompile Include="..\..\..\..\test\default\
|
92
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
93
|
-
</ClCompile>
|
94
|
-
<ClCompile Include="..\..\..\..\test\default\
|
95
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
96
|
-
</ClCompile>
|
97
|
-
<ClCompile Include="..\..\..\..\test\default\
|
98
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
99
|
-
</ClCompile>
|
100
|
-
<ClCompile Include="..\..\..\..\test\default\
|
101
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
102
|
-
</ClCompile>
|
103
|
-
<ClCompile Include="..\..\..\..\test\default\
|
104
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
105
|
-
</ClCompile>
|
106
|
-
<ClCompile Include="..\..\..\..\test\default\
|
107
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
108
|
-
</ClCompile>
|
109
|
-
<ClCompile Include="..\..\..\..\test\default\
|
110
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
111
|
-
</ClCompile>
|
112
|
-
<ClCompile Include="..\..\..\..\test\default\
|
113
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
114
|
-
</ClCompile>
|
115
|
-
<ClCompile Include="..\..\..\..\test\default\
|
116
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
117
|
-
</ClCompile>
|
118
|
-
<ClCompile Include="..\..\..\..\test\default\
|
119
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
120
|
-
</ClCompile>
|
121
|
-
<ClCompile Include="..\..\..\..\test\default\
|
122
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
123
|
-
</ClCompile>
|
124
|
-
<ClCompile Include="..\..\..\..\test\default\
|
125
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
126
|
-
</ClCompile>
|
127
|
-
<ClCompile Include="..\..\..\..\test\default\
|
128
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
129
|
-
</ClCompile>
|
130
|
-
<ClCompile Include="..\..\..\..\test\default\
|
131
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
132
|
-
</ClCompile>
|
133
|
-
<ClCompile Include="..\..\..\..\test\default\
|
134
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
135
|
-
</ClCompile>
|
136
|
-
<ClCompile Include="..\..\..\..\test\default\
|
137
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
138
|
-
</ClCompile>
|
139
|
-
<ClCompile Include="..\..\..\..\test\default\
|
140
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
141
|
-
</ClCompile>
|
142
|
-
<ClCompile Include="..\..\..\..\test\default\
|
143
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
144
|
-
</ClCompile>
|
145
|
-
<ClCompile Include="..\..\..\..\test\default\
|
146
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
147
|
-
</ClCompile>
|
148
|
-
<ClCompile Include="..\..\..\..\test\default\
|
149
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
150
|
-
</ClCompile>
|
151
|
-
<ClCompile Include="..\..\..\..\test\default\
|
152
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
153
|
-
</ClCompile>
|
154
|
-
<ClCompile Include="..\..\..\..\test\default\
|
155
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
156
|
-
</ClCompile>
|
157
|
-
<ClCompile Include="..\..\..\..\test\default\
|
158
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
159
|
-
</ClCompile>
|
160
|
-
<ClCompile Include="..\..\..\..\test\default\
|
161
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
162
|
-
</ClCompile>
|
163
|
-
<ClCompile Include="..\..\..\..\test\default\
|
164
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
165
|
-
</ClCompile>
|
166
|
-
<ClCompile Include="..\..\..\..\test\default\
|
167
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
168
|
-
</ClCompile>
|
169
|
-
<ClCompile Include="..\..\..\..\test\default\
|
170
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
171
|
-
</ClCompile>
|
172
|
-
<ClCompile Include="..\..\..\..\test\default\
|
173
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
174
|
-
</ClCompile>
|
175
|
-
<ClCompile Include="..\..\..\..\test\default\
|
176
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
177
|
-
</ClCompile>
|
178
|
-
<ClCompile Include="..\..\..\..\test\default\
|
179
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
180
|
-
</ClCompile>
|
181
|
-
<ClCompile Include="..\..\..\..\test\default\
|
182
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
183
|
-
</ClCompile>
|
184
|
-
<ClCompile Include="..\..\..\..\test\default\
|
185
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
186
|
-
</ClCompile>
|
187
|
-
<ClCompile Include="..\..\..\..\test\default\
|
188
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
189
|
-
</ClCompile>
|
190
|
-
<ClCompile Include="..\..\..\..\test\default\
|
191
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
192
|
-
</ClCompile>
|
193
|
-
<ClCompile Include="..\..\..\..\test\default\
|
194
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
195
|
-
</ClCompile>
|
196
|
-
<ClCompile Include="..\..\..\..\test\default\
|
197
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
198
|
-
</ClCompile>
|
199
|
-
<ClCompile Include="..\..\..\..\test\default\
|
200
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
201
|
-
</ClCompile>
|
202
|
-
<ClCompile Include="..\..\..\..\test\default\
|
203
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
204
|
-
</ClCompile>
|
205
|
-
<ClCompile Include="..\..\..\..\test\default\
|
206
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
207
|
-
</ClCompile>
|
208
|
-
<ClCompile Include="..\..\..\..\test\default\
|
209
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
210
|
-
</ClCompile>
|
211
|
-
<ClCompile Include="..\..\..\..\test\default\
|
212
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
213
|
-
</ClCompile>
|
214
|
-
<ClCompile Include="..\..\..\..\test\default\
|
215
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
216
|
-
</ClCompile>
|
217
|
-
<ClCompile Include="..\..\..\..\test\default\
|
218
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
219
|
-
</ClCompile>
|
220
|
-
<ClCompile Include="..\..\..\..\test\default\
|
221
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
222
|
-
</ClCompile>
|
223
|
-
<ClCompile Include="..\..\..\..\test\default\
|
224
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
225
|
-
</ClCompile>
|
226
|
-
<ClCompile Include="..\..\..\..\test\default\
|
227
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
228
|
-
</ClCompile>
|
229
|
-
<ClCompile Include="..\..\..\..\test\default\
|
230
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
231
|
-
</ClCompile>
|
232
|
-
<ClCompile Include="..\..\..\..\test\default\
|
233
|
-
<ExcludedFromBuild>true</ExcludedFromBuild>
|
234
|
-
</ClCompile>
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
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>
|