rbnacl-libsodium 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +23 -0
  3. data/CHANGES.md +5 -0
  4. data/Gemfile +5 -2
  5. data/Rakefile +5 -0
  6. data/ext/rbnacl/extconf.rb +2 -1
  7. data/lib/rbnacl/libsodium.rb +8 -2
  8. data/lib/rbnacl/libsodium/version.rb +1 -1
  9. data/vendor/libsodium/AUTHORS +14 -0
  10. data/vendor/libsodium/ChangeLog +26 -0
  11. data/vendor/libsodium/LICENSE +1 -1
  12. data/vendor/libsodium/Makefile.am +1 -0
  13. data/vendor/libsodium/Makefile.in +9 -0
  14. data/vendor/libsodium/README.markdown +7 -0
  15. data/vendor/libsodium/aclocal.m4 +1 -0
  16. data/vendor/libsodium/appveyor.yml +25 -0
  17. data/vendor/libsodium/autom4te.cache/output.1 +640 -126
  18. data/vendor/libsodium/autom4te.cache/output.6 +19049 -0
  19. data/vendor/libsodium/autom4te.cache/requests +1151 -914
  20. data/vendor/libsodium/autom4te.cache/traces.1 +472 -426
  21. data/vendor/libsodium/autom4te.cache/traces.6 +3193 -0
  22. data/vendor/libsodium/builds/msvc/version.h +2 -2
  23. data/vendor/libsodium/builds/msvc/vs2010/libsodium.sln +50 -79
  24. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +20 -8
  25. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +208 -166
  26. data/vendor/libsodium/builds/msvc/vs2012/libsodium.sln +50 -79
  27. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +20 -8
  28. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +206 -164
  29. data/vendor/libsodium/builds/msvc/vs2013/libsodium.sln +52 -81
  30. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +20 -8
  31. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +206 -164
  32. data/vendor/libsodium/builds/msvc/vs2015/libsodium.sln +52 -81
  33. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +20 -8
  34. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +206 -164
  35. data/vendor/libsodium/configure +639 -125
  36. data/vendor/libsodium/configure.ac +94 -16
  37. data/vendor/libsodium/dist-build/Makefile.in +9 -0
  38. data/vendor/libsodium/dist-build/emscripten-symbols.def +370 -0
  39. data/vendor/libsodium/dist-build/emscripten.sh +9 -3
  40. data/vendor/libsodium/dist-build/generate-emscripten-symbols.sh +43 -0
  41. data/vendor/libsodium/libsodium-uninstalled.pc.in +1 -1
  42. data/vendor/libsodium/libsodium.pc.in +1 -1
  43. data/vendor/libsodium/libsodium.vcxproj +70 -66
  44. data/vendor/libsodium/libsodium.vcxproj.filters +204 -192
  45. data/vendor/libsodium/m4/ax_valgrind_check.m4 +190 -0
  46. data/vendor/libsodium/msvc-scripts/Makefile.in +9 -0
  47. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  48. data/vendor/libsodium/src/Makefile.in +9 -0
  49. data/vendor/libsodium/src/libsodium/Makefile.am +31 -6
  50. data/vendor/libsodium/src/libsodium/Makefile.in +238 -42
  51. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +234 -38
  52. data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +208 -118
  53. data/vendor/libsodium/src/libsodium/crypto_box/crypto_box_seal.c +2 -2
  54. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +1 -4
  55. data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +1799 -1790
  56. data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.h +39 -39
  57. data/vendor/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c +86 -0
  58. data/vendor/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.h +28 -0
  59. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +38 -46
  60. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +47 -55
  61. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +47 -55
  62. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +47 -55
  63. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c +7 -0
  64. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +0 -89
  65. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +50 -141
  66. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.c +45 -0
  67. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-avx2.h +123 -0
  68. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ref.c +3 -2
  69. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-sse41.c +2 -2
  70. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/{blake2b-round.h → blake2b-compress-sse41.h} +2 -28
  71. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.c +2 -4
  72. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ssse3.h +97 -0
  73. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-avx2.h +339 -0
  74. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse2.h +0 -2
  75. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-load-sse41.h +0 -2
  76. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +29 -18
  77. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +4 -43
  78. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +3 -32
  79. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +1 -20
  80. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +22 -41
  81. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +12 -39
  82. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +2 -4
  83. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h +1 -20
  84. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c +570 -0
  85. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h +198 -0
  86. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c +444 -0
  87. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.h +32 -0
  88. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c +229 -0
  89. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c +222 -0
  90. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-impl.h +40 -0
  91. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c +238 -0
  92. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.h +251 -0
  93. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c +80 -0
  94. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.h +8 -0
  95. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ref.h +38 -0
  96. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ssse3.h +117 -0
  97. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c +164 -0
  98. data/vendor/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c +106 -0
  99. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +1 -1
  100. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +4 -4
  101. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c +186 -186
  102. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +2 -2
  103. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +3 -2
  104. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +33 -33
  105. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +253 -254
  106. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c +16 -17
  107. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +1 -0
  108. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c +11 -11
  109. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.h +1 -0
  110. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts_namespace.h +1 -1
  111. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe.h +3 -2
  112. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51.h +5 -3
  113. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +41 -41
  114. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S +10 -2
  115. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h +1 -1
  116. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S +4 -0
  117. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S +4 -0
  118. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +31 -32
  119. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S +4 -0
  120. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.h +1 -1
  121. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S +4 -0
  122. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.h +1 -1
  123. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h +1 -1
  124. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h +1 -1
  125. data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +2 -6
  126. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +8 -28
  127. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +75 -0
  128. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +6 -6
  129. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common.h +1 -18
  130. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c +20 -20
  131. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/types.h +4 -4
  132. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +6 -6
  133. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +56 -77
  134. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.h +1 -0
  135. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.h +1 -0
  136. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +2 -8
  137. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +2 -8
  138. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +2 -8
  139. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +2 -8
  140. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +2 -8
  141. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +2 -8
  142. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +1 -5
  143. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +1 -5
  144. data/vendor/libsodium/src/libsodium/include/Makefile.am +3 -0
  145. data/vendor/libsodium/src/libsodium/include/Makefile.in +19 -8
  146. data/vendor/libsodium/src/libsodium/include/sodium.h +3 -0
  147. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +50 -0
  148. data/vendor/libsodium/src/libsodium/include/sodium/crypto_aead_chacha20poly1305.h +94 -22
  149. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +6 -6
  150. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_hchacha20.h +35 -0
  151. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +3 -0
  152. data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash.h +89 -0
  153. data/vendor/libsodium/src/libsodium/include/sodium/crypto_pwhash_argon2i.h +86 -0
  154. data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h +6 -6
  155. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +0 -11
  156. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
  157. data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +3 -0
  158. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +5 -1
  159. data/vendor/libsodium/src/libsodium/sodium/common.h +150 -0
  160. data/vendor/libsodium/src/libsodium/sodium/core.c +3 -1
  161. data/vendor/libsodium/src/libsodium/sodium/runtime.c +37 -19
  162. data/vendor/libsodium/src/libsodium/sodium/utils.c +18 -9
  163. data/vendor/libsodium/test/Makefile.in +9 -0
  164. data/vendor/libsodium/test/default/Makefile.am +10 -0
  165. data/vendor/libsodium/test/default/Makefile.in +53 -20
  166. data/vendor/libsodium/test/default/aead_aes256gcm.c +43 -17
  167. data/vendor/libsodium/test/default/aead_chacha20poly1305.c +179 -86
  168. data/vendor/libsodium/test/default/auth7.c +5 -5
  169. data/vendor/libsodium/test/default/box.c +4 -4
  170. data/vendor/libsodium/test/default/box2.c +1 -1
  171. data/vendor/libsodium/test/default/core6.c +1 -1
  172. data/vendor/libsodium/test/default/generichash.c +12 -1
  173. data/vendor/libsodium/test/default/generichash2.c +2 -2
  174. data/vendor/libsodium/test/default/generichash3.c +21 -0
  175. data/vendor/libsodium/test/default/pwhash.c +186 -168
  176. data/vendor/libsodium/test/default/pwhash.exp +11 -30
  177. data/vendor/libsodium/test/default/pwhash_scrypt.c +349 -0
  178. data/vendor/libsodium/test/default/pwhash_scrypt.exp +31 -0
  179. data/vendor/libsodium/test/default/secretbox.c +1 -1
  180. data/vendor/libsodium/test/default/secretbox2.c +1 -1
  181. data/vendor/libsodium/test/default/sign.c +15 -0
  182. data/vendor/libsodium/test/default/sodium_utils2.c +8 -3
  183. data/vendor/libsodium/test/default/sodium_utils3.c +4 -2
  184. data/vendor/libsodium/test/default/verify1.c +0 -4
  185. data/vendor/libsodium/test/quirks/quirks.h +3 -0
  186. metadata +37 -22
  187. data/vendor/libsodium/builds/msvc/vs2010/test/test.props +0 -43
  188. data/vendor/libsodium/builds/msvc/vs2010/test/test.runner.bat +0 -78
  189. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +0 -244
  190. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +0 -192
  191. data/vendor/libsodium/builds/msvc/vs2012/test/test.props +0 -43
  192. data/vendor/libsodium/builds/msvc/vs2012/test/test.runner.bat +0 -78
  193. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +0 -244
  194. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +0 -192
  195. data/vendor/libsodium/builds/msvc/vs2013/test/test.props +0 -43
  196. data/vendor/libsodium/builds/msvc/vs2013/test/test.runner.bat +0 -78
  197. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +0 -244
  198. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +0 -192
  199. data/vendor/libsodium/builds/msvc/vs2015/test/test.props +0 -43
  200. data/vendor/libsodium/builds/msvc/vs2015/test/test.runner.bat +0 -78
  201. data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj +0 -244
  202. data/vendor/libsodium/builds/msvc/vs2015/test/test.vcxproj.filters +0 -192
  203. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sysendian.h +0 -146
  204. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c +0 -64
@@ -0,0 +1,190 @@
1
+ # ===========================================================================
2
+ # http://www.gnu.org/software/autoconf-archive/ax_valgrind_check.html
3
+ # ===========================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_VALGRIND_CHECK()
8
+ #
9
+ # DESCRIPTION
10
+ #
11
+ # Checks whether Valgrind is present and, if so, allows running `make
12
+ # check` under a variety of Valgrind tools to check for memory and
13
+ # threading errors.
14
+ #
15
+ # Defines VALGRIND_CHECK_RULES which should be substituted in your
16
+ # Makefile; and $enable_valgrind which can be used in subsequent configure
17
+ # output. VALGRIND_ENABLED is defined and substituted, and corresponds to
18
+ # the value of the --enable-valgrind option, which defaults to being
19
+ # enabled if Valgrind is installed and disabled otherwise.
20
+ #
21
+ # If unit tests are written using a shell script and automake's
22
+ # LOG_COMPILER system, the $(VALGRIND) variable can be used within the
23
+ # shell scripts to enable Valgrind, as described here:
24
+ #
25
+ # https://www.gnu.org/software/gnulib/manual/html_node/Running-self_002dtests-under-valgrind.html
26
+ #
27
+ # Usage example:
28
+ #
29
+ # configure.ac:
30
+ #
31
+ # AX_VALGRIND_CHECK
32
+ #
33
+ # Makefile.am:
34
+ #
35
+ # @VALGRIND_CHECK_RULES@
36
+ # VALGRIND_SUPPRESSIONS_FILES = my-project.supp
37
+ # EXTRA_DIST = my-project.supp
38
+ #
39
+ # This results in a "check-valgrind" rule being added to any Makefile.am
40
+ # which includes "@VALGRIND_CHECK_RULES@" (assuming the module has been
41
+ # configured with --enable-valgrind). Running `make check-valgrind` in
42
+ # that directory will run the module's test suite (`make check`) once for
43
+ # each of the available Valgrind tools (out of memcheck, helgrind, drd and
44
+ # sgcheck), and will output results to test-suite-$toolname.log for each.
45
+ # The target will succeed if there are zero errors and fail otherwise.
46
+ #
47
+ # The macro supports running with and without libtool.
48
+ #
49
+ # LICENSE
50
+ #
51
+ # Copyright (c) 2014, 2015, 2016 Philip Withnall <philip.withnall@collabora.co.uk>
52
+ #
53
+ # Copying and distribution of this file, with or without modification, are
54
+ # permitted in any medium without royalty provided the copyright notice
55
+ # and this notice are preserved. This file is offered as-is, without any
56
+ # warranty.
57
+
58
+ #serial 8
59
+
60
+ AC_DEFUN([AX_VALGRIND_CHECK],[
61
+ dnl Check for --enable-valgrind
62
+ AC_ARG_ENABLE([valgrind],
63
+ [AS_HELP_STRING([--enable-valgrind], [Whether to enable Valgrind on the unit tests (requires GNU make)])],
64
+ [enable_valgrind=$enableval],[enable_valgrind=no])
65
+
66
+ AS_IF([test "$enable_valgrind" != "no"],[
67
+ # Check for Valgrind.
68
+ AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind])
69
+ AS_IF([test "$VALGRIND" = ""],[
70
+ AS_IF([test "$enable_valgrind" = "yes"],[
71
+ AC_MSG_ERROR([Could not find valgrind; either install it or reconfigure with --disable-valgrind])
72
+ ],[
73
+ enable_valgrind=no
74
+ ])
75
+ ],[
76
+ enable_valgrind=yes
77
+ ])
78
+ ])
79
+
80
+ AM_CONDITIONAL([VALGRIND_ENABLED],[test "$enable_valgrind" = "yes"])
81
+ AC_SUBST([VALGRIND_ENABLED],[$enable_valgrind])
82
+
83
+ # Check for Valgrind tools we care about.
84
+ m4_define([valgrind_tool_list],[[memcheck], [helgrind], [drd], [exp-sgcheck]])
85
+
86
+ AS_IF([test "$VALGRIND" != ""],[
87
+ m4_foreach([vgtool],[valgrind_tool_list],[
88
+ m4_define([vgtooln],AS_TR_SH(vgtool))
89
+ m4_define([ax_cv_var],[ax_cv_valgrind_tool_]vgtooln)
90
+ AC_CACHE_CHECK([for Valgrind tool ]vgtool,ax_cv_var,[
91
+ ax_cv_var=
92
+ AS_IF([`$VALGRIND --tool=vgtool --help >/dev/null 2>&1`],[
93
+ ax_cv_var="vgtool"
94
+ ])
95
+ ])
96
+
97
+ AC_SUBST([VALGRIND_HAVE_TOOL_]vgtooln,[$ax_cv_var])
98
+ ])
99
+ ])
100
+
101
+ [VALGRIND_CHECK_RULES='
102
+ # Valgrind check
103
+ #
104
+ # Optional:
105
+ # - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions
106
+ # files to load. (Default: empty)
107
+ # - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.
108
+ # (Default: --num-callers=30)
109
+ # - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:
110
+ # memcheck, helgrind, drd, sgcheck). (Default: various)
111
+
112
+ # Optional variables
113
+ VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES))
114
+ VALGRIND_FLAGS ?= --num-callers=30
115
+ VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no
116
+ VALGRIND_helgrind_FLAGS ?= --history-level=approx
117
+ VALGRIND_drd_FLAGS ?=
118
+ VALGRIND_sgcheck_FLAGS ?=
119
+
120
+ # Internal use
121
+ valgrind_tools = memcheck helgrind drd sgcheck
122
+ valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools)))
123
+
124
+ valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS)
125
+ valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS)
126
+ valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS)
127
+ valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS)
128
+
129
+ valgrind_quiet = $(valgrind_quiet_$(V))
130
+ valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY))
131
+ valgrind_quiet_0 = --quiet
132
+
133
+ # Support running with and without libtool.
134
+ ifneq ($(LIBTOOL),)
135
+ valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute
136
+ else
137
+ valgrind_lt =
138
+ endif
139
+
140
+ # Use recursive makes in order to ignore errors during check
141
+ check-valgrind:
142
+ ifeq ($(VALGRIND_ENABLED),yes)
143
+ -$(foreach tool,$(valgrind_tools), \
144
+ $(if $(VALGRIND_HAVE_TOOL_$(tool))$(VALGRIND_HAVE_TOOL_exp_$(tool)), \
145
+ $(MAKE) $(AM_MAKEFLAGS) -k check-valgrind-tool VALGRIND_TOOL=$(tool); \
146
+ ) \
147
+ )
148
+ else
149
+ @echo "Need to reconfigure with --enable-valgrind"
150
+ endif
151
+
152
+ # Valgrind running
153
+ VALGRIND_TESTS_ENVIRONMENT = \
154
+ $(TESTS_ENVIRONMENT) \
155
+ env VALGRIND=$(VALGRIND) \
156
+ G_SLICE=always-malloc,debug-blocks \
157
+ G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly
158
+
159
+ VALGRIND_LOG_COMPILER = \
160
+ $(valgrind_lt) \
161
+ $(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
162
+
163
+ check-valgrind-tool:
164
+ ifeq ($(VALGRIND_ENABLED),yes)
165
+ $(MAKE) check-TESTS \
166
+ TESTS_ENVIRONMENT="$(VALGRIND_TESTS_ENVIRONMENT)" \
167
+ LOG_COMPILER="$(VALGRIND_LOG_COMPILER)" \
168
+ LOG_FLAGS="$(valgrind_$(VALGRIND_TOOL)_flags)" \
169
+ TEST_SUITE_LOG=test-suite-$(VALGRIND_TOOL).log
170
+ else
171
+ @echo "Need to reconfigure with --enable-valgrind"
172
+ endif
173
+
174
+ A''M_DISTCHECK_CONFIGURE_FLAGS ?=
175
+ A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
176
+
177
+ MOSTLYCLEANFILES ?=
178
+ MOSTLYCLEANFILES += $(valgrind_log_files)
179
+
180
+ .PHONY: check-valgrind check-valgrind-tool
181
+ ']
182
+
183
+ AS_IF([test "$enable_valgrind" != "yes"],[
184
+ VALGRIND_CHECK_RULES='
185
+ check-valgrind:
186
+ @echo "Need to use GNU make and reconfigure with --enable-valgrind"'
187
+ ])
188
+ AC_SUBST([VALGRIND_CHECK_RULES])
189
+ m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([VALGRIND_CHECK_RULES])])
190
+ ])
@@ -92,6 +92,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92
92
  am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
93
93
  $(top_srcdir)/m4/ax_check_define.m4 \
94
94
  $(top_srcdir)/m4/ax_check_link_flag.m4 \
95
+ $(top_srcdir)/m4/ax_valgrind_check.m4 \
95
96
  $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
96
97
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
97
98
  $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
@@ -140,6 +141,8 @@ CCASFLAGS = @CCASFLAGS@
140
141
  CCDEPMODE = @CCDEPMODE@
141
142
  CFLAGS = @CFLAGS@
142
143
  CFLAGS_AESNI = @CFLAGS_AESNI@
144
+ CFLAGS_AVX = @CFLAGS_AVX@
145
+ CFLAGS_AVX2 = @CFLAGS_AVX2@
143
146
  CFLAGS_MMX = @CFLAGS_MMX@
144
147
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
145
148
  CFLAGS_SSE2 = @CFLAGS_SSE2@
@@ -212,6 +215,12 @@ SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
212
215
  SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
213
216
  STRIP = @STRIP@
214
217
  TEST_LDFLAGS = @TEST_LDFLAGS@
218
+ VALGRIND = @VALGRIND@
219
+ VALGRIND_ENABLED = @VALGRIND_ENABLED@
220
+ VALGRIND_HAVE_TOOL_drd = @VALGRIND_HAVE_TOOL_drd@
221
+ VALGRIND_HAVE_TOOL_exp_sgcheck = @VALGRIND_HAVE_TOOL_exp_sgcheck@
222
+ VALGRIND_HAVE_TOOL_helgrind = @VALGRIND_HAVE_TOOL_helgrind@
223
+ VALGRIND_HAVE_TOOL_memcheck = @VALGRIND_HAVE_TOOL_memcheck@
215
224
  VERSION = @VERSION@
216
225
  abs_builddir = @abs_builddir@
217
226
  abs_srcdir = @abs_srcdir@
@@ -1,4 +1,4 @@
1
- cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.8/ < src\libsodium\include\sodium\version.h.in > tmp
1
+ cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.9/ < src\libsodium\include\sodium\version.h.in > tmp
2
2
  cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
3
- cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/1/ < tmp2 > src\libsodium\include\sodium\version.h
3
+ cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/2/ < tmp2 > src\libsodium\include\sodium\version.h
4
4
  del tmp tmp2
@@ -92,6 +92,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92
92
  am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
93
93
  $(top_srcdir)/m4/ax_check_define.m4 \
94
94
  $(top_srcdir)/m4/ax_check_link_flag.m4 \
95
+ $(top_srcdir)/m4/ax_valgrind_check.m4 \
95
96
  $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
96
97
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
97
98
  $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
@@ -200,6 +201,8 @@ CCASFLAGS = @CCASFLAGS@
200
201
  CCDEPMODE = @CCDEPMODE@
201
202
  CFLAGS = @CFLAGS@
202
203
  CFLAGS_AESNI = @CFLAGS_AESNI@
204
+ CFLAGS_AVX = @CFLAGS_AVX@
205
+ CFLAGS_AVX2 = @CFLAGS_AVX2@
203
206
  CFLAGS_MMX = @CFLAGS_MMX@
204
207
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
205
208
  CFLAGS_SSE2 = @CFLAGS_SSE2@
@@ -272,6 +275,12 @@ SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
272
275
  SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
273
276
  STRIP = @STRIP@
274
277
  TEST_LDFLAGS = @TEST_LDFLAGS@
278
+ VALGRIND = @VALGRIND@
279
+ VALGRIND_ENABLED = @VALGRIND_ENABLED@
280
+ VALGRIND_HAVE_TOOL_drd = @VALGRIND_HAVE_TOOL_drd@
281
+ VALGRIND_HAVE_TOOL_exp_sgcheck = @VALGRIND_HAVE_TOOL_exp_sgcheck@
282
+ VALGRIND_HAVE_TOOL_helgrind = @VALGRIND_HAVE_TOOL_helgrind@
283
+ VALGRIND_HAVE_TOOL_memcheck = @VALGRIND_HAVE_TOOL_memcheck@
275
284
  VERSION = @VERSION@
276
285
  abs_builddir = @abs_builddir@
277
286
  abs_srcdir = @abs_srcdir@
@@ -36,8 +36,8 @@ libsodium_la_SOURCES = \
36
36
  crypto_generichash/blake2/ref/blake2b-compress-ref.c \
37
37
  crypto_generichash/blake2/ref/blake2b-load-sse2.h \
38
38
  crypto_generichash/blake2/ref/blake2b-load-sse41.h \
39
+ crypto_generichash/blake2/ref/blake2b-load-avx2.h \
39
40
  crypto_generichash/blake2/ref/blake2b-ref.c \
40
- crypto_generichash/blake2/ref/blake2b-round.h \
41
41
  crypto_generichash/blake2/ref/generichash_blake2b.c \
42
42
  crypto_hash/crypto_hash.c \
43
43
  crypto_hash/sha256/hash_sha256_api.c \
@@ -51,13 +51,25 @@ libsodium_la_SOURCES = \
51
51
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
52
52
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
53
53
  crypto_onetimeauth/poly1305/donna/poly1305_donna.c \
54
+ crypto_pwhash/crypto_pwhash.c \
55
+ crypto_pwhash/argon2/argon2-core.c \
56
+ crypto_pwhash/argon2/argon2-core.h \
57
+ crypto_pwhash/argon2/argon2-encoding.c \
58
+ crypto_pwhash/argon2/argon2-encoding.h \
59
+ crypto_pwhash/argon2/argon2-fill-block-ref.c \
60
+ crypto_pwhash/argon2/argon2-impl.h \
61
+ crypto_pwhash/argon2/argon2.c \
62
+ crypto_pwhash/argon2/argon2.h \
63
+ crypto_pwhash/argon2/blake2b-long.c \
64
+ crypto_pwhash/argon2/blake2b-long.h \
65
+ crypto_pwhash/argon2/blamka-round-ref.h \
66
+ crypto_pwhash/argon2/pwhash_argon2i.c \
54
67
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
55
68
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
56
69
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
57
70
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \
58
71
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
59
72
  crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
60
- crypto_pwhash/scryptsalsa208sha256/sysendian.h \
61
73
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
62
74
  crypto_scalarmult/crypto_scalarmult.c \
63
75
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
@@ -90,6 +102,7 @@ libsodium_la_SOURCES = \
90
102
  crypto_verify/64/verify_64_api.c \
91
103
  crypto_verify/64/ref/verify_64.c \
92
104
  randombytes/randombytes.c \
105
+ sodium/common.h \
93
106
  sodium/core.c \
94
107
  sodium/runtime.c \
95
108
  sodium/utils.c \
@@ -155,6 +168,8 @@ endif
155
168
 
156
169
  if !MINIMAL
157
170
  libsodium_la_SOURCES += \
171
+ crypto_core/hchacha20/core_hchacha20.c \
172
+ crypto_core/hchacha20/core_hchacha20.h \
158
173
  crypto_core/salsa2012/ref/core_salsa2012.c \
159
174
  crypto_core/salsa2012/core_salsa2012_api.c \
160
175
  crypto_core/salsa208/ref/core_salsa208.c \
@@ -164,7 +179,6 @@ libsodium_la_SOURCES += \
164
179
  crypto_stream/aes128ctr/stream_aes128ctr_api.c \
165
180
  crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \
166
181
  crypto_stream/aes128ctr/portable/common.h \
167
- crypto_stream/aes128ctr/portable/common_aes128ctr.c \
168
182
  crypto_stream/aes128ctr/portable/consts.h \
169
183
  crypto_stream/aes128ctr/portable/consts_aes128ctr.c \
170
184
  crypto_stream/aes128ctr/portable/int128.h \
@@ -202,8 +216,8 @@ endif
202
216
  SUBDIRS = \
203
217
  include
204
218
 
205
- libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la
206
- noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la
219
+ libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la
220
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la
207
221
 
208
222
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
209
223
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
@@ -224,6 +238,9 @@ libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
224
238
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@
225
239
  libssse3_la_SOURCES = \
226
240
  crypto_generichash/blake2/ref/blake2b-compress-ssse3.c \
241
+ crypto_generichash/blake2/ref/blake2b-compress-ssse3.h \
242
+ crypto_pwhash/argon2/argon2-fill-block-ssse3.c \
243
+ crypto_pwhash/argon2/blamka-round-ssse3.h \
227
244
  crypto_stream/chacha20/vec/stream_chacha20_vec.h \
228
245
  crypto_stream/chacha20/vec/stream_chacha20_vec.c
229
246
 
@@ -231,4 +248,12 @@ libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS)
231
248
  libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
232
249
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@
233
250
  libsse41_la_SOURCES = \
234
- crypto_generichash/blake2/ref/blake2b-compress-sse41.c
251
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.c \
252
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.h
253
+
254
+ libavx2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
255
+ libavx2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
256
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@
257
+ libavx2_la_SOURCES = \
258
+ crypto_generichash/blake2/ref/blake2b-compress-avx2.c \
259
+ crypto_generichash/blake2/ref/blake2b-compress-avx2.h
@@ -130,6 +130,8 @@ host_triplet = @host@
130
130
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/xor_salsa20_ref.c
131
131
 
132
132
  @MINIMAL_FALSE@am__append_9 = \
133
+ @MINIMAL_FALSE@ crypto_core/hchacha20/core_hchacha20.c \
134
+ @MINIMAL_FALSE@ crypto_core/hchacha20/core_hchacha20.h \
133
135
  @MINIMAL_FALSE@ crypto_core/salsa2012/ref/core_salsa2012.c \
134
136
  @MINIMAL_FALSE@ crypto_core/salsa2012/core_salsa2012_api.c \
135
137
  @MINIMAL_FALSE@ crypto_core/salsa208/ref/core_salsa208.c \
@@ -139,7 +141,6 @@ host_triplet = @host@
139
141
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/stream_aes128ctr_api.c \
140
142
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \
141
143
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/common.h \
142
- @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/common_aes128ctr.c \
143
144
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/consts.h \
144
145
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/consts_aes128ctr.c \
145
146
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/int128.h \
@@ -160,6 +161,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
160
161
  am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
161
162
  $(top_srcdir)/m4/ax_check_define.m4 \
162
163
  $(top_srcdir)/m4/ax_check_link_flag.m4 \
164
+ $(top_srcdir)/m4/ax_valgrind_check.m4 \
163
165
  $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
164
166
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
165
167
  $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
@@ -211,8 +213,14 @@ am__v_lt_1 =
211
213
  libaesni_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
212
214
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
213
215
  $(libaesni_la_LDFLAGS) $(LDFLAGS) -o $@
216
+ libavx2_la_LIBADD =
217
+ am_libavx2_la_OBJECTS = crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo
218
+ libavx2_la_OBJECTS = $(am_libavx2_la_OBJECTS)
219
+ libavx2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
220
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
221
+ $(libavx2_la_LDFLAGS) $(LDFLAGS) -o $@
214
222
  libsodium_la_DEPENDENCIES = libaesni.la libsse2.la libssse3.la \
215
- libsse41.la
223
+ libsse41.la libavx2.la
216
224
  am__libsodium_la_SOURCES_DIST = \
217
225
  crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
218
226
  crypto_auth/crypto_auth.c \
@@ -247,8 +255,8 @@ am__libsodium_la_SOURCES_DIST = \
247
255
  crypto_generichash/blake2/ref/blake2b-compress-ref.c \
248
256
  crypto_generichash/blake2/ref/blake2b-load-sse2.h \
249
257
  crypto_generichash/blake2/ref/blake2b-load-sse41.h \
258
+ crypto_generichash/blake2/ref/blake2b-load-avx2.h \
250
259
  crypto_generichash/blake2/ref/blake2b-ref.c \
251
- crypto_generichash/blake2/ref/blake2b-round.h \
252
260
  crypto_generichash/blake2/ref/generichash_blake2b.c \
253
261
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
254
262
  crypto_hash/sha256/cp/hash_sha256.c \
@@ -261,13 +269,24 @@ am__libsodium_la_SOURCES_DIST = \
261
269
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
262
270
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
263
271
  crypto_onetimeauth/poly1305/donna/poly1305_donna.c \
272
+ crypto_pwhash/crypto_pwhash.c \
273
+ crypto_pwhash/argon2/argon2-core.c \
274
+ crypto_pwhash/argon2/argon2-core.h \
275
+ crypto_pwhash/argon2/argon2-encoding.c \
276
+ crypto_pwhash/argon2/argon2-encoding.h \
277
+ crypto_pwhash/argon2/argon2-fill-block-ref.c \
278
+ crypto_pwhash/argon2/argon2-impl.h \
279
+ crypto_pwhash/argon2/argon2.c crypto_pwhash/argon2/argon2.h \
280
+ crypto_pwhash/argon2/blake2b-long.c \
281
+ crypto_pwhash/argon2/blake2b-long.h \
282
+ crypto_pwhash/argon2/blamka-round-ref.h \
283
+ crypto_pwhash/argon2/pwhash_argon2i.c \
264
284
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
265
285
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
266
286
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
267
287
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \
268
288
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
269
289
  crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
270
- crypto_pwhash/scryptsalsa208sha256/sysendian.h \
271
290
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
272
291
  crypto_scalarmult/crypto_scalarmult.c \
273
292
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
@@ -298,7 +317,8 @@ am__libsodium_la_SOURCES_DIST = \
298
317
  crypto_verify/32/ref/verify_32.c \
299
318
  crypto_verify/64/verify_64_api.c \
300
319
  crypto_verify/64/ref/verify_64.c randombytes/randombytes.c \
301
- sodium/core.c sodium/runtime.c sodium/utils.c sodium/version.c \
320
+ sodium/common.h sodium/core.c sodium/runtime.c sodium/utils.c \
321
+ sodium/version.c \
302
322
  randombytes/salsa20/randombytes_salsa20_random.c \
303
323
  randombytes/nativeclient/randombytes_nativeclient.c \
304
324
  randombytes/sysrandom/randombytes_sysrandom.c \
@@ -322,6 +342,8 @@ am__libsodium_la_SOURCES_DIST = \
322
342
  crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S \
323
343
  crypto_stream/salsa20/ref/stream_salsa20_ref.c \
324
344
  crypto_stream/salsa20/ref/xor_salsa20_ref.c \
345
+ crypto_core/hchacha20/core_hchacha20.c \
346
+ crypto_core/hchacha20/core_hchacha20.h \
325
347
  crypto_core/salsa2012/ref/core_salsa2012.c \
326
348
  crypto_core/salsa2012/core_salsa2012_api.c \
327
349
  crypto_core/salsa208/ref/core_salsa208.c \
@@ -331,7 +353,6 @@ am__libsodium_la_SOURCES_DIST = \
331
353
  crypto_stream/aes128ctr/stream_aes128ctr_api.c \
332
354
  crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \
333
355
  crypto_stream/aes128ctr/portable/common.h \
334
- crypto_stream/aes128ctr/portable/common_aes128ctr.c \
335
356
  crypto_stream/aes128ctr/portable/consts.h \
336
357
  crypto_stream/aes128ctr/portable/consts_aes128ctr.c \
337
358
  crypto_stream/aes128ctr/portable/int128.h \
@@ -357,7 +378,8 @@ am__libsodium_la_SOURCES_DIST = \
357
378
  @HAVE_AMD64_ASM_TRUE@am__objects_7 = crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo
358
379
  @HAVE_AMD64_ASM_FALSE@am__objects_8 = crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo \
359
380
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/libsodium_la-xor_salsa20_ref.lo
360
- @MINIMAL_FALSE@am__objects_9 = crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo \
381
+ @MINIMAL_FALSE@am__objects_9 = crypto_core/hchacha20/libsodium_la-core_hchacha20.lo \
382
+ @MINIMAL_FALSE@ crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo \
361
383
  @MINIMAL_FALSE@ crypto_core/salsa2012/libsodium_la-core_salsa2012_api.lo \
362
384
  @MINIMAL_FALSE@ crypto_core/salsa208/ref/libsodium_la-core_salsa208.lo \
363
385
  @MINIMAL_FALSE@ crypto_core/salsa208/libsodium_la-core_salsa208_api.lo \
@@ -365,7 +387,6 @@ am__libsodium_la_SOURCES_DIST = \
365
387
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-afternm_aes128ctr.lo \
366
388
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/libsodium_la-stream_aes128ctr_api.lo \
367
389
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-beforenm_aes128ctr.lo \
368
- @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo \
369
390
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-consts_aes128ctr.lo \
370
391
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-int128_aes128ctr.lo \
371
392
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-stream_aes128ctr.lo \
@@ -413,6 +434,13 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
413
434
  crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \
414
435
  crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \
415
436
  crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo \
437
+ crypto_pwhash/libsodium_la-crypto_pwhash.lo \
438
+ crypto_pwhash/argon2/libsodium_la-argon2-core.lo \
439
+ crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo \
440
+ crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo \
441
+ crypto_pwhash/argon2/libsodium_la-argon2.lo \
442
+ crypto_pwhash/argon2/libsodium_la-blake2b-long.lo \
443
+ crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo \
416
444
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo \
417
445
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo \
418
446
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo \
@@ -470,6 +498,7 @@ libsse41_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
470
498
  $(libsse41_la_LDFLAGS) $(LDFLAGS) -o $@
471
499
  libssse3_la_LIBADD =
472
500
  am_libssse3_la_OBJECTS = crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo \
501
+ crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo \
473
502
  crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo
474
503
  libssse3_la_OBJECTS = $(am_libssse3_la_OBJECTS)
475
504
  libssse3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
@@ -519,12 +548,12 @@ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
519
548
  am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
520
549
  am__v_CCLD_0 = @echo " CCLD " $@;
521
550
  am__v_CCLD_1 =
522
- SOURCES = $(libaesni_la_SOURCES) $(libsodium_la_SOURCES) \
523
- $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
524
- $(libssse3_la_SOURCES)
525
- DIST_SOURCES = $(libaesni_la_SOURCES) $(am__libsodium_la_SOURCES_DIST) \
526
- $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
527
- $(libssse3_la_SOURCES)
551
+ SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
552
+ $(libsodium_la_SOURCES) $(libsse2_la_SOURCES) \
553
+ $(libsse41_la_SOURCES) $(libssse3_la_SOURCES)
554
+ DIST_SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
555
+ $(am__libsodium_la_SOURCES_DIST) $(libsse2_la_SOURCES) \
556
+ $(libsse41_la_SOURCES) $(libssse3_la_SOURCES)
528
557
  RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
529
558
  ctags-recursive dvi-recursive html-recursive info-recursive \
530
559
  install-data-recursive install-dvi-recursive \
@@ -612,6 +641,8 @@ CCASFLAGS = @CCASFLAGS@
612
641
  CCDEPMODE = @CCDEPMODE@
613
642
  CFLAGS = @CFLAGS@
614
643
  CFLAGS_AESNI = @CFLAGS_AESNI@
644
+ CFLAGS_AVX = @CFLAGS_AVX@
645
+ CFLAGS_AVX2 = @CFLAGS_AVX2@
615
646
  CFLAGS_MMX = @CFLAGS_MMX@
616
647
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
617
648
  CFLAGS_SSE2 = @CFLAGS_SSE2@
@@ -684,6 +715,12 @@ SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
684
715
  SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
685
716
  STRIP = @STRIP@
686
717
  TEST_LDFLAGS = @TEST_LDFLAGS@
718
+ VALGRIND = @VALGRIND@
719
+ VALGRIND_ENABLED = @VALGRIND_ENABLED@
720
+ VALGRIND_HAVE_TOOL_drd = @VALGRIND_HAVE_TOOL_drd@
721
+ VALGRIND_HAVE_TOOL_exp_sgcheck = @VALGRIND_HAVE_TOOL_exp_sgcheck@
722
+ VALGRIND_HAVE_TOOL_helgrind = @VALGRIND_HAVE_TOOL_helgrind@
723
+ VALGRIND_HAVE_TOOL_memcheck = @VALGRIND_HAVE_TOOL_memcheck@
687
724
  VERSION = @VERSION@
688
725
  abs_builddir = @abs_builddir@
689
726
  abs_srcdir = @abs_srcdir@
@@ -774,8 +811,8 @@ libsodium_la_SOURCES = \
774
811
  crypto_generichash/blake2/ref/blake2b-compress-ref.c \
775
812
  crypto_generichash/blake2/ref/blake2b-load-sse2.h \
776
813
  crypto_generichash/blake2/ref/blake2b-load-sse41.h \
814
+ crypto_generichash/blake2/ref/blake2b-load-avx2.h \
777
815
  crypto_generichash/blake2/ref/blake2b-ref.c \
778
- crypto_generichash/blake2/ref/blake2b-round.h \
779
816
  crypto_generichash/blake2/ref/generichash_blake2b.c \
780
817
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
781
818
  crypto_hash/sha256/cp/hash_sha256.c \
@@ -788,13 +825,24 @@ libsodium_la_SOURCES = \
788
825
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
789
826
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
790
827
  crypto_onetimeauth/poly1305/donna/poly1305_donna.c \
828
+ crypto_pwhash/crypto_pwhash.c \
829
+ crypto_pwhash/argon2/argon2-core.c \
830
+ crypto_pwhash/argon2/argon2-core.h \
831
+ crypto_pwhash/argon2/argon2-encoding.c \
832
+ crypto_pwhash/argon2/argon2-encoding.h \
833
+ crypto_pwhash/argon2/argon2-fill-block-ref.c \
834
+ crypto_pwhash/argon2/argon2-impl.h \
835
+ crypto_pwhash/argon2/argon2.c crypto_pwhash/argon2/argon2.h \
836
+ crypto_pwhash/argon2/blake2b-long.c \
837
+ crypto_pwhash/argon2/blake2b-long.h \
838
+ crypto_pwhash/argon2/blamka-round-ref.h \
839
+ crypto_pwhash/argon2/pwhash_argon2i.c \
791
840
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
792
841
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
793
842
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
794
843
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c \
795
844
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
796
845
  crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
797
- crypto_pwhash/scryptsalsa208sha256/sysendian.h \
798
846
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
799
847
  crypto_scalarmult/crypto_scalarmult.c \
800
848
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
@@ -825,10 +873,11 @@ libsodium_la_SOURCES = \
825
873
  crypto_verify/32/ref/verify_32.c \
826
874
  crypto_verify/64/verify_64_api.c \
827
875
  crypto_verify/64/ref/verify_64.c randombytes/randombytes.c \
828
- sodium/core.c sodium/runtime.c sodium/utils.c sodium/version.c \
829
- $(am__append_1) $(am__append_2) $(am__append_3) \
830
- $(am__append_4) $(am__append_5) $(am__append_6) \
831
- $(am__append_7) $(am__append_8) $(am__append_9)
876
+ sodium/common.h sodium/core.c sodium/runtime.c sodium/utils.c \
877
+ sodium/version.c $(am__append_1) $(am__append_2) \
878
+ $(am__append_3) $(am__append_4) $(am__append_5) \
879
+ $(am__append_6) $(am__append_7) $(am__append_8) \
880
+ $(am__append_9)
832
881
  noinst_HEADERS = \
833
882
  crypto_scalarmult/curve25519/sandy2x/consts.S \
834
883
  crypto_scalarmult/curve25519/sandy2x/fe51_mul.S \
@@ -850,8 +899,8 @@ libsodium_la_CPPFLAGS = \
850
899
  SUBDIRS = \
851
900
  include
852
901
 
853
- libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la
854
- noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la
902
+ libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la
903
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la
855
904
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
856
905
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
857
906
  @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
@@ -874,6 +923,9 @@ libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
874
923
 
875
924
  libssse3_la_SOURCES = \
876
925
  crypto_generichash/blake2/ref/blake2b-compress-ssse3.c \
926
+ crypto_generichash/blake2/ref/blake2b-compress-ssse3.h \
927
+ crypto_pwhash/argon2/argon2-fill-block-ssse3.c \
928
+ crypto_pwhash/argon2/blamka-round-ssse3.h \
877
929
  crypto_stream/chacha20/vec/stream_chacha20_vec.h \
878
930
  crypto_stream/chacha20/vec/stream_chacha20_vec.c
879
931
 
@@ -882,7 +934,16 @@ libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
882
934
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@
883
935
 
884
936
  libsse41_la_SOURCES = \
885
- crypto_generichash/blake2/ref/blake2b-compress-sse41.c
937
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.c \
938
+ crypto_generichash/blake2/ref/blake2b-compress-sse41.h
939
+
940
+ libavx2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
941
+ libavx2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
942
+ @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_SSE41@ @CFLAGS_AVX@ @CFLAGS_AVX2@
943
+
944
+ libavx2_la_SOURCES = \
945
+ crypto_generichash/blake2/ref/blake2b-compress-avx2.c \
946
+ crypto_generichash/blake2/ref/blake2b-compress-avx2.h
886
947
 
887
948
  all: all-recursive
888
949
 
@@ -975,6 +1036,18 @@ crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: \
975
1036
 
976
1037
  libaesni.la: $(libaesni_la_OBJECTS) $(libaesni_la_DEPENDENCIES) $(EXTRA_libaesni_la_DEPENDENCIES)
977
1038
  $(AM_V_CCLD)$(libaesni_la_LINK) $(libaesni_la_OBJECTS) $(libaesni_la_LIBADD) $(LIBS)
1039
+ crypto_generichash/blake2/ref/$(am__dirstamp):
1040
+ @$(MKDIR_P) crypto_generichash/blake2/ref
1041
+ @: > crypto_generichash/blake2/ref/$(am__dirstamp)
1042
+ crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp):
1043
+ @$(MKDIR_P) crypto_generichash/blake2/ref/$(DEPDIR)
1044
+ @: > crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1045
+ crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo: \
1046
+ crypto_generichash/blake2/ref/$(am__dirstamp) \
1047
+ crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1048
+
1049
+ libavx2.la: $(libavx2_la_OBJECTS) $(libavx2_la_DEPENDENCIES) $(EXTRA_libavx2_la_DEPENDENCIES)
1050
+ $(AM_V_CCLD)$(libavx2_la_LINK) $(libavx2_la_OBJECTS) $(libavx2_la_LIBADD) $(LIBS)
978
1051
  crypto_aead/chacha20poly1305/sodium/$(am__dirstamp):
979
1052
  @$(MKDIR_P) crypto_aead/chacha20poly1305/sodium
980
1053
  @: > crypto_aead/chacha20poly1305/sodium/$(am__dirstamp)
@@ -1159,12 +1232,6 @@ crypto_generichash/blake2/$(DEPDIR)/$(am__dirstamp):
1159
1232
  crypto_generichash/blake2/libsodium_la-generichash_blake2_api.lo: \
1160
1233
  crypto_generichash/blake2/$(am__dirstamp) \
1161
1234
  crypto_generichash/blake2/$(DEPDIR)/$(am__dirstamp)
1162
- crypto_generichash/blake2/ref/$(am__dirstamp):
1163
- @$(MKDIR_P) crypto_generichash/blake2/ref
1164
- @: > crypto_generichash/blake2/ref/$(am__dirstamp)
1165
- crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp):
1166
- @$(MKDIR_P) crypto_generichash/blake2/ref/$(DEPDIR)
1167
- @: > crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1168
1235
  crypto_generichash/blake2/ref/libsodium_la-blake2b-compress-ref.lo: \
1169
1236
  crypto_generichash/blake2/ref/$(am__dirstamp) \
1170
1237
  crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
@@ -1245,6 +1312,39 @@ crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp):
1245
1312
  crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: \
1246
1313
  crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \
1247
1314
  crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
1315
+ crypto_pwhash/$(am__dirstamp):
1316
+ @$(MKDIR_P) crypto_pwhash
1317
+ @: > crypto_pwhash/$(am__dirstamp)
1318
+ crypto_pwhash/$(DEPDIR)/$(am__dirstamp):
1319
+ @$(MKDIR_P) crypto_pwhash/$(DEPDIR)
1320
+ @: > crypto_pwhash/$(DEPDIR)/$(am__dirstamp)
1321
+ crypto_pwhash/libsodium_la-crypto_pwhash.lo: \
1322
+ crypto_pwhash/$(am__dirstamp) \
1323
+ crypto_pwhash/$(DEPDIR)/$(am__dirstamp)
1324
+ crypto_pwhash/argon2/$(am__dirstamp):
1325
+ @$(MKDIR_P) crypto_pwhash/argon2
1326
+ @: > crypto_pwhash/argon2/$(am__dirstamp)
1327
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp):
1328
+ @$(MKDIR_P) crypto_pwhash/argon2/$(DEPDIR)
1329
+ @: > crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1330
+ crypto_pwhash/argon2/libsodium_la-argon2-core.lo: \
1331
+ crypto_pwhash/argon2/$(am__dirstamp) \
1332
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1333
+ crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo: \
1334
+ crypto_pwhash/argon2/$(am__dirstamp) \
1335
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1336
+ crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo: \
1337
+ crypto_pwhash/argon2/$(am__dirstamp) \
1338
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1339
+ crypto_pwhash/argon2/libsodium_la-argon2.lo: \
1340
+ crypto_pwhash/argon2/$(am__dirstamp) \
1341
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1342
+ crypto_pwhash/argon2/libsodium_la-blake2b-long.lo: \
1343
+ crypto_pwhash/argon2/$(am__dirstamp) \
1344
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1345
+ crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo: \
1346
+ crypto_pwhash/argon2/$(am__dirstamp) \
1347
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1248
1348
  crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp):
1249
1349
  @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256
1250
1350
  @: > crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp)
@@ -1596,6 +1696,15 @@ crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo: \
1596
1696
  crypto_stream/salsa20/ref/libsodium_la-xor_salsa20_ref.lo: \
1597
1697
  crypto_stream/salsa20/ref/$(am__dirstamp) \
1598
1698
  crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp)
1699
+ crypto_core/hchacha20/$(am__dirstamp):
1700
+ @$(MKDIR_P) crypto_core/hchacha20
1701
+ @: > crypto_core/hchacha20/$(am__dirstamp)
1702
+ crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp):
1703
+ @$(MKDIR_P) crypto_core/hchacha20/$(DEPDIR)
1704
+ @: > crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp)
1705
+ crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: \
1706
+ crypto_core/hchacha20/$(am__dirstamp) \
1707
+ crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp)
1599
1708
  crypto_core/salsa2012/ref/$(am__dirstamp):
1600
1709
  @$(MKDIR_P) crypto_core/salsa2012/ref
1601
1710
  @: > crypto_core/salsa2012/ref/$(am__dirstamp)
@@ -1656,9 +1765,6 @@ crypto_stream/aes128ctr/libsodium_la-stream_aes128ctr_api.lo: \
1656
1765
  crypto_stream/aes128ctr/portable/libsodium_la-beforenm_aes128ctr.lo: \
1657
1766
  crypto_stream/aes128ctr/portable/$(am__dirstamp) \
1658
1767
  crypto_stream/aes128ctr/portable/$(DEPDIR)/$(am__dirstamp)
1659
- crypto_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo: \
1660
- crypto_stream/aes128ctr/portable/$(am__dirstamp) \
1661
- crypto_stream/aes128ctr/portable/$(DEPDIR)/$(am__dirstamp)
1662
1768
  crypto_stream/aes128ctr/portable/libsodium_la-consts_aes128ctr.lo: \
1663
1769
  crypto_stream/aes128ctr/portable/$(am__dirstamp) \
1664
1770
  crypto_stream/aes128ctr/portable/$(DEPDIR)/$(am__dirstamp)
@@ -1746,6 +1852,9 @@ libsse41.la: $(libsse41_la_OBJECTS) $(libsse41_la_DEPENDENCIES) $(EXTRA_libsse41
1746
1852
  crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: \
1747
1853
  crypto_generichash/blake2/ref/$(am__dirstamp) \
1748
1854
  crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
1855
+ crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo: \
1856
+ crypto_pwhash/argon2/$(am__dirstamp) \
1857
+ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
1749
1858
  crypto_stream/chacha20/vec/$(am__dirstamp):
1750
1859
  @$(MKDIR_P) crypto_stream/chacha20/vec
1751
1860
  @: > crypto_stream/chacha20/vec/$(am__dirstamp)
@@ -1787,6 +1896,8 @@ mostlyclean-compile:
1787
1896
  -rm -f crypto_box/curve25519xsalsa20poly1305/ref/*.lo
1788
1897
  -rm -f crypto_core/curve25519/ref10/*.$(OBJEXT)
1789
1898
  -rm -f crypto_core/curve25519/ref10/*.lo
1899
+ -rm -f crypto_core/hchacha20/*.$(OBJEXT)
1900
+ -rm -f crypto_core/hchacha20/*.lo
1790
1901
  -rm -f crypto_core/hsalsa20/*.$(OBJEXT)
1791
1902
  -rm -f crypto_core/hsalsa20/*.lo
1792
1903
  -rm -f crypto_core/hsalsa20/ref2/*.$(OBJEXT)
@@ -1827,6 +1938,10 @@ mostlyclean-compile:
1827
1938
  -rm -f crypto_onetimeauth/poly1305/donna/*.lo
1828
1939
  -rm -f crypto_onetimeauth/poly1305/sse2/*.$(OBJEXT)
1829
1940
  -rm -f crypto_onetimeauth/poly1305/sse2/*.lo
1941
+ -rm -f crypto_pwhash/*.$(OBJEXT)
1942
+ -rm -f crypto_pwhash/*.lo
1943
+ -rm -f crypto_pwhash/argon2/*.$(OBJEXT)
1944
+ -rm -f crypto_pwhash/argon2/*.lo
1830
1945
  -rm -f crypto_pwhash/scryptsalsa208sha256/*.$(OBJEXT)
1831
1946
  -rm -f crypto_pwhash/scryptsalsa208sha256/*.lo
1832
1947
  -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/*.$(OBJEXT)
@@ -1938,6 +2053,7 @@ distclean-compile:
1938
2053
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Plo@am__quote@
1939
2054
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR)/libsodium_la-keypair_curve25519xsalsa20poly1305.Plo@am__quote@
1940
2055
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Plo@am__quote@
2056
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Plo@am__quote@
1941
2057
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20_api.Plo@am__quote@
1942
2058
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo@am__quote@
1943
2059
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa20/$(DEPDIR)/libsodium_la-core_salsa20_api.Plo@am__quote@
@@ -1948,6 +2064,7 @@ distclean-compile:
1948
2064
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa208/ref/$(DEPDIR)/libsodium_la-core_salsa208.Plo@am__quote@
1949
2065
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo@am__quote@
1950
2066
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/$(DEPDIR)/libsodium_la-generichash_blake2_api.Plo@am__quote@
2067
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo@am__quote@
1951
2068
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-compress-ref.Plo@am__quote@
1952
2069
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-blake2b-ref.Plo@am__quote@
1953
2070
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2/ref/$(DEPDIR)/libsodium_la-generichash_blake2b.Plo@am__quote@
@@ -1962,6 +2079,14 @@ distclean-compile:
1962
2079
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@
1963
2080
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Plo@am__quote@
1964
2081
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Plo@am__quote@
2082
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Plo@am__quote@
2083
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Plo@am__quote@
2084
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Plo@am__quote@
2085
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Plo@am__quote@
2086
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Plo@am__quote@
2087
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Plo@am__quote@
2088
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Plo@am__quote@
2089
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Plo@am__quote@
1965
2090
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo@am__quote@
1966
2091
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Plo@am__quote@
1967
2092
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Plo@am__quote@
@@ -1993,7 +2118,6 @@ distclean-compile:
1993
2118
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/$(DEPDIR)/libsodium_la-stream_aes128ctr_api.Plo@am__quote@
1994
2119
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-afternm_aes128ctr.Plo@am__quote@
1995
2120
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-beforenm_aes128ctr.Plo@am__quote@
1996
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-common_aes128ctr.Plo@am__quote@
1997
2121
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-consts_aes128ctr.Plo@am__quote@
1998
2122
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-int128_aes128ctr.Plo@am__quote@
1999
2123
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-stream_aes128ctr.Plo@am__quote@
@@ -2098,6 +2222,13 @@ crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: crypto_aead/aes
2098
2222
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2099
2223
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
2100
2224
 
2225
+ crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo: crypto_generichash/blake2/ref/blake2b-compress-avx2.c
2226
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo -c -o crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-avx2.c
2227
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
2228
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_generichash/blake2/ref/blake2b-compress-avx2.c' object='crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo' libtool=yes @AMDEPBACKSLASH@
2229
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2230
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-avx2.c
2231
+
2101
2232
  crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
2102
2233
  @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_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo -MD -MP -MF crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
2103
2234
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
@@ -2357,6 +2488,55 @@ crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: crypto_onetime
2357
2488
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2358
2489
  @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-poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/poly1305_donna.c
2359
2490
 
2491
+ crypto_pwhash/libsodium_la-crypto_pwhash.lo: crypto_pwhash/crypto_pwhash.c
2492
+ @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/libsodium_la-crypto_pwhash.lo -MD -MP -MF crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Tpo -c -o crypto_pwhash/libsodium_la-crypto_pwhash.lo `test -f 'crypto_pwhash/crypto_pwhash.c' || echo '$(srcdir)/'`crypto_pwhash/crypto_pwhash.c
2493
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Tpo crypto_pwhash/$(DEPDIR)/libsodium_la-crypto_pwhash.Plo
2494
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/crypto_pwhash.c' object='crypto_pwhash/libsodium_la-crypto_pwhash.lo' libtool=yes @AMDEPBACKSLASH@
2495
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2496
+ @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_pwhash/libsodium_la-crypto_pwhash.lo `test -f 'crypto_pwhash/crypto_pwhash.c' || echo '$(srcdir)/'`crypto_pwhash/crypto_pwhash.c
2497
+
2498
+ crypto_pwhash/argon2/libsodium_la-argon2-core.lo: crypto_pwhash/argon2/argon2-core.c
2499
+ @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/argon2/libsodium_la-argon2-core.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-core.lo `test -f 'crypto_pwhash/argon2/argon2-core.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-core.c
2500
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-core.Plo
2501
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-core.c' object='crypto_pwhash/argon2/libsodium_la-argon2-core.lo' libtool=yes @AMDEPBACKSLASH@
2502
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2503
+ @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_pwhash/argon2/libsodium_la-argon2-core.lo `test -f 'crypto_pwhash/argon2/argon2-core.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-core.c
2504
+
2505
+ crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo: crypto_pwhash/argon2/argon2-encoding.c
2506
+ @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/argon2/libsodium_la-argon2-encoding.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo `test -f 'crypto_pwhash/argon2/argon2-encoding.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-encoding.c
2507
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-encoding.Plo
2508
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-encoding.c' object='crypto_pwhash/argon2/libsodium_la-argon2-encoding.lo' libtool=yes @AMDEPBACKSLASH@
2509
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2510
+ @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_pwhash/argon2/libsodium_la-argon2-encoding.lo `test -f 'crypto_pwhash/argon2/argon2-encoding.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-encoding.c
2511
+
2512
+ crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo: crypto_pwhash/argon2/argon2-fill-block-ref.c
2513
+ @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/argon2/libsodium_la-argon2-fill-block-ref.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ref.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ref.c
2514
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2-fill-block-ref.Plo
2515
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-ref.c' object='crypto_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo' libtool=yes @AMDEPBACKSLASH@
2516
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2517
+ @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_pwhash/argon2/libsodium_la-argon2-fill-block-ref.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ref.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ref.c
2518
+
2519
+ crypto_pwhash/argon2/libsodium_la-argon2.lo: crypto_pwhash/argon2/argon2.c
2520
+ @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/argon2/libsodium_la-argon2.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Tpo -c -o crypto_pwhash/argon2/libsodium_la-argon2.lo `test -f 'crypto_pwhash/argon2/argon2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2.c
2521
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-argon2.Plo
2522
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2.c' object='crypto_pwhash/argon2/libsodium_la-argon2.lo' libtool=yes @AMDEPBACKSLASH@
2523
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2524
+ @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_pwhash/argon2/libsodium_la-argon2.lo `test -f 'crypto_pwhash/argon2/argon2.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2.c
2525
+
2526
+ crypto_pwhash/argon2/libsodium_la-blake2b-long.lo: crypto_pwhash/argon2/blake2b-long.c
2527
+ @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/argon2/libsodium_la-blake2b-long.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Tpo -c -o crypto_pwhash/argon2/libsodium_la-blake2b-long.lo `test -f 'crypto_pwhash/argon2/blake2b-long.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/blake2b-long.c
2528
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-blake2b-long.Plo
2529
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/blake2b-long.c' object='crypto_pwhash/argon2/libsodium_la-blake2b-long.lo' libtool=yes @AMDEPBACKSLASH@
2530
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2531
+ @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_pwhash/argon2/libsodium_la-blake2b-long.lo `test -f 'crypto_pwhash/argon2/blake2b-long.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/blake2b-long.c
2532
+
2533
+ crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo: crypto_pwhash/argon2/pwhash_argon2i.c
2534
+ @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/argon2/libsodium_la-pwhash_argon2i.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Tpo -c -o crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2i.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2i.c
2535
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Tpo crypto_pwhash/argon2/$(DEPDIR)/libsodium_la-pwhash_argon2i.Plo
2536
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/pwhash_argon2i.c' object='crypto_pwhash/argon2/libsodium_la-pwhash_argon2i.lo' libtool=yes @AMDEPBACKSLASH@
2537
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2538
+ @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_pwhash/argon2/libsodium_la-pwhash_argon2i.lo `test -f 'crypto_pwhash/argon2/pwhash_argon2i.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/pwhash_argon2i.c
2539
+
2360
2540
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2361
2541
  @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
2362
2542
  @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
@@ -2686,6 +2866,13 @@ crypto_stream/salsa20/ref/libsodium_la-xor_salsa20_ref.lo: crypto_stream/salsa20
2686
2866
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2687
2867
  @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_stream/salsa20/ref/libsodium_la-xor_salsa20_ref.lo `test -f 'crypto_stream/salsa20/ref/xor_salsa20_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa20/ref/xor_salsa20_ref.c
2688
2868
 
2869
+ crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: crypto_core/hchacha20/core_hchacha20.c
2870
+ @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_core/hchacha20/libsodium_la-core_hchacha20.lo -MD -MP -MF crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Tpo -c -o crypto_core/hchacha20/libsodium_la-core_hchacha20.lo `test -f 'crypto_core/hchacha20/core_hchacha20.c' || echo '$(srcdir)/'`crypto_core/hchacha20/core_hchacha20.c
2871
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Tpo crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Plo
2872
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/hchacha20/core_hchacha20.c' object='crypto_core/hchacha20/libsodium_la-core_hchacha20.lo' libtool=yes @AMDEPBACKSLASH@
2873
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2874
+ @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_core/hchacha20/libsodium_la-core_hchacha20.lo `test -f 'crypto_core/hchacha20/core_hchacha20.c' || echo '$(srcdir)/'`crypto_core/hchacha20/core_hchacha20.c
2875
+
2689
2876
  crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo: crypto_core/salsa2012/ref/core_salsa2012.c
2690
2877
  @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_core/salsa2012/ref/libsodium_la-core_salsa2012.lo -MD -MP -MF crypto_core/salsa2012/ref/$(DEPDIR)/libsodium_la-core_salsa2012.Tpo -c -o crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo `test -f 'crypto_core/salsa2012/ref/core_salsa2012.c' || echo '$(srcdir)/'`crypto_core/salsa2012/ref/core_salsa2012.c
2691
2878
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/salsa2012/ref/$(DEPDIR)/libsodium_la-core_salsa2012.Tpo crypto_core/salsa2012/ref/$(DEPDIR)/libsodium_la-core_salsa2012.Plo
@@ -2742,13 +2929,6 @@ crypto_stream/aes128ctr/portable/libsodium_la-beforenm_aes128ctr.lo: crypto_stre
2742
2929
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2743
2930
  @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_stream/aes128ctr/portable/libsodium_la-beforenm_aes128ctr.lo `test -f 'crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c' || echo '$(srcdir)/'`crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c
2744
2931
 
2745
- crypto_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo: crypto_stream/aes128ctr/portable/common_aes128ctr.c
2746
- @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_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo -MD -MP -MF crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-common_aes128ctr.Tpo -c -o crypto_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo `test -f 'crypto_stream/aes128ctr/portable/common_aes128ctr.c' || echo '$(srcdir)/'`crypto_stream/aes128ctr/portable/common_aes128ctr.c
2747
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-common_aes128ctr.Tpo crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-common_aes128ctr.Plo
2748
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/aes128ctr/portable/common_aes128ctr.c' object='crypto_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo' libtool=yes @AMDEPBACKSLASH@
2749
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2750
- @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_stream/aes128ctr/portable/libsodium_la-common_aes128ctr.lo `test -f 'crypto_stream/aes128ctr/portable/common_aes128ctr.c' || echo '$(srcdir)/'`crypto_stream/aes128ctr/portable/common_aes128ctr.c
2751
-
2752
2932
  crypto_stream/aes128ctr/portable/libsodium_la-consts_aes128ctr.lo: crypto_stream/aes128ctr/portable/consts_aes128ctr.c
2753
2933
  @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_stream/aes128ctr/portable/libsodium_la-consts_aes128ctr.lo -MD -MP -MF crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-consts_aes128ctr.Tpo -c -o crypto_stream/aes128ctr/portable/libsodium_la-consts_aes128ctr.lo `test -f 'crypto_stream/aes128ctr/portable/consts_aes128ctr.c' || echo '$(srcdir)/'`crypto_stream/aes128ctr/portable/consts_aes128ctr.c
2754
2934
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-consts_aes128ctr.Tpo crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-consts_aes128ctr.Plo
@@ -2847,6 +3027,13 @@ crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: crypto_gene
2847
3027
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2848
3028
  @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
2849
3029
 
3030
+ crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo: crypto_pwhash/argon2/argon2-fill-block-ssse3.c
3031
+ @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_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo -MD -MP -MF crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Tpo -c -o crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ssse3.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ssse3.c
3032
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Tpo crypto_pwhash/argon2/$(DEPDIR)/libssse3_la-argon2-fill-block-ssse3.Plo
3033
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_pwhash/argon2/argon2-fill-block-ssse3.c' object='crypto_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo' libtool=yes @AMDEPBACKSLASH@
3034
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3035
+ @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_pwhash/argon2/libssse3_la-argon2-fill-block-ssse3.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-ssse3.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-ssse3.c
3036
+
2850
3037
  crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo: crypto_stream/chacha20/vec/stream_chacha20_vec.c
2851
3038
  @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_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo -MD -MP -MF crypto_stream/chacha20/vec/$(DEPDIR)/libssse3_la-stream_chacha20_vec.Tpo -c -o crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo `test -f 'crypto_stream/chacha20/vec/stream_chacha20_vec.c' || echo '$(srcdir)/'`crypto_stream/chacha20/vec/stream_chacha20_vec.c
2852
3039
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/vec/$(DEPDIR)/libssse3_la-stream_chacha20_vec.Tpo crypto_stream/chacha20/vec/$(DEPDIR)/libssse3_la-stream_chacha20_vec.Plo
@@ -2872,6 +3059,7 @@ clean-libtool:
2872
3059
  -rm -rf crypto_box/curve25519xsalsa20poly1305/.libs crypto_box/curve25519xsalsa20poly1305/_libs
2873
3060
  -rm -rf crypto_box/curve25519xsalsa20poly1305/ref/.libs crypto_box/curve25519xsalsa20poly1305/ref/_libs
2874
3061
  -rm -rf crypto_core/curve25519/ref10/.libs crypto_core/curve25519/ref10/_libs
3062
+ -rm -rf crypto_core/hchacha20/.libs crypto_core/hchacha20/_libs
2875
3063
  -rm -rf crypto_core/hsalsa20/.libs crypto_core/hsalsa20/_libs
2876
3064
  -rm -rf crypto_core/hsalsa20/ref2/.libs crypto_core/hsalsa20/ref2/_libs
2877
3065
  -rm -rf crypto_core/salsa20/.libs crypto_core/salsa20/_libs
@@ -2892,6 +3080,8 @@ clean-libtool:
2892
3080
  -rm -rf crypto_onetimeauth/poly1305/.libs crypto_onetimeauth/poly1305/_libs
2893
3081
  -rm -rf crypto_onetimeauth/poly1305/donna/.libs crypto_onetimeauth/poly1305/donna/_libs
2894
3082
  -rm -rf crypto_onetimeauth/poly1305/sse2/.libs crypto_onetimeauth/poly1305/sse2/_libs
3083
+ -rm -rf crypto_pwhash/.libs crypto_pwhash/_libs
3084
+ -rm -rf crypto_pwhash/argon2/.libs crypto_pwhash/argon2/_libs
2895
3085
  -rm -rf crypto_pwhash/scryptsalsa208sha256/.libs crypto_pwhash/scryptsalsa208sha256/_libs
2896
3086
  -rm -rf crypto_pwhash/scryptsalsa208sha256/nosse/.libs crypto_pwhash/scryptsalsa208sha256/nosse/_libs
2897
3087
  -rm -rf crypto_pwhash/scryptsalsa208sha256/sse/.libs crypto_pwhash/scryptsalsa208sha256/sse/_libs
@@ -3172,6 +3362,8 @@ distclean-generic:
3172
3362
  -rm -f crypto_box/curve25519xsalsa20poly1305/ref/$(am__dirstamp)
3173
3363
  -rm -f crypto_core/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
3174
3364
  -rm -f crypto_core/curve25519/ref10/$(am__dirstamp)
3365
+ -rm -f crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp)
3366
+ -rm -f crypto_core/hchacha20/$(am__dirstamp)
3175
3367
  -rm -f crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp)
3176
3368
  -rm -f crypto_core/hsalsa20/$(am__dirstamp)
3177
3369
  -rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp)
@@ -3212,6 +3404,10 @@ distclean-generic:
3212
3404
  -rm -f crypto_onetimeauth/poly1305/donna/$(am__dirstamp)
3213
3405
  -rm -f crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp)
3214
3406
  -rm -f crypto_onetimeauth/poly1305/sse2/$(am__dirstamp)
3407
+ -rm -f crypto_pwhash/$(DEPDIR)/$(am__dirstamp)
3408
+ -rm -f crypto_pwhash/$(am__dirstamp)
3409
+ -rm -f crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp)
3410
+ -rm -f crypto_pwhash/argon2/$(am__dirstamp)
3215
3411
  -rm -f crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp)
3216
3412
  -rm -f crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp)
3217
3413
  -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp)
@@ -3308,7 +3504,7 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
3308
3504
  clean-noinstLTLIBRARIES mostlyclean-am
3309
3505
 
3310
3506
  distclean: distclean-recursive
3311
- -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha256/cp/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512/cp/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_auth/hmacsha512256/cp/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa20/$(DEPDIR) crypto_core/salsa20/ref/$(DEPDIR) crypto_core/salsa2012/$(DEPDIR) crypto_core/salsa2012/ref/$(DEPDIR) crypto_core/salsa208/$(DEPDIR) crypto_core/salsa208/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2/$(DEPDIR) crypto_generichash/blake2/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/ref/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/chacha20/vec/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/amd64_xmm6/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_stream/xsalsa20/ref/$(DEPDIR) crypto_verify/16/$(DEPDIR) crypto_verify/16/ref/$(DEPDIR) crypto_verify/32/$(DEPDIR) crypto_verify/32/ref/$(DEPDIR) crypto_verify/64/$(DEPDIR) crypto_verify/64/ref/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3507
+ -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha256/cp/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512/cp/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_auth/hmacsha512256/cp/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa20/$(DEPDIR) crypto_core/salsa20/ref/$(DEPDIR) crypto_core/salsa2012/$(DEPDIR) crypto_core/salsa2012/ref/$(DEPDIR) crypto_core/salsa208/$(DEPDIR) crypto_core/salsa208/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2/$(DEPDIR) crypto_generichash/blake2/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/ref/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/chacha20/vec/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/amd64_xmm6/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_stream/xsalsa20/ref/$(DEPDIR) crypto_verify/16/$(DEPDIR) crypto_verify/16/ref/$(DEPDIR) crypto_verify/32/$(DEPDIR) crypto_verify/32/ref/$(DEPDIR) crypto_verify/64/$(DEPDIR) crypto_verify/64/ref/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3312
3508
  -rm -f Makefile
3313
3509
  distclean-am: clean-am distclean-compile distclean-generic \
3314
3510
  distclean-tags
@@ -3354,7 +3550,7 @@ install-ps-am:
3354
3550
  installcheck-am:
3355
3551
 
3356
3552
  maintainer-clean: maintainer-clean-recursive
3357
- -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha256/cp/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512/cp/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_auth/hmacsha512256/cp/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa20/$(DEPDIR) crypto_core/salsa20/ref/$(DEPDIR) crypto_core/salsa2012/$(DEPDIR) crypto_core/salsa2012/ref/$(DEPDIR) crypto_core/salsa208/$(DEPDIR) crypto_core/salsa208/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2/$(DEPDIR) crypto_generichash/blake2/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/ref/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/chacha20/vec/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/amd64_xmm6/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_stream/xsalsa20/ref/$(DEPDIR) crypto_verify/16/$(DEPDIR) crypto_verify/16/ref/$(DEPDIR) crypto_verify/32/$(DEPDIR) crypto_verify/32/ref/$(DEPDIR) crypto_verify/64/$(DEPDIR) crypto_verify/64/ref/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3553
+ -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha256/cp/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512/cp/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_auth/hmacsha512256/cp/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/ref/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa20/$(DEPDIR) crypto_core/salsa20/ref/$(DEPDIR) crypto_core/salsa2012/$(DEPDIR) crypto_core/salsa2012/ref/$(DEPDIR) crypto_core/salsa208/$(DEPDIR) crypto_core/salsa208/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2/$(DEPDIR) crypto_generichash/blake2/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/ref/$(DEPDIR) crypto_shorthash/$(DEPDIR) crypto_shorthash/siphash24/$(DEPDIR) crypto_shorthash/siphash24/ref/$(DEPDIR) crypto_sign/$(DEPDIR) crypto_sign/ed25519/$(DEPDIR) crypto_sign/ed25519/ref10/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/chacha20/vec/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/amd64_xmm6/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_stream/xsalsa20/ref/$(DEPDIR) crypto_verify/16/$(DEPDIR) crypto_verify/16/ref/$(DEPDIR) crypto_verify/32/$(DEPDIR) crypto_verify/32/ref/$(DEPDIR) crypto_verify/64/$(DEPDIR) crypto_verify/64/ref/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3358
3554
  -rm -f Makefile
3359
3555
  maintainer-clean-am: distclean-am maintainer-clean-generic
3360
3556