rbnacl-libsodium 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +8 -0
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/ChangeLog +25 -0
- data/vendor/libsodium/Makefile.in +1 -1
- data/vendor/libsodium/THANKS +1 -0
- data/vendor/libsodium/autom4te.cache/output.1 +16 -16
- data/vendor/libsodium/autom4te.cache/output.5 +16 -16
- data/vendor/libsodium/autom4te.cache/requests +894 -894
- data/vendor/libsodium/autom4te.cache/traces.1 +4 -4
- data/vendor/libsodium/autom4te.cache/traces.5 +2 -2
- data/vendor/libsodium/builds/msvc/version.h +3 -3
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +7 -3
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +21 -9
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +8 -4
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +21 -9
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +7 -3
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +21 -9
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +7 -3
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +21 -9
- data/vendor/libsodium/configure +16 -16
- data/vendor/libsodium/configure.ac +7 -7
- data/vendor/libsodium/dist-build/Makefile.in +1 -1
- data/vendor/libsodium/libsodium.sln +4 -2
- data/vendor/libsodium/libsodium.vcxproj +17 -13
- data/vendor/libsodium/libsodium.vcxproj.filters +22 -10
- data/vendor/libsodium/msvc-scripts/Makefile.in +1 -1
- data/vendor/libsodium/msvc-scripts/process.bat +3 -3
- data/vendor/libsodium/src/Makefile.in +1 -1
- data/vendor/libsodium/src/libsodium/Makefile.am +19 -7
- data/vendor/libsodium/src/libsodium/Makefile.in +85 -48
- data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +11 -3
- data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +2 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +4 -4
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +20 -18
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ref.c +93 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-sse41.c +80 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.c +89 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse2.h +68 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse41.h +402 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +58 -102
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-round.h +123 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +6 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +15 -10
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +14 -14
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +0 -2
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +0 -2
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +18 -16
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h +23 -0
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +0 -3
- data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +6 -2
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +5 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.in +1 -1
- data/vendor/libsodium/src/libsodium/include/sodium/core.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +5 -2
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +5 -2
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth.h +3 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha256.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512256.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +15 -7
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +4 -2
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +4 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +7 -30
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash_scryptsalsa208sha256.h +8 -4
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox.h +7 -3
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign.h +5 -2
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_ed25519.h +6 -3
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +14 -8
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_16.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_32.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_64.h +2 -1
- data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +10 -3
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +8 -4
- data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +7 -0
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +4 -2
- data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +12 -10
- data/vendor/libsodium/src/libsodium/sodium/core.c +4 -4
- data/vendor/libsodium/src/libsodium/sodium/runtime.c +27 -1
- data/vendor/libsodium/src/libsodium/sodium/utils.c +4 -2
- data/vendor/libsodium/test/Makefile.in +1 -1
- data/vendor/libsodium/test/default/Makefile.in +1 -1
- data/vendor/libsodium/test/default/aead_aes256gcm.c +14 -0
- data/vendor/libsodium/test/default/box_easy2.c +13 -7
- data/vendor/libsodium/test/default/chacha20.c +36 -12
- data/vendor/libsodium/test/default/ed25519_convert.c +6 -2
- data/vendor/libsodium/test/default/generichash3.exp +1 -1
- data/vendor/libsodium/test/default/secretbox_easy2.c +5 -3
- data/vendor/libsodium/test/default/sodium_core.c +2 -0
- data/vendor/libsodium/test/default/sodium_utils.c +10 -4
- data/vendor/libsodium/test/default/sodium_utils2.c +1 -0
- data/vendor/libsodium/test/default/sodium_utils3.c +1 -0
- metadata +8 -22
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c +0 -15
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c +0 -13
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_verify/16/checksum +0 -1
- data/vendor/libsodium/src/libsodium/crypto_verify/32/checksum +0 -1
@@ -7,7 +7,7 @@ m4trace:aclocal.m4:1214: -1- m4_include([m4/ltoptions.m4])
|
|
7
7
|
m4trace:aclocal.m4:1215: -1- m4_include([m4/ltsugar.m4])
|
8
8
|
m4trace:aclocal.m4:1216: -1- m4_include([m4/ltversion.m4])
|
9
9
|
m4trace:aclocal.m4:1217: -1- m4_include([m4/lt~obsolete.m4])
|
10
|
-
m4trace:configure.ac:5: -1- AC_INIT([libsodium], [1.0.
|
10
|
+
m4trace:configure.ac:5: -1- AC_INIT([libsodium], [1.0.6], [https://github.com/jedisct1/libsodium/issues], [libsodium], [https://github.com/jedisct1/libsodium])
|
11
11
|
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
12
12
|
m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
|
13
13
|
m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
@@ -669,9 +669,9 @@ m4trace:configure.ac:356: -1- m4_pattern_allow([^CFLAGS_SSE3$])
|
|
669
669
|
m4trace:configure.ac:357: -1- AC_SUBST([CFLAGS_SSSE3])
|
670
670
|
m4trace:configure.ac:357: -1- AC_SUBST_TRACE([CFLAGS_SSSE3])
|
671
671
|
m4trace:configure.ac:357: -1- m4_pattern_allow([^CFLAGS_SSSE3$])
|
672
|
-
m4trace:configure.ac:358: -1- AC_SUBST([
|
673
|
-
m4trace:configure.ac:358: -1- AC_SUBST_TRACE([
|
674
|
-
m4trace:configure.ac:358: -1- m4_pattern_allow([^
|
672
|
+
m4trace:configure.ac:358: -1- AC_SUBST([CFLAGS_SSE41])
|
673
|
+
m4trace:configure.ac:358: -1- AC_SUBST_TRACE([CFLAGS_SSE41])
|
674
|
+
m4trace:configure.ac:358: -1- m4_pattern_allow([^CFLAGS_SSE41$])
|
675
675
|
m4trace:configure.ac:359: -1- AC_SUBST([CFLAGS_AESNI])
|
676
676
|
m4trace:configure.ac:359: -1- AC_SUBST_TRACE([CFLAGS_AESNI])
|
677
677
|
m4trace:configure.ac:359: -1- m4_pattern_allow([^CFLAGS_AESNI$])
|
@@ -2958,7 +2958,7 @@ m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_TMMINTRIN_H$])
|
|
2958
2958
|
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-mssse3], [CFLAGS_SSSE3="-mssse3"])
|
2959
2959
|
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS="$CFLAGS -msse4.1"])
|
2960
2960
|
m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_SMMINTRIN_H$])
|
2961
|
-
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-msse4.1], [
|
2961
|
+
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS_SSE41="-msse4.1"])
|
2962
2962
|
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-maes], [CFLAGS="$CFLAGS -maes"])
|
2963
2963
|
m4trace:configure.ac:352: -1- AX_CHECK_COMPILE_FLAG([-mpclmul], [CFLAGS="$CFLAGS -mpclmul"])
|
2964
2964
|
m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_WMMINTRIN_H$])
|
@@ -2968,7 +2968,7 @@ m4trace:configure.ac:354: -1- m4_pattern_allow([^CFLAGS_MMX$])
|
|
2968
2968
|
m4trace:configure.ac:355: -1- m4_pattern_allow([^CFLAGS_SSE2$])
|
2969
2969
|
m4trace:configure.ac:356: -1- m4_pattern_allow([^CFLAGS_SSE3$])
|
2970
2970
|
m4trace:configure.ac:357: -1- m4_pattern_allow([^CFLAGS_SSSE3$])
|
2971
|
-
m4trace:configure.ac:358: -1- m4_pattern_allow([^
|
2971
|
+
m4trace:configure.ac:358: -1- m4_pattern_allow([^CFLAGS_SSE41$])
|
2972
2972
|
m4trace:configure.ac:359: -1- m4_pattern_allow([^CFLAGS_AESNI$])
|
2973
2973
|
m4trace:configure.ac:360: -1- m4_pattern_allow([^CFLAGS_PCLMUL$])
|
2974
2974
|
m4trace:configure.ac:362: -1- m4_pattern_allow([^HAVE_SYS_MMAN_H$])
|
@@ -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.6"
|
8
8
|
|
9
|
-
#define SODIUM_LIBRARY_VERSION_MAJOR
|
10
|
-
#define SODIUM_LIBRARY_VERSION_MINOR
|
9
|
+
#define SODIUM_LIBRARY_VERSION_MAJOR 8
|
10
|
+
#define SODIUM_LIBRARY_VERSION_MINOR 0
|
11
11
|
|
12
12
|
#ifdef __cplusplus
|
13
13
|
extern "C" {
|
@@ -69,6 +69,9 @@
|
|
69
69
|
<ItemGroup>
|
70
70
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
71
71
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
72
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c" />
|
73
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c" />
|
74
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c" />
|
72
75
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
73
76
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
74
77
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
@@ -92,6 +95,10 @@
|
|
92
95
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20_api.c" />
|
93
96
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\stream_salsa20_ref.c" />
|
94
97
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\xor_salsa20_ref.c" />
|
98
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h" />
|
99
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h" />
|
100
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h" />
|
101
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
95
102
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\api.h" />
|
96
103
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\fe.h" />
|
97
104
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\montgomery.h" />
|
@@ -200,11 +207,8 @@
|
|
200
207
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512.c" />
|
201
208
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
202
209
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
203
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c" />
|
204
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c" />
|
205
210
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\api.h" />
|
206
211
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\auth_poly1305_donna.c" />
|
207
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c" />
|
208
212
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
209
213
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
210
214
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
@@ -370,12 +370,6 @@
|
|
370
370
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
371
371
|
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
372
372
|
</ClCompile>
|
373
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c">
|
374
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
375
|
-
</ClCompile>
|
376
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c">
|
377
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
378
|
-
</ClCompile>
|
379
373
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\ref\keypair_curve25519xsalsa20poly1305.c">
|
380
374
|
<Filter>src\crypto_box\curve25519xsalsa20poly1305\ref</Filter>
|
381
375
|
</ClCompile>
|
@@ -442,9 +436,6 @@
|
|
442
436
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20_api.c">
|
443
437
|
<Filter>src\crypto_stream\xsalsa20</Filter>
|
444
438
|
</ClCompile>
|
445
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c">
|
446
|
-
<Filter>src\crypto_onetimeauth\poly1305\donna</Filter>
|
447
|
-
</ClCompile>
|
448
439
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\aes128ctr\portable\xor_afternm_aes128ctr.c">
|
449
440
|
<Filter>src\crypto_stream\aes128ctr\portable</Filter>
|
450
441
|
</ClCompile>
|
@@ -748,6 +739,18 @@
|
|
748
739
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
749
740
|
<Filter>include\sodium</Filter>
|
750
741
|
</ClInclude>
|
742
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h">
|
743
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
744
|
+
</ClInclude>
|
745
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
746
|
+
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
747
|
+
</ClInclude>
|
748
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h">
|
749
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
750
|
+
</ClInclude>
|
751
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h">
|
752
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
753
|
+
</ClInclude>
|
751
754
|
</ItemGroup>
|
752
755
|
<ItemGroup>
|
753
756
|
<None Include="..\..\..\..\packaging\nuget\package.bat">
|
@@ -1081,5 +1084,14 @@
|
|
1081
1084
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
1082
1085
|
<Filter>src\crypto_aead\aes256gcm\aesni</Filter>
|
1083
1086
|
</ClCompile>
|
1087
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c">
|
1088
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1089
|
+
</ClCompile>
|
1090
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c">
|
1091
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1092
|
+
</ClCompile>
|
1093
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c">
|
1094
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1095
|
+
</ClCompile>
|
1084
1096
|
</ItemGroup>
|
1085
1097
|
</Project>
|
@@ -69,6 +69,9 @@
|
|
69
69
|
<ItemGroup>
|
70
70
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
71
71
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
72
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c" />
|
73
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c" />
|
74
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c" />
|
72
75
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
73
76
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
74
77
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
@@ -92,6 +95,10 @@
|
|
92
95
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20_api.c" />
|
93
96
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\stream_salsa20_ref.c" />
|
94
97
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\xor_salsa20_ref.c" />
|
98
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h" />
|
99
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h" />
|
100
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h" />
|
101
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
95
102
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\api.h" />
|
96
103
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\fe.h" />
|
97
104
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\montgomery.h" />
|
@@ -200,11 +207,8 @@
|
|
200
207
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512.c" />
|
201
208
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
202
209
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
203
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c" />
|
204
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c" />
|
205
210
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\api.h" />
|
206
211
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\auth_poly1305_donna.c" />
|
207
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c" />
|
208
212
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
209
213
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
210
214
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
@@ -351,4 +355,4 @@
|
|
351
355
|
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
352
356
|
</ItemGroup>
|
353
357
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
354
|
-
</Project>
|
358
|
+
</Project>
|
@@ -370,12 +370,6 @@
|
|
370
370
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
371
371
|
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
372
372
|
</ClCompile>
|
373
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c">
|
374
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
375
|
-
</ClCompile>
|
376
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c">
|
377
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
378
|
-
</ClCompile>
|
379
373
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\ref\keypair_curve25519xsalsa20poly1305.c">
|
380
374
|
<Filter>src\crypto_box\curve25519xsalsa20poly1305\ref</Filter>
|
381
375
|
</ClCompile>
|
@@ -442,9 +436,6 @@
|
|
442
436
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20_api.c">
|
443
437
|
<Filter>src\crypto_stream\xsalsa20</Filter>
|
444
438
|
</ClCompile>
|
445
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c">
|
446
|
-
<Filter>src\crypto_onetimeauth\poly1305\donna</Filter>
|
447
|
-
</ClCompile>
|
448
439
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\aes128ctr\portable\xor_afternm_aes128ctr.c">
|
449
440
|
<Filter>src\crypto_stream\aes128ctr\portable</Filter>
|
450
441
|
</ClCompile>
|
@@ -748,6 +739,18 @@
|
|
748
739
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
749
740
|
<Filter>include\sodium</Filter>
|
750
741
|
</ClInclude>
|
742
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h">
|
743
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
744
|
+
</ClInclude>
|
745
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h">
|
746
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
747
|
+
</ClInclude>
|
748
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h">
|
749
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
750
|
+
</ClInclude>
|
751
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
752
|
+
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
753
|
+
</ClInclude>
|
751
754
|
</ItemGroup>
|
752
755
|
<ItemGroup>
|
753
756
|
<None Include="..\..\..\..\packaging\nuget\package.bat">
|
@@ -1081,5 +1084,14 @@
|
|
1081
1084
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
1082
1085
|
<Filter>src\crypto_aead\aes256gcm\aesni</Filter>
|
1083
1086
|
</ClCompile>
|
1087
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c">
|
1088
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1089
|
+
</ClCompile>
|
1090
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c">
|
1091
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1092
|
+
</ClCompile>
|
1093
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c">
|
1094
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1095
|
+
</ClCompile>
|
1084
1096
|
</ItemGroup>
|
1085
1097
|
</Project>
|
@@ -69,6 +69,9 @@
|
|
69
69
|
<ItemGroup>
|
70
70
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
71
71
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
72
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c" />
|
73
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c" />
|
74
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c" />
|
72
75
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
73
76
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
74
77
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
@@ -92,6 +95,10 @@
|
|
92
95
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20_api.c" />
|
93
96
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\stream_salsa20_ref.c" />
|
94
97
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\xor_salsa20_ref.c" />
|
98
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h" />
|
99
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h" />
|
100
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h" />
|
101
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
95
102
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\api.h" />
|
96
103
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\fe.h" />
|
97
104
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\montgomery.h" />
|
@@ -200,11 +207,8 @@
|
|
200
207
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512.c" />
|
201
208
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
202
209
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
203
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c" />
|
204
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c" />
|
205
210
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\api.h" />
|
206
211
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\auth_poly1305_donna.c" />
|
207
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c" />
|
208
212
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
209
213
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
210
214
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
@@ -370,12 +370,6 @@
|
|
370
370
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
371
371
|
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
372
372
|
</ClCompile>
|
373
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c">
|
374
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
375
|
-
</ClCompile>
|
376
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c">
|
377
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
378
|
-
</ClCompile>
|
379
373
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\ref\keypair_curve25519xsalsa20poly1305.c">
|
380
374
|
<Filter>src\crypto_box\curve25519xsalsa20poly1305\ref</Filter>
|
381
375
|
</ClCompile>
|
@@ -442,9 +436,6 @@
|
|
442
436
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20_api.c">
|
443
437
|
<Filter>src\crypto_stream\xsalsa20</Filter>
|
444
438
|
</ClCompile>
|
445
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c">
|
446
|
-
<Filter>src\crypto_onetimeauth\poly1305\donna</Filter>
|
447
|
-
</ClCompile>
|
448
439
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\aes128ctr\portable\xor_afternm_aes128ctr.c">
|
449
440
|
<Filter>src\crypto_stream\aes128ctr\portable</Filter>
|
450
441
|
</ClCompile>
|
@@ -748,6 +739,18 @@
|
|
748
739
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
749
740
|
<Filter>include\sodium</Filter>
|
750
741
|
</ClInclude>
|
742
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h">
|
743
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
744
|
+
</ClInclude>
|
745
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h">
|
746
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
747
|
+
</ClInclude>
|
748
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h">
|
749
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
750
|
+
</ClInclude>
|
751
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
752
|
+
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
753
|
+
</ClInclude>
|
751
754
|
</ItemGroup>
|
752
755
|
<ItemGroup>
|
753
756
|
<None Include="..\..\..\..\packaging\nuget\package.bat">
|
@@ -1081,5 +1084,14 @@
|
|
1081
1084
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
1082
1085
|
<Filter>src\crypto_aead\aes256gcm\aesni</Filter>
|
1083
1086
|
</ClCompile>
|
1087
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c">
|
1088
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1089
|
+
</ClCompile>
|
1090
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c">
|
1091
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1092
|
+
</ClCompile>
|
1093
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c">
|
1094
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1095
|
+
</ClCompile>
|
1084
1096
|
</ItemGroup>
|
1085
1097
|
</Project>
|
@@ -69,6 +69,9 @@
|
|
69
69
|
<ItemGroup>
|
70
70
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
71
71
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
72
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c" />
|
73
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c" />
|
74
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c" />
|
72
75
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
73
76
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
74
77
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
@@ -92,6 +95,10 @@
|
|
92
95
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20_api.c" />
|
93
96
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\stream_salsa20_ref.c" />
|
94
97
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\ref\xor_salsa20_ref.c" />
|
98
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h" />
|
99
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h" />
|
100
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h" />
|
101
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
95
102
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\api.h" />
|
96
103
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\fe.h" />
|
97
104
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\montgomery.h" />
|
@@ -200,11 +207,8 @@
|
|
200
207
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512.c" />
|
201
208
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
202
209
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
203
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c" />
|
204
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c" />
|
205
210
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\api.h" />
|
206
211
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\auth_poly1305_donna.c" />
|
207
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c" />
|
208
212
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
209
213
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
210
214
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
@@ -370,12 +370,6 @@
|
|
370
370
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
371
371
|
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
372
372
|
</ClCompile>
|
373
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c">
|
374
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
375
|
-
</ClCompile>
|
376
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c">
|
377
|
-
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
378
|
-
</ClCompile>
|
379
373
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\ref\keypair_curve25519xsalsa20poly1305.c">
|
380
374
|
<Filter>src\crypto_box\curve25519xsalsa20poly1305\ref</Filter>
|
381
375
|
</ClCompile>
|
@@ -442,9 +436,6 @@
|
|
442
436
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20_api.c">
|
443
437
|
<Filter>src\crypto_stream\xsalsa20</Filter>
|
444
438
|
</ClCompile>
|
445
|
-
<ClCompile Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c">
|
446
|
-
<Filter>src\crypto_onetimeauth\poly1305\donna</Filter>
|
447
|
-
</ClCompile>
|
448
439
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_stream\aes128ctr\portable\xor_afternm_aes128ctr.c">
|
449
440
|
<Filter>src\crypto_stream\aes128ctr\portable</Filter>
|
450
441
|
</ClCompile>
|
@@ -748,6 +739,18 @@
|
|
748
739
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
749
740
|
<Filter>include\sodium</Filter>
|
750
741
|
</ClInclude>
|
742
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h">
|
743
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
744
|
+
</ClInclude>
|
745
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h">
|
746
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
747
|
+
</ClInclude>
|
748
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h">
|
749
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
750
|
+
</ClInclude>
|
751
|
+
<ClInclude Include="..\..\..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
752
|
+
<Filter>src\crypto_onetimeauth\poly1305</Filter>
|
753
|
+
</ClInclude>
|
751
754
|
</ItemGroup>
|
752
755
|
<ItemGroup>
|
753
756
|
<None Include="..\..\..\..\packaging\nuget\package.bat">
|
@@ -1081,5 +1084,14 @@
|
|
1081
1084
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
1082
1085
|
<Filter>src\crypto_aead\aes256gcm\aesni</Filter>
|
1083
1086
|
</ClCompile>
|
1087
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c">
|
1088
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1089
|
+
</ClCompile>
|
1090
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c">
|
1091
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1092
|
+
</ClCompile>
|
1093
|
+
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c">
|
1094
|
+
<Filter>src\crypto_generichash\blake2\ref</Filter>
|
1095
|
+
</ClCompile>
|
1084
1096
|
</ItemGroup>
|
1085
1097
|
</Project>
|
data/vendor/libsodium/configure
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# Guess values for system-dependent variables and create Makefiles.
|
3
|
-
# Generated by GNU Autoconf 2.69 for libsodium 1.0.
|
3
|
+
# Generated by GNU Autoconf 2.69 for libsodium 1.0.6.
|
4
4
|
#
|
5
5
|
# Report bugs to <https://github.com/jedisct1/libsodium/issues>.
|
6
6
|
#
|
@@ -590,8 +590,8 @@ MAKEFLAGS=
|
|
590
590
|
# Identity of this package.
|
591
591
|
PACKAGE_NAME='libsodium'
|
592
592
|
PACKAGE_TARNAME='libsodium'
|
593
|
-
PACKAGE_VERSION='1.0.
|
594
|
-
PACKAGE_STRING='libsodium 1.0.
|
593
|
+
PACKAGE_VERSION='1.0.6'
|
594
|
+
PACKAGE_STRING='libsodium 1.0.6'
|
595
595
|
PACKAGE_BUGREPORT='https://github.com/jedisct1/libsodium/issues'
|
596
596
|
PACKAGE_URL='https://github.com/jedisct1/libsodium'
|
597
597
|
|
@@ -654,7 +654,7 @@ HAVE_AMD64_ASM_FALSE
|
|
654
654
|
HAVE_AMD64_ASM_TRUE
|
655
655
|
CFLAGS_PCLMUL
|
656
656
|
CFLAGS_AESNI
|
657
|
-
|
657
|
+
CFLAGS_SSE41
|
658
658
|
CFLAGS_SSSE3
|
659
659
|
CFLAGS_SSE3
|
660
660
|
CFLAGS_SSE2
|
@@ -1368,7 +1368,7 @@ if test "$ac_init_help" = "long"; then
|
|
1368
1368
|
# Omit some internal or obsolete options to make the list less imposing.
|
1369
1369
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
1370
1370
|
cat <<_ACEOF
|
1371
|
-
\`configure' configures libsodium 1.0.
|
1371
|
+
\`configure' configures libsodium 1.0.6 to adapt to many kinds of systems.
|
1372
1372
|
|
1373
1373
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
1374
1374
|
|
@@ -1438,7 +1438,7 @@ fi
|
|
1438
1438
|
|
1439
1439
|
if test -n "$ac_init_help"; then
|
1440
1440
|
case $ac_init_help in
|
1441
|
-
short | recursive ) echo "Configuration of libsodium 1.0.
|
1441
|
+
short | recursive ) echo "Configuration of libsodium 1.0.6:";;
|
1442
1442
|
esac
|
1443
1443
|
cat <<\_ACEOF
|
1444
1444
|
|
@@ -1571,7 +1571,7 @@ fi
|
|
1571
1571
|
test -n "$ac_init_help" && exit $ac_status
|
1572
1572
|
if $ac_init_version; then
|
1573
1573
|
cat <<\_ACEOF
|
1574
|
-
libsodium configure 1.0.
|
1574
|
+
libsodium configure 1.0.6
|
1575
1575
|
generated by GNU Autoconf 2.69
|
1576
1576
|
|
1577
1577
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
@@ -1940,7 +1940,7 @@ cat >config.log <<_ACEOF
|
|
1940
1940
|
This file contains any messages produced by compilers while
|
1941
1941
|
running configure, to aid debugging if configure makes a mistake.
|
1942
1942
|
|
1943
|
-
It was created by libsodium $as_me 1.0.
|
1943
|
+
It was created by libsodium $as_me 1.0.6, which was
|
1944
1944
|
generated by GNU Autoconf 2.69. Invocation command line was
|
1945
1945
|
|
1946
1946
|
$ $0 $@
|
@@ -2876,7 +2876,7 @@ fi
|
|
2876
2876
|
|
2877
2877
|
# Define the identity of the package.
|
2878
2878
|
PACKAGE='libsodium'
|
2879
|
-
VERSION='1.0.
|
2879
|
+
VERSION='1.0.6'
|
2880
2880
|
|
2881
2881
|
|
2882
2882
|
cat >>confdefs.h <<_ACEOF
|
@@ -3171,10 +3171,10 @@ fi
|
|
3171
3171
|
ISODATE=`date +%Y-%m-%d`
|
3172
3172
|
|
3173
3173
|
|
3174
|
-
SODIUM_LIBRARY_VERSION_MAJOR=
|
3175
|
-
SODIUM_LIBRARY_VERSION_MINOR=
|
3176
|
-
DLL_VERSION=
|
3177
|
-
SODIUM_LIBRARY_VERSION=
|
3174
|
+
SODIUM_LIBRARY_VERSION_MAJOR=8
|
3175
|
+
SODIUM_LIBRARY_VERSION_MINOR=0
|
3176
|
+
DLL_VERSION=7
|
3177
|
+
SODIUM_LIBRARY_VERSION=17:0:0
|
3178
3178
|
# | | |
|
3179
3179
|
# +------+ | +---+
|
3180
3180
|
# | | |
|
@@ -15027,7 +15027,7 @@ fi
|
|
15027
15027
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___msse4_1" >&5
|
15028
15028
|
$as_echo "$ax_cv_check_cflags___msse4_1" >&6; }
|
15029
15029
|
if test "x$ax_cv_check_cflags___msse4_1" = xyes; then :
|
15030
|
-
|
15030
|
+
CFLAGS_SSE41="-msse4.1"
|
15031
15031
|
else
|
15032
15032
|
:
|
15033
15033
|
fi
|
@@ -16769,7 +16769,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
16769
16769
|
# report actual input values of CONFIG_FILES etc. instead of their
|
16770
16770
|
# values after options handling.
|
16771
16771
|
ac_log="
|
16772
|
-
This file was extended by libsodium $as_me 1.0.
|
16772
|
+
This file was extended by libsodium $as_me 1.0.6, which was
|
16773
16773
|
generated by GNU Autoconf 2.69. Invocation command line was
|
16774
16774
|
|
16775
16775
|
CONFIG_FILES = $CONFIG_FILES
|
@@ -16827,7 +16827,7 @@ _ACEOF
|
|
16827
16827
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
16828
16828
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
16829
16829
|
ac_cs_version="\\
|
16830
|
-
libsodium config.status 1.0.
|
16830
|
+
libsodium config.status 1.0.6
|
16831
16831
|
configured by $0, generated by GNU Autoconf 2.69,
|
16832
16832
|
with options \\"\$ac_cs_config\\"
|
16833
16833
|
|