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.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +8 -0
  3. data/lib/rbnacl/libsodium/version.rb +1 -1
  4. data/vendor/libsodium/ChangeLog +25 -0
  5. data/vendor/libsodium/Makefile.in +1 -1
  6. data/vendor/libsodium/THANKS +1 -0
  7. data/vendor/libsodium/autom4te.cache/output.1 +16 -16
  8. data/vendor/libsodium/autom4te.cache/output.5 +16 -16
  9. data/vendor/libsodium/autom4te.cache/requests +894 -894
  10. data/vendor/libsodium/autom4te.cache/traces.1 +4 -4
  11. data/vendor/libsodium/autom4te.cache/traces.5 +2 -2
  12. data/vendor/libsodium/builds/msvc/version.h +3 -3
  13. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +7 -3
  14. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +21 -9
  15. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +8 -4
  16. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +21 -9
  17. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +7 -3
  18. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +21 -9
  19. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +7 -3
  20. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +21 -9
  21. data/vendor/libsodium/configure +16 -16
  22. data/vendor/libsodium/configure.ac +7 -7
  23. data/vendor/libsodium/dist-build/Makefile.in +1 -1
  24. data/vendor/libsodium/libsodium.sln +4 -2
  25. data/vendor/libsodium/libsodium.vcxproj +17 -13
  26. data/vendor/libsodium/libsodium.vcxproj.filters +22 -10
  27. data/vendor/libsodium/msvc-scripts/Makefile.in +1 -1
  28. data/vendor/libsodium/msvc-scripts/process.bat +3 -3
  29. data/vendor/libsodium/src/Makefile.in +1 -1
  30. data/vendor/libsodium/src/libsodium/Makefile.am +19 -7
  31. data/vendor/libsodium/src/libsodium/Makefile.in +85 -48
  32. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +11 -3
  33. data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +1 -0
  34. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +2 -0
  35. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +4 -4
  36. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +20 -18
  37. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ref.c +93 -0
  38. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-sse41.c +80 -0
  39. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.c +89 -0
  40. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse2.h +68 -0
  41. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse41.h +402 -0
  42. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +58 -102
  43. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-round.h +123 -0
  44. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +6 -0
  45. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +15 -10
  46. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +14 -14
  47. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +0 -2
  48. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +0 -2
  49. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +18 -16
  50. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h +23 -0
  51. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +2 -2
  52. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +0 -3
  53. data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +6 -2
  54. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +5 -0
  55. data/vendor/libsodium/src/libsodium/include/Makefile.in +1 -1
  56. data/vendor/libsodium/src/libsodium/include/sodium/core.h +2 -1
  57. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +5 -2
  58. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +5 -2
  59. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth.h +3 -1
  60. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha256.h +2 -1
  61. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512.h +2 -1
  62. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512256.h +2 -1
  63. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +15 -7
  64. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +4 -2
  65. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +4 -0
  66. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash.h +2 -1
  67. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth.h +2 -1
  68. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +7 -30
  69. data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash_scryptsalsa208sha256.h +8 -4
  70. data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox.h +7 -3
  71. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign.h +5 -2
  72. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_ed25519.h +6 -3
  73. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +14 -8
  74. data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_16.h +2 -1
  75. data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_32.h +2 -1
  76. data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_64.h +2 -1
  77. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +10 -3
  78. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +8 -4
  79. data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +7 -0
  80. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +4 -2
  81. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +12 -10
  82. data/vendor/libsodium/src/libsodium/sodium/core.c +4 -4
  83. data/vendor/libsodium/src/libsodium/sodium/runtime.c +27 -1
  84. data/vendor/libsodium/src/libsodium/sodium/utils.c +4 -2
  85. data/vendor/libsodium/test/Makefile.in +1 -1
  86. data/vendor/libsodium/test/default/Makefile.in +1 -1
  87. data/vendor/libsodium/test/default/aead_aes256gcm.c +14 -0
  88. data/vendor/libsodium/test/default/box_easy2.c +13 -7
  89. data/vendor/libsodium/test/default/chacha20.c +36 -12
  90. data/vendor/libsodium/test/default/ed25519_convert.c +6 -2
  91. data/vendor/libsodium/test/default/generichash3.exp +1 -1
  92. data/vendor/libsodium/test/default/secretbox_easy2.c +5 -3
  93. data/vendor/libsodium/test/default/sodium_core.c +2 -0
  94. data/vendor/libsodium/test/default/sodium_utils.c +10 -4
  95. data/vendor/libsodium/test/default/sodium_utils2.c +1 -0
  96. data/vendor/libsodium/test/default/sodium_utils3.c +1 -0
  97. metadata +8 -22
  98. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/checksum +0 -1
  99. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/checksum +0 -1
  100. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/checksum +0 -1
  101. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/checksum +0 -1
  102. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/checksum +0 -1
  103. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/checksum +0 -1
  104. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/checksum +0 -1
  105. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/checksum +0 -1
  106. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/checksum +0 -1
  107. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c +0 -15
  108. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c +0 -11
  109. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c +0 -13
  110. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/checksum +0 -1
  111. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/checksum +0 -1
  112. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/checksum +0 -1
  113. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/checksum +0 -1
  114. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/checksum +0 -1
  115. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/checksum +0 -1
  116. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/checksum +0 -1
  117. data/vendor/libsodium/src/libsodium/crypto_verify/16/checksum +0 -1
  118. data/vendor/libsodium/src/libsodium/crypto_verify/32/checksum +0 -1
@@ -1,5 +1,5 @@
1
1
  AC_PREREQ([2.65])
2
- AC_INIT([libsodium],[1.0.5],
2
+ AC_INIT([libsodium],[1.0.6],
3
3
  [https://github.com/jedisct1/libsodium/issues],
4
4
  [libsodium],
5
5
  [https://github.com/jedisct1/libsodium])
@@ -16,10 +16,10 @@ AC_SUBST(VERSION)
16
16
  ISODATE=`date +%Y-%m-%d`
17
17
  AC_SUBST(ISODATE)
18
18
 
19
- SODIUM_LIBRARY_VERSION_MAJOR=7
20
- SODIUM_LIBRARY_VERSION_MINOR=6
21
- DLL_VERSION=6
22
- SODIUM_LIBRARY_VERSION=16:0:3
19
+ SODIUM_LIBRARY_VERSION_MAJOR=8
20
+ SODIUM_LIBRARY_VERSION_MINOR=0
21
+ DLL_VERSION=7
22
+ SODIUM_LIBRARY_VERSION=17:0:0
23
23
  # | | |
24
24
  # +------+ | +---+
25
25
  # | | |
@@ -327,7 +327,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"],[
327
327
  ]], [[ __m128i x = _mm_minpos_epu16(_mm_setzero_si128()); ]])],
328
328
  [AC_MSG_RESULT(yes)
329
329
  AC_DEFINE([HAVE_SMMINTRIN_H], [1], [sse4.1 is available])
330
- AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS_SSE4_1="-msse4.1"])],
330
+ AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS_SSE41="-msse4.1"])],
331
331
  [AC_MSG_RESULT(no)])
332
332
  CFLAGS="$oldcflags"
333
333
 
@@ -355,7 +355,7 @@ AC_SUBST(CFLAGS_MMX)
355
355
  AC_SUBST(CFLAGS_SSE2)
356
356
  AC_SUBST(CFLAGS_SSE3)
357
357
  AC_SUBST(CFLAGS_SSSE3)
358
- AC_SUBST(CFLAGS_SSE4_1)
358
+ AC_SUBST(CFLAGS_SSE41)
359
359
  AC_SUBST(CFLAGS_AESNI)
360
360
  AC_SUBST(CFLAGS_PCLMUL)
361
361
 
@@ -144,7 +144,7 @@ CFLAGS_MMX = @CFLAGS_MMX@
144
144
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
145
145
  CFLAGS_SSE2 = @CFLAGS_SSE2@
146
146
  CFLAGS_SSE3 = @CFLAGS_SSE3@
147
- CFLAGS_SSE4_1 = @CFLAGS_SSE4_1@
147
+ CFLAGS_SSE41 = @CFLAGS_SSE41@
148
148
  CFLAGS_SSSE3 = @CFLAGS_SSSE3@
149
149
  CPP = @CPP@
150
150
  CPPFLAGS = @CPPFLAGS@
@@ -1,6 +1,8 @@
1
1
  
2
- Microsoft Visual Studio Solution File, Format Version 11.00
3
- # Visual Studio 2010
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio 14
4
+ VisualStudioVersion = 14.0.23107.0
5
+ MinimumVisualStudioVersion = 10.0.40219.1
4
6
  Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsodium", "libsodium.vcxproj", "{A185B162-6CB6-4502-B03F-B56F7699A8D9}"
5
7
  EndProject
6
8
  Global
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
+ <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
3
  <ItemGroup Label="ProjectConfigurations">
4
4
  <ProjectConfiguration Include="DebugDLL|Win32">
5
5
  <Configuration>DebugDLL</Configuration>
@@ -45,56 +45,56 @@
45
45
  <UseDebugLibraries>true</UseDebugLibraries>
46
46
  <CharacterSet>MultiByte</CharacterSet>
47
47
  <WholeProgramOptimization>false</WholeProgramOptimization>
48
- <PlatformToolset>v100</PlatformToolset>
48
+ <PlatformToolset>v140</PlatformToolset>
49
49
  </PropertyGroup>
50
50
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="Configuration">
51
51
  <ConfigurationType>DynamicLibrary</ConfigurationType>
52
52
  <UseDebugLibraries>true</UseDebugLibraries>
53
53
  <CharacterSet>MultiByte</CharacterSet>
54
54
  <WholeProgramOptimization>false</WholeProgramOptimization>
55
- <PlatformToolset>v100</PlatformToolset>
55
+ <PlatformToolset>v140</PlatformToolset>
56
56
  </PropertyGroup>
57
57
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
58
58
  <ConfigurationType>StaticLibrary</ConfigurationType>
59
59
  <UseDebugLibraries>true</UseDebugLibraries>
60
60
  <CharacterSet>MultiByte</CharacterSet>
61
61
  <WholeProgramOptimization>false</WholeProgramOptimization>
62
- <PlatformToolset>v100</PlatformToolset>
62
+ <PlatformToolset>v140</PlatformToolset>
63
63
  </PropertyGroup>
64
64
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'" Label="Configuration">
65
65
  <ConfigurationType>DynamicLibrary</ConfigurationType>
66
66
  <UseDebugLibraries>true</UseDebugLibraries>
67
67
  <CharacterSet>MultiByte</CharacterSet>
68
68
  <WholeProgramOptimization>false</WholeProgramOptimization>
69
- <PlatformToolset>v100</PlatformToolset>
69
+ <PlatformToolset>v140</PlatformToolset>
70
70
  </PropertyGroup>
71
71
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
72
72
  <ConfigurationType>StaticLibrary</ConfigurationType>
73
73
  <UseDebugLibraries>false</UseDebugLibraries>
74
74
  <WholeProgramOptimization>true</WholeProgramOptimization>
75
75
  <CharacterSet>MultiByte</CharacterSet>
76
- <PlatformToolset>v100</PlatformToolset>
76
+ <PlatformToolset>v140</PlatformToolset>
77
77
  </PropertyGroup>
78
78
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'" Label="Configuration">
79
79
  <ConfigurationType>DynamicLibrary</ConfigurationType>
80
80
  <UseDebugLibraries>false</UseDebugLibraries>
81
81
  <WholeProgramOptimization>true</WholeProgramOptimization>
82
82
  <CharacterSet>MultiByte</CharacterSet>
83
- <PlatformToolset>v100</PlatformToolset>
83
+ <PlatformToolset>v140</PlatformToolset>
84
84
  </PropertyGroup>
85
85
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
86
86
  <ConfigurationType>StaticLibrary</ConfigurationType>
87
87
  <UseDebugLibraries>false</UseDebugLibraries>
88
88
  <WholeProgramOptimization>true</WholeProgramOptimization>
89
89
  <CharacterSet>MultiByte</CharacterSet>
90
- <PlatformToolset>v100</PlatformToolset>
90
+ <PlatformToolset>v140</PlatformToolset>
91
91
  </PropertyGroup>
92
92
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'" Label="Configuration">
93
93
  <ConfigurationType>DynamicLibrary</ConfigurationType>
94
94
  <UseDebugLibraries>false</UseDebugLibraries>
95
95
  <WholeProgramOptimization>true</WholeProgramOptimization>
96
96
  <CharacterSet>MultiByte</CharacterSet>
97
- <PlatformToolset>v100</PlatformToolset>
97
+ <PlatformToolset>v140</PlatformToolset>
98
98
  </PropertyGroup>
99
99
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
100
100
  <ImportGroup Label="ExtensionSettings">
@@ -315,6 +315,10 @@
315
315
  </Link>
316
316
  </ItemDefinitionGroup>
317
317
  <ItemGroup>
318
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h" />
319
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h" />
320
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h" />
321
+ <ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
318
322
  <ClInclude Include="src\libsodium\include\sodium.h" />
319
323
  <ClInclude Include="src\libsodium\include\sodium\core.h" />
320
324
  <ClInclude Include="src\libsodium\include\sodium\crypto_aead_aes256gcm.h" />
@@ -400,6 +404,9 @@
400
404
  <ClCompile Include="src\libsodium\crypto_core\salsa20\core_salsa20_api.c" />
401
405
  <ClCompile Include="src\libsodium\crypto_core\salsa20\ref\core_salsa20.c" />
402
406
  <ClCompile Include="src\libsodium\crypto_generichash\blake2\generichash_blake2_api.c" />
407
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c" />
408
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c" />
409
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c" />
403
410
  <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-ref.c" />
404
411
  <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\generichash_blake2b.c" />
405
412
  <ClCompile Include="src\libsodium\crypto_generichash\crypto_generichash.c" />
@@ -410,10 +417,7 @@
410
417
  <ClCompile Include="src\libsodium\crypto_hash\sha512\cp\hash_sha512.c" />
411
418
  <ClCompile Include="src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
412
419
  <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\donna\auth_poly1305_donna.c" />
413
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c" />
414
420
  <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
415
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c" />
416
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c" />
417
421
  <ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
418
422
  <ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
419
423
  <ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
@@ -531,4 +535,4 @@
531
535
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
532
536
  <ImportGroup Label="ExtensionTargets">
533
537
  </ImportGroup>
534
- </Project>
538
+ </Project>
@@ -177,6 +177,18 @@
177
177
  <ClInclude Include="src\libsodium\include\sodium\crypto_onetimeauth_poly1305.h">
178
178
  <Filter>Header Files</Filter>
179
179
  </ClInclude>
180
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse2.h">
181
+ <Filter>Header Files</Filter>
182
+ </ClInclude>
183
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-load-sse41.h">
184
+ <Filter>Header Files</Filter>
185
+ </ClInclude>
186
+ <ClInclude Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-round.h">
187
+ <Filter>Header Files</Filter>
188
+ </ClInclude>
189
+ <ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
190
+ <Filter>Header Files</Filter>
191
+ </ClInclude>
180
192
  </ItemGroup>
181
193
  <ItemGroup>
182
194
  <ClCompile Include="src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20.c">
@@ -281,15 +293,6 @@
281
293
  <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
282
294
  <Filter>Source Files</Filter>
283
295
  </ClCompile>
284
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_api.c">
285
- <Filter>Source Files</Filter>
286
- </ClCompile>
287
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305_try.c">
288
- <Filter>Source Files</Filter>
289
- </ClCompile>
290
- <ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\donna\verify_poly1305_donna.c">
291
- <Filter>Source Files</Filter>
292
- </ClCompile>
293
296
  <ClCompile Include="src\libsodium\crypto_scalarmult\crypto_scalarmult.c">
294
297
  <Filter>Source Files</Filter>
295
298
  </ClCompile>
@@ -647,5 +650,14 @@
647
650
  <ClCompile Include="src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
648
651
  <Filter>Source Files</Filter>
649
652
  </ClCompile>
653
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ref.c">
654
+ <Filter>Source Files</Filter>
655
+ </ClCompile>
656
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-sse41.c">
657
+ <Filter>Source Files</Filter>
658
+ </ClCompile>
659
+ <ClCompile Include="src\libsodium\crypto_generichash\blake2\ref\blake2b-compress-ssse3.c">
660
+ <Filter>Source Files</Filter>
661
+ </ClCompile>
650
662
  </ItemGroup>
651
- </Project>
663
+ </Project>
@@ -144,7 +144,7 @@ CFLAGS_MMX = @CFLAGS_MMX@
144
144
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
145
145
  CFLAGS_SSE2 = @CFLAGS_SSE2@
146
146
  CFLAGS_SSE3 = @CFLAGS_SSE3@
147
- CFLAGS_SSE4_1 = @CFLAGS_SSE4_1@
147
+ CFLAGS_SSE41 = @CFLAGS_SSE41@
148
148
  CFLAGS_SSSE3 = @CFLAGS_SSSE3@
149
149
  CPP = @CPP@
150
150
  CPPFLAGS = @CPPFLAGS@
@@ -1,4 +1,4 @@
1
- cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.5/ < src\libsodium\include\sodium\version.h.in > tmp
2
- cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/7/ < tmp > tmp2
3
- cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/6/ < tmp2 > src\libsodium\include\sodium\version.h
1
+ cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.6/ < src\libsodium\include\sodium\version.h.in > tmp
2
+ cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/8/ < tmp > tmp2
3
+ cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/0/ < tmp2 > src\libsodium\include\sodium\version.h
4
4
  del tmp tmp2
@@ -204,7 +204,7 @@ CFLAGS_MMX = @CFLAGS_MMX@
204
204
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
205
205
  CFLAGS_SSE2 = @CFLAGS_SSE2@
206
206
  CFLAGS_SSE3 = @CFLAGS_SSE3@
207
- CFLAGS_SSE4_1 = @CFLAGS_SSE4_1@
207
+ CFLAGS_SSE41 = @CFLAGS_SSE41@
208
208
  CFLAGS_SSSE3 = @CFLAGS_SSSE3@
209
209
  CPP = @CPP@
210
210
  CPPFLAGS = @CPPFLAGS@
@@ -36,7 +36,11 @@ libsodium_la_SOURCES = \
36
36
  crypto_generichash/blake2/ref/api.h \
37
37
  crypto_generichash/blake2/ref/blake2-impl.h \
38
38
  crypto_generichash/blake2/ref/blake2.h \
39
+ crypto_generichash/blake2/ref/blake2b-compress-ref.c \
40
+ crypto_generichash/blake2/ref/blake2b-load-sse2.h \
41
+ crypto_generichash/blake2/ref/blake2b-load-sse41.h \
39
42
  crypto_generichash/blake2/ref/blake2b-ref.c \
43
+ crypto_generichash/blake2/ref/blake2b-round.h \
40
44
  crypto_generichash/blake2/ref/generichash_blake2b.c \
41
45
  crypto_hash/crypto_hash.c \
42
46
  crypto_hash/sha256/hash_sha256_api.c \
@@ -47,13 +51,11 @@ libsodium_la_SOURCES = \
47
51
  crypto_hash/sha512/cp/hash_sha512.c \
48
52
  crypto_onetimeauth/crypto_onetimeauth.c \
49
53
  crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
50
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c \
51
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c \
54
+ crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
52
55
  crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
53
56
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
54
57
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
55
58
  crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c \
56
- crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c \
57
59
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
58
60
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
59
61
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -268,19 +270,29 @@ endif
268
270
  SUBDIRS = \
269
271
  include
270
272
 
271
- libsodium_la_LIBADD = libaesni.la libsse2.la
272
- noinst_LTLIBRARIES = libaesni.la libsse2.la
273
+ libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la
274
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la
273
275
 
274
276
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
275
277
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
276
278
  @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
277
-
278
279
  libaesni_la_SOURCES = \
279
280
  crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
280
281
 
281
282
  libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
282
283
  libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
283
284
  @CFLAGS_SSE2@
284
-
285
285
  libsse2_la_SOURCES = \
286
286
  crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
287
+
288
+ libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS)
289
+ libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
290
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@
291
+ libssse3_la_SOURCES = \
292
+ crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
293
+
294
+ libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS)
295
+ libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
296
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@
297
+ libsse41_la_SOURCES = \
298
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.c
@@ -226,7 +226,8 @@ am__v_lt_1 =
226
226
  libaesni_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
227
227
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
228
228
  $(libaesni_la_LDFLAGS) $(LDFLAGS) -o $@
229
- libsodium_la_DEPENDENCIES = libaesni.la libsse2.la
229
+ libsodium_la_DEPENDENCIES = libaesni.la libsse2.la libssse3.la \
230
+ libsse41.la
230
231
  am__libsodium_la_SOURCES_DIST = \
231
232
  crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
232
233
  crypto_auth/crypto_auth.c \
@@ -261,7 +262,11 @@ am__libsodium_la_SOURCES_DIST = \
261
262
  crypto_generichash/blake2/ref/api.h \
262
263
  crypto_generichash/blake2/ref/blake2-impl.h \
263
264
  crypto_generichash/blake2/ref/blake2.h \
265
+ crypto_generichash/blake2/ref/blake2b-compress-ref.c \
266
+ crypto_generichash/blake2/ref/blake2b-load-sse2.h \
267
+ crypto_generichash/blake2/ref/blake2b-load-sse41.h \
264
268
  crypto_generichash/blake2/ref/blake2b-ref.c \
269
+ crypto_generichash/blake2/ref/blake2b-round.h \
265
270
  crypto_generichash/blake2/ref/generichash_blake2b.c \
266
271
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
267
272
  crypto_hash/sha256/cp/api.h \
@@ -271,13 +276,11 @@ am__libsodium_la_SOURCES_DIST = \
271
276
  crypto_hash/sha512/cp/hash_sha512.c \
272
277
  crypto_onetimeauth/crypto_onetimeauth.c \
273
278
  crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
274
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c \
275
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c \
279
+ crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
276
280
  crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
277
281
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
278
282
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
279
283
  crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c \
280
- crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c \
281
284
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
282
285
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
283
286
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -502,6 +505,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
502
505
  crypto_core/salsa20/libsodium_la-core_salsa20_api.lo \
503
506
  crypto_generichash/libsodium_la-crypto_generichash.lo \
504
507
  crypto_generichash/blake2/libsodium_la-generichash_blake2_api.lo \
508
+ crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo \
505
509
  crypto_generichash/blake2/ref/libsodium_la-blake2b-ref.lo \
506
510
  crypto_generichash/blake2/ref/libsodium_la-generichash_blake2b.lo \
507
511
  crypto_hash/libsodium_la-crypto_hash.lo \
@@ -511,10 +515,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
511
515
  crypto_hash/sha512/cp/libsodium_la-hash_sha512.lo \
512
516
  crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \
513
517
  crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \
514
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo \
515
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo \
516
518
  crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo \
517
- crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo \
518
519
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo \
519
520
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo \
520
521
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo \
@@ -599,6 +600,18 @@ libsse2_la_OBJECTS = $(am_libsse2_la_OBJECTS)
599
600
  libsse2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
600
601
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
601
602
  $(libsse2_la_LDFLAGS) $(LDFLAGS) -o $@
603
+ libsse41_la_LIBADD =
604
+ am_libsse41_la_OBJECTS = crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo
605
+ libsse41_la_OBJECTS = $(am_libsse41_la_OBJECTS)
606
+ libsse41_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
607
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
608
+ $(libsse41_la_LDFLAGS) $(LDFLAGS) -o $@
609
+ libssse3_la_LIBADD =
610
+ am_libssse3_la_OBJECTS = crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo
611
+ libssse3_la_OBJECTS = $(am_libssse3_la_OBJECTS)
612
+ libssse3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
613
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
614
+ $(libssse3_la_LDFLAGS) $(LDFLAGS) -o $@
602
615
  AM_V_P = $(am__v_P_@AM_V@)
603
616
  am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
604
617
  am__v_P_0 = false
@@ -644,9 +657,11 @@ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
644
657
  am__v_CCLD_0 = @echo " CCLD " $@;
645
658
  am__v_CCLD_1 =
646
659
  SOURCES = $(libaesni_la_SOURCES) $(libsodium_la_SOURCES) \
647
- $(libsse2_la_SOURCES)
660
+ $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
661
+ $(libssse3_la_SOURCES)
648
662
  DIST_SOURCES = $(libaesni_la_SOURCES) $(am__libsodium_la_SOURCES_DIST) \
649
- $(libsse2_la_SOURCES)
663
+ $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
664
+ $(libssse3_la_SOURCES)
650
665
  RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
651
666
  ctags-recursive dvi-recursive html-recursive info-recursive \
652
667
  install-data-recursive install-dvi-recursive \
@@ -737,7 +752,7 @@ CFLAGS_MMX = @CFLAGS_MMX@
737
752
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
738
753
  CFLAGS_SSE2 = @CFLAGS_SSE2@
739
754
  CFLAGS_SSE3 = @CFLAGS_SSE3@
740
- CFLAGS_SSE4_1 = @CFLAGS_SSE4_1@
755
+ CFLAGS_SSE41 = @CFLAGS_SSE41@
741
756
  CFLAGS_SSSE3 = @CFLAGS_SSSE3@
742
757
  CPP = @CPP@
743
758
  CPPFLAGS = @CPPFLAGS@
@@ -894,7 +909,11 @@ libsodium_la_SOURCES = \
894
909
  crypto_generichash/blake2/ref/api.h \
895
910
  crypto_generichash/blake2/ref/blake2-impl.h \
896
911
  crypto_generichash/blake2/ref/blake2.h \
912
+ crypto_generichash/blake2/ref/blake2b-compress-ref.c \
913
+ crypto_generichash/blake2/ref/blake2b-load-sse2.h \
914
+ crypto_generichash/blake2/ref/blake2b-load-sse41.h \
897
915
  crypto_generichash/blake2/ref/blake2b-ref.c \
916
+ crypto_generichash/blake2/ref/blake2b-round.h \
898
917
  crypto_generichash/blake2/ref/generichash_blake2b.c \
899
918
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
900
919
  crypto_hash/sha256/cp/api.h \
@@ -904,13 +923,11 @@ libsodium_la_SOURCES = \
904
923
  crypto_hash/sha512/cp/hash_sha512.c \
905
924
  crypto_onetimeauth/crypto_onetimeauth.c \
906
925
  crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
907
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c \
908
- crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c \
926
+ crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
909
927
  crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
910
928
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
911
929
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
912
930
  crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c \
913
- crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c \
914
931
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
915
932
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
916
933
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -1016,8 +1033,8 @@ libsodium_la_CPPFLAGS = \
1016
1033
  SUBDIRS = \
1017
1034
  include
1018
1035
 
1019
- libsodium_la_LIBADD = libaesni.la libsse2.la
1020
- noinst_LTLIBRARIES = libaesni.la libsse2.la
1036
+ libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la
1037
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la
1021
1038
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
1022
1039
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1023
1040
  @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
@@ -1032,6 +1049,20 @@ libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1032
1049
  libsse2_la_SOURCES = \
1033
1050
  crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
1034
1051
 
1052
+ libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS)
1053
+ libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1054
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@
1055
+
1056
+ libssse3_la_SOURCES = \
1057
+ crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
1058
+
1059
+ libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS)
1060
+ libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1061
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@
1062
+
1063
+ libsse41_la_SOURCES = \
1064
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.c
1065
+
1035
1066
  all: all-recursive
1036
1067
 
1037
1068
  .SUFFIXES:
@@ -1304,6 +1335,9 @@ crypto_generichash/blake2/ref/$(am__dirstamp):
1304
1335
  crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp):
1305
1336
  @$(MKDIR_P) crypto_generichash/blake2/ref/$(DEPDIR)
1306
1337
  @: > crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1338
+ crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo: \
1339
+ crypto_generichash/blake2/ref/$(am__dirstamp) \
1340
+ crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1307
1341
  crypto_generichash/blake2/ref/libsodium_la-blake2b-ref.lo: \
1308
1342
  crypto_generichash/blake2/ref/$(am__dirstamp) \
1309
1343
  crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
@@ -1372,12 +1406,6 @@ crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp):
1372
1406
  crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: \
1373
1407
  crypto_onetimeauth/poly1305/$(am__dirstamp) \
1374
1408
  crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp)
1375
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo: \
1376
- crypto_onetimeauth/poly1305/$(am__dirstamp) \
1377
- crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp)
1378
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo: \
1379
- crypto_onetimeauth/poly1305/$(am__dirstamp) \
1380
- crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp)
1381
1409
  crypto_onetimeauth/poly1305/donna/$(am__dirstamp):
1382
1410
  @$(MKDIR_P) crypto_onetimeauth/poly1305/donna
1383
1411
  @: > crypto_onetimeauth/poly1305/donna/$(am__dirstamp)
@@ -1387,9 +1415,6 @@ crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp):
1387
1415
  crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo: \
1388
1416
  crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \
1389
1417
  crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
1390
- crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo: \
1391
- crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \
1392
- crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
1393
1418
  crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp):
1394
1419
  @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256
1395
1420
  @: > crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp)
@@ -2029,6 +2054,18 @@ crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_ss
2029
2054
 
2030
2055
  libsse2.la: $(libsse2_la_OBJECTS) $(libsse2_la_DEPENDENCIES) $(EXTRA_libsse2_la_DEPENDENCIES)
2031
2056
  $(AM_V_CCLD)$(libsse2_la_LINK) $(libsse2_la_OBJECTS) $(libsse2_la_LIBADD) $(LIBS)
2057
+ crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo: \
2058
+ crypto_generichash/blake2/ref/$(am__dirstamp) \
2059
+ crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
2060
+
2061
+ libsse41.la: $(libsse41_la_OBJECTS) $(libsse41_la_DEPENDENCIES) $(EXTRA_libsse41_la_DEPENDENCIES)
2062
+ $(AM_V_CCLD)$(libsse41_la_LINK) $(libsse41_la_OBJECTS) $(libsse41_la_LIBADD) $(LIBS)
2063
+ crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: \
2064
+ crypto_generichash/blake2/ref/$(am__dirstamp) \
2065
+ crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
2066
+
2067
+ libssse3.la: $(libssse3_la_OBJECTS) $(libssse3_la_DEPENDENCIES) $(EXTRA_libssse3_la_DEPENDENCIES)
2068
+ $(AM_V_CCLD)$(libssse3_la_LINK) $(libssse3_la_OBJECTS) $(libssse3_la_LIBADD) $(LIBS)
2032
2069
 
2033
2070
  mostlyclean-compile:
2034
2071
  -rm -f *.$(OBJEXT)
@@ -2214,8 +2251,11 @@ distclean-compile:
2214
2251
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa208/ref/$(DEPDIR)/libsodium_la-core_salsa208.Plo@am__quote@
2215
2252
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo@am__quote@
2216
2253
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/$(DEPDIR)/libsodium_la-generichash_blake2_api.Plo@am__quote@
2254
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Plo@am__quote@
2217
2255
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Plo@am__quote@
2218
2256
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Plo@am__quote@
2257
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Plo@am__quote@
2258
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Plo@am__quote@
2219
2259
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/$(DEPDIR)/libsodium_la-crypto_hash.Plo@am__quote@
2220
2260
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha256/$(DEPDIR)/libsodium_la-hash_sha256_api.Plo@am__quote@
2221
2261
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha256/cp/$(DEPDIR)/libsodium_la-hash_sha256.Plo@am__quote@
@@ -2223,10 +2263,7 @@ distclean-compile:
2223
2263
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512.Plo@am__quote@
2224
2264
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo@am__quote@
2225
2265
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@
2226
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_api.Plo@am__quote@
2227
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_try.Plo@am__quote@
2228
2266
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Plo@am__quote@
2229
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-verify_poly1305_donna.Plo@am__quote@
2230
2267
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo@am__quote@
2231
2268
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Plo@am__quote@
2232
2269
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Plo@am__quote@
@@ -2580,6 +2617,13 @@ crypto_generichash/blake2/libsodium_la-generichash_blake2_api.lo: crypto_generic
2580
2617
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2581
2618
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/libsodium_la-generichash_blake2_api.lo `test -f 'crypto_generichash/blake2/generichash_blake2_api.c' || echo '$(srcdir)/'`crypto_generichash/blake2/generichash_blake2_api.c
2582
2619
 
2620
+ crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo: crypto_generichash/blake2/ref/blake2b-compress-ref.c
2621
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Tpo -c -o crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-ref.c
2622
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Plo
2623
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2/ref/blake2b-compress-ref.c' object='crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo' libtool=yes @AMDEPBACKSLASH@
2624
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2625
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-ref.c
2626
+
2583
2627
  crypto_generichash/blake2/ref/libsodium_la-blake2b-ref.lo: crypto_generichash/blake2/ref/blake2b-ref.c
2584
2628
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libsodium_la-blake2b-ref.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Tpo -c -o crypto_generichash/blake2/ref/libsodium_la-blake2b-ref.lo `test -f 'crypto_generichash/blake2/ref/blake2b-ref.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-ref.c
2585
2629
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Plo
@@ -2643,20 +2687,6 @@ crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: crypto_onetime
2643
2687
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2644
2688
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305.c
2645
2689
 
2646
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo: crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c
2647
- @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo -MD -MP -MF crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_api.Tpo -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c
2648
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_api.Tpo crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_api.Plo
2649
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c' object='crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo' libtool=yes @AMDEPBACKSLASH@
2650
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2651
- @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_api.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c
2652
-
2653
- crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo: crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c
2654
- @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo -MD -MP -MF crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_try.Tpo -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c
2655
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_try.Tpo crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305_try.Plo
2656
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c' object='crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo' libtool=yes @AMDEPBACKSLASH@
2657
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2658
- @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305_try.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c
2659
-
2660
2690
  crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo: crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2661
2691
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo -MD -MP -MF crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Tpo -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2662
2692
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Tpo crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Plo
@@ -2664,13 +2694,6 @@ crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo: crypto_on
2664
2694
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2665
2695
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2666
2696
 
2667
- crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo: crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c
2668
- @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo -MD -MP -MF crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-verify_poly1305_donna.Tpo -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c
2669
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-verify_poly1305_donna.Tpo crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-verify_poly1305_donna.Plo
2670
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c' object='crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo' libtool=yes @AMDEPBACKSLASH@
2671
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2672
- @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-verify_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c
2673
-
2674
2697
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2675
2698
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2676
2699
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo
@@ -3497,6 +3520,20 @@ crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_ss
3497
3520
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3498
3521
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
3499
3522
 
3523
+ crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo: crypto_generichash/blake2/ref/blake2b-compress-sse41.c
3524
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse41_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo -c -o crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-sse41.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-sse41.c
3525
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Plo
3526
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2/ref/blake2b-compress-sse41.c' object='crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo' libtool=yes @AMDEPBACKSLASH@
3527
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3528
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse41_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-sse41.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-sse41.c
3529
+
3530
+ crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
3531
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Tpo -c -o crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-ssse3.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
3532
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libssse3_la-blake2b-compress-ssse3.Plo
3533
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2/ref/blake2b-compress-ssse3.c' object='crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo' libtool=yes @AMDEPBACKSLASH@
3534
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3535
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-ssse3.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
3536
+
3500
3537
  mostlyclean-libtool:
3501
3538
  -rm -f *.lo
3502
3539