rbnacl-libsodium 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/lib/rbnacl/libsodium/version.rb +1 -1
  4. data/vendor/libsodium/AUTHORS +10 -3
  5. data/vendor/libsodium/ChangeLog +19 -1
  6. data/vendor/libsodium/Makefile.in +1 -0
  7. data/vendor/libsodium/README.markdown +1 -1
  8. data/vendor/libsodium/THANKS +1 -0
  9. data/vendor/libsodium/autogen.sh +24 -4
  10. data/vendor/libsodium/autom4te.cache/output.1 +208 -24
  11. data/vendor/libsodium/autom4te.cache/output.5 +208 -24
  12. data/vendor/libsodium/autom4te.cache/requests +869 -869
  13. data/vendor/libsodium/autom4te.cache/traces.1 +426 -406
  14. data/vendor/libsodium/autom4te.cache/traces.5 +255 -245
  15. data/vendor/libsodium/builds/msvc/version.h +2 -2
  16. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +14 -44
  17. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +36 -132
  18. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +14 -44
  19. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +36 -132
  20. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +14 -44
  21. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +36 -132
  22. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +14 -44
  23. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +62 -158
  24. data/vendor/libsodium/configure +208 -24
  25. data/vendor/libsodium/configure.ac +70 -15
  26. data/vendor/libsodium/dist-build/Makefile.in +1 -0
  27. data/vendor/libsodium/dist-build/emscripten.sh +52 -19
  28. data/vendor/libsodium/dist-build/ios.sh +8 -8
  29. data/vendor/libsodium/dist-build/msys2-win32.sh +2 -1
  30. data/vendor/libsodium/dist-build/msys2-win64.sh +2 -1
  31. data/vendor/libsodium/dist-build/osx.sh +2 -2
  32. data/vendor/libsodium/examples/box.c +3 -1
  33. data/vendor/libsodium/examples/box_detached.c +4 -2
  34. data/vendor/libsodium/examples/utils.h +3 -1
  35. data/vendor/libsodium/libsodium.vcxproj +13 -13
  36. data/vendor/libsodium/libsodium.vcxproj.filters +31 -35
  37. data/vendor/libsodium/msvc-scripts/Makefile.in +1 -0
  38. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  39. data/vendor/libsodium/src/Makefile.in +1 -0
  40. data/vendor/libsodium/src/libsodium/Makefile.am +43 -45
  41. data/vendor/libsodium/src/libsodium/Makefile.in +250 -249
  42. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +28 -22
  43. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c +3 -4
  44. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c +3 -3
  45. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha512.c +3 -4
  46. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/verify_hmacsha512.c +4 -4
  47. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c +4 -4
  48. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c +6 -4
  49. data/vendor/libsodium/src/libsodium/crypto_box/crypto_box_easy.c +6 -2
  50. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c +3 -3
  51. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +5 -3
  52. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c +13 -9
  53. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +3 -3
  54. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +2 -2
  55. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +2 -2
  56. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +2 -2
  57. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +2 -2
  58. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +2 -2
  59. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +36 -26
  60. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +1 -1
  61. data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +1 -2
  62. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +2 -3
  63. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +2 -3
  64. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/{auth_poly1305_donna.c → poly1305_donna.c} +18 -11
  65. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +1 -5
  66. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +10 -9
  67. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +17 -9
  68. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +10 -1
  69. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +708 -0
  70. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h +31 -0
  71. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +1 -0
  72. data/vendor/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c +11 -12
  73. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/{smult_curve25519_donna_c64.c → curve25519_donna_c64.c} +32 -15
  74. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +9 -0
  75. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.c +73 -0
  76. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.h +9 -0
  77. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_frombytes_curve25519_ref10.c +1 -0
  78. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S +25 -0
  79. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts_namespace.h +20 -0
  80. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +114 -0
  81. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h +9 -0
  82. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe.h +25 -0
  83. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51.h +33 -0
  84. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +57 -0
  85. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S +189 -0
  86. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h +16 -0
  87. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S +165 -0
  88. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S +219 -0
  89. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +76 -0
  90. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S +1432 -0
  91. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.h +18 -0
  92. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S +1287 -0
  93. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.h +18 -0
  94. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h +8 -0
  95. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h +8 -0
  96. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S +17 -0
  97. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c +67 -0
  98. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.h +11 -0
  99. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c +3 -3
  100. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +3 -2
  101. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge.h +2 -0
  102. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c +42 -0
  103. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +7 -7
  104. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +113 -0
  105. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +10 -7
  106. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +10 -10
  107. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +2 -2
  108. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c +2 -2
  109. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c +10 -9
  110. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +2 -3
  111. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +72 -68
  112. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/{api.h → stream_chacha20_ref.h} +5 -0
  113. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/{stream_chacha20_api.c → stream_chacha20.c} +27 -7
  114. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.h +22 -0
  115. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.c +329 -0
  116. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.h +27 -0
  117. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S +1 -1
  118. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +2 -2
  119. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +1 -1
  120. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +2 -2
  121. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +2 -2
  122. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +2 -2
  123. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +2 -2
  124. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +2 -2
  125. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +4 -4
  126. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/verify_16.c +14 -21
  127. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/verify_32.c +14 -37
  128. data/vendor/libsodium/src/libsodium/crypto_verify/64/ref/verify_64.c +14 -69
  129. data/vendor/libsodium/src/libsodium/include/Makefile.in +1 -0
  130. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +8 -4
  131. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +4 -2
  132. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +2 -2
  133. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +2 -3
  134. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +2 -1
  135. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h +6 -1
  136. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_chacha20.h +5 -0
  137. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_nativeclient.h +6 -20
  138. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +1 -28
  139. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_sysrandom.h +1 -27
  140. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
  141. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +6 -0
  142. data/vendor/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c +3 -3
  143. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +58 -51
  144. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +23 -18
  145. data/vendor/libsodium/src/libsodium/sodium/core.c +4 -0
  146. data/vendor/libsodium/src/libsodium/sodium/runtime.c +34 -15
  147. data/vendor/libsodium/src/libsodium/sodium/utils.c +104 -14
  148. data/vendor/libsodium/test/Makefile.in +1 -0
  149. data/vendor/libsodium/test/default/Makefile.in +1 -0
  150. data/vendor/libsodium/test/default/auth.c +5 -5
  151. data/vendor/libsodium/test/default/auth2.c +3 -3
  152. data/vendor/libsodium/test/default/auth3.c +3 -3
  153. data/vendor/libsodium/test/default/auth5.c +4 -4
  154. data/vendor/libsodium/test/default/auth6.c +3 -3
  155. data/vendor/libsodium/test/default/auth7.c +4 -4
  156. data/vendor/libsodium/test/default/box.c +13 -9
  157. data/vendor/libsodium/test/default/box2.c +11 -8
  158. data/vendor/libsodium/test/default/box7.c +11 -9
  159. data/vendor/libsodium/test/default/box8.c +32 -19
  160. data/vendor/libsodium/test/default/box_easy.c +31 -10
  161. data/vendor/libsodium/test/default/box_easy.exp +3 -19
  162. data/vendor/libsodium/test/default/box_easy2.c +30 -15
  163. data/vendor/libsodium/test/default/box_seed.c +1 -1
  164. data/vendor/libsodium/test/default/cmptest.h +22 -1
  165. data/vendor/libsodium/test/default/core1.c +6 -5
  166. data/vendor/libsodium/test/default/core2.c +6 -5
  167. data/vendor/libsodium/test/default/core3.c +8 -7
  168. data/vendor/libsodium/test/default/core4.c +11 -8
  169. data/vendor/libsodium/test/default/core5.c +7 -5
  170. data/vendor/libsodium/test/default/core6.c +8 -6
  171. data/vendor/libsodium/test/default/generichash.c +0 -15
  172. data/vendor/libsodium/test/default/generichash.exp +0 -1
  173. data/vendor/libsodium/test/default/generichash3.c +1 -21
  174. data/vendor/libsodium/test/default/generichash3.exp +1 -1
  175. data/vendor/libsodium/test/default/hash.c +3 -3
  176. data/vendor/libsodium/test/default/hash3.c +2 -2
  177. data/vendor/libsodium/test/default/index.html.tpl +84 -0
  178. data/vendor/libsodium/test/default/onetimeauth.c +3 -3
  179. data/vendor/libsodium/test/default/onetimeauth2.c +5 -4
  180. data/vendor/libsodium/test/default/onetimeauth7.c +4 -4
  181. data/vendor/libsodium/test/default/pre.js.inc +14 -6
  182. data/vendor/libsodium/test/default/randombytes.c +2 -2
  183. data/vendor/libsodium/test/default/scalarmult.c +19 -6
  184. data/vendor/libsodium/test/default/scalarmult.exp +1 -0
  185. data/vendor/libsodium/test/default/scalarmult2.c +2 -2
  186. data/vendor/libsodium/test/default/scalarmult5.c +6 -4
  187. data/vendor/libsodium/test/default/scalarmult6.c +5 -3
  188. data/vendor/libsodium/test/default/scalarmult7.c +11 -7
  189. data/vendor/libsodium/test/default/secretbox.c +7 -6
  190. data/vendor/libsodium/test/default/secretbox2.c +7 -6
  191. data/vendor/libsodium/test/default/secretbox7.c +5 -5
  192. data/vendor/libsodium/test/default/secretbox8.c +5 -5
  193. data/vendor/libsodium/test/default/secretbox_easy.c +27 -17
  194. data/vendor/libsodium/test/default/secretbox_easy.exp +7 -95
  195. data/vendor/libsodium/test/default/secretbox_easy2.c +22 -10
  196. data/vendor/libsodium/test/default/sign.c +5 -0
  197. data/vendor/libsodium/test/default/sodium_utils.c +73 -0
  198. data/vendor/libsodium/test/default/sodium_utils.exp +6 -0
  199. data/vendor/libsodium/test/default/stream.c +7 -6
  200. data/vendor/libsodium/test/default/stream2.c +4 -4
  201. data/vendor/libsodium/test/default/stream3.c +6 -5
  202. data/vendor/libsodium/test/default/stream4.c +7 -6
  203. data/vendor/libsodium/test/default/verify1.c +61 -18
  204. data/vendor/libsodium/test/default/verify1.exp +2 -6
  205. metadata +37 -44
  206. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/api.h +0 -9
  207. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/api.h +0 -9
  208. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/api.h +0 -9
  209. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h +0 -20
  210. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/api.h +0 -10
  211. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/api.h +0 -10
  212. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/api.h +0 -10
  213. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/api.h +0 -10
  214. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/api.h +0 -2
  215. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/api.h +0 -10
  216. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/api.h +0 -10
  217. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +0 -6
  218. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c +0 -13
  219. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/api.h +0 -5
  220. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c +0 -14
  221. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c +0 -54
  222. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c +0 -14
  223. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h +0 -11
  224. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/api.h +0 -7
  225. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/api.h +0 -15
  226. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h +0 -12
  227. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h +0 -54
  228. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c +0 -348
  229. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h +0 -34
  230. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c +0 -230
  231. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h +0 -51
  232. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c +0 -150
  233. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c +0 -106
  234. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c +0 -16
  235. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/api.h +0 -13
  236. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h +0 -1
  237. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/api.h +0 -5
  238. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/api.h +0 -10
  239. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/api.h +0 -9
  240. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/api.h +0 -11
  241. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/api.h +0 -2
  242. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/api.h +0 -2
  243. data/vendor/libsodium/src/libsodium/crypto_verify/64/ref/api.h +0 -2
@@ -15,6 +15,7 @@
15
15
  @SET_MAKE@
16
16
 
17
17
 
18
+
18
19
  VPATH = @srcdir@
19
20
  am__is_gnu_make = { \
20
21
  if test -z '$(MAKELEVEL)'; then \
@@ -99,13 +100,12 @@ host_triplet = @host@
99
100
  @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c
100
101
 
101
102
  @HAVE_TI_MODE_TRUE@am__append_4 = \
102
- @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/api.h \
103
- @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c \
104
- @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c
103
+ @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c \
104
+ @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h
105
105
 
106
106
  @HAVE_TI_MODE_FALSE@am__append_5 = \
107
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/api.h \
108
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c \
107
+ @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/curve25519_ref10.c \
108
+ @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/curve25519_ref10.h \
109
109
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/fe.h \
110
110
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c \
111
111
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/fe_1_curve25519_ref10.c \
@@ -120,37 +120,38 @@ host_triplet = @host@
120
120
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/fe_sub_curve25519_ref10.c \
121
121
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c \
122
122
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/montgomery.h \
123
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/pow225521.h \
124
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c
125
-
126
- @HAVE_AMD64_ASM_TRUE@am__append_6 = \
127
- @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/amd64_xmm6/api.h \
123
+ @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/pow225521.h
124
+
125
+ @HAVE_AVX_ASM_TRUE@am__append_6 = \
126
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \
127
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \
128
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \
129
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe.h \
130
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51.h \
131
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51_invert.c \
132
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h \
133
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c \
134
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder.h \
135
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder_base.h \
136
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h \
137
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \
138
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/sandy2x.S
139
+
140
+ @HAVE_AMD64_ASM_TRUE@am__append_7 = \
128
141
  @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S
129
142
 
130
- @HAVE_AMD64_ASM_FALSE@am__append_7 = \
131
- @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/api.h \
143
+ @HAVE_AMD64_ASM_FALSE@am__append_8 = \
132
144
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/stream_salsa20_ref.c \
133
145
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/xor_salsa20_ref.c
134
146
 
135
- @MINIMAL_FALSE@am__append_8 = \
147
+ @MINIMAL_FALSE@am__append_9 = \
136
148
  @MINIMAL_FALSE@ crypto_core/salsa2012/ref/core_salsa2012.c \
137
149
  @MINIMAL_FALSE@ crypto_core/salsa2012/core_salsa2012_api.c \
138
- @MINIMAL_FALSE@ crypto_core/salsa2012/ref/api.h \
139
150
  @MINIMAL_FALSE@ crypto_core/salsa208/ref/core_salsa208.c \
140
151
  @MINIMAL_FALSE@ crypto_core/salsa208/core_salsa208_api.c \
141
- @MINIMAL_FALSE@ crypto_core/salsa208/ref/api.h \
142
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c \
143
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/api.h \
144
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/fe25519.h \
145
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c \
146
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/ge25519.h \
147
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c \
148
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/sc25519.h \
149
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c \
150
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c \
152
+ @MINIMAL_FALSE@ crypto_sign/ed25519/ref10/obsolete.c \
151
153
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/afternm_aes128ctr.c \
152
154
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/stream_aes128ctr_api.c \
153
- @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/api.h \
154
155
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \
155
156
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/common.h \
156
157
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/common_aes128ctr.c \
@@ -162,15 +163,13 @@ host_triplet = @host@
162
163
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/types.h \
163
164
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c \
164
165
  @MINIMAL_FALSE@ crypto_stream/salsa2012/stream_salsa2012_api.c \
165
- @MINIMAL_FALSE@ crypto_stream/salsa2012/ref/api.h \
166
166
  @MINIMAL_FALSE@ crypto_stream/salsa2012/ref/stream_salsa2012.c \
167
167
  @MINIMAL_FALSE@ crypto_stream/salsa2012/ref/xor_salsa2012.c \
168
168
  @MINIMAL_FALSE@ crypto_stream/salsa208/stream_salsa208_api.c \
169
- @MINIMAL_FALSE@ crypto_stream/salsa208/ref/api.h \
170
169
  @MINIMAL_FALSE@ crypto_stream/salsa208/ref/stream_salsa208.c \
171
170
  @MINIMAL_FALSE@ crypto_stream/salsa208/ref/xor_salsa208.c
172
171
 
173
- @HAVE_LD_OUTPUT_DEF_TRUE@am__append_9 = -Wl,--output-def,libsodium-$(DLL_VERSION).def
172
+ @HAVE_LD_OUTPUT_DEF_TRUE@am__append_10 = -Wl,--output-def,libsodium-$(DLL_VERSION).def
174
173
  subdir = src/libsodium
175
174
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
176
175
  am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
@@ -182,7 +181,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
182
181
  $(top_srcdir)/configure.ac
183
182
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
184
183
  $(ACLOCAL_M4)
185
- DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
184
+ DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \
185
+ $(am__DIST_COMMON)
186
186
  mkinstalldirs = $(install_sh) -d
187
187
  CONFIG_CLEAN_FILES =
188
188
  CONFIG_CLEAN_VPATH_FILES =
@@ -232,34 +232,27 @@ am__libsodium_la_SOURCES_DIST = \
232
232
  crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
233
233
  crypto_auth/crypto_auth.c \
234
234
  crypto_auth/hmacsha256/auth_hmacsha256_api.c \
235
- crypto_auth/hmacsha256/cp/api.h \
236
235
  crypto_auth/hmacsha256/cp/hmac_hmacsha256.c \
237
236
  crypto_auth/hmacsha256/cp/verify_hmacsha256.c \
238
237
  crypto_auth/hmacsha512/auth_hmacsha512_api.c \
239
- crypto_auth/hmacsha512/cp/api.h \
240
238
  crypto_auth/hmacsha512/cp/hmac_hmacsha512.c \
241
239
  crypto_auth/hmacsha512/cp/verify_hmacsha512.c \
242
240
  crypto_auth/hmacsha512256/auth_hmacsha512256_api.c \
243
- crypto_auth/hmacsha512256/cp/api.h \
244
241
  crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c \
245
242
  crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c \
246
243
  crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \
247
244
  crypto_box/crypto_box_seal.c \
248
245
  crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c \
249
- crypto_box/curve25519xsalsa20poly1305/ref/api.h \
250
246
  crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c \
251
247
  crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c \
252
248
  crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c \
253
249
  crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c \
254
250
  crypto_core/hsalsa20/ref2/core_hsalsa20.c \
255
251
  crypto_core/hsalsa20/core_hsalsa20_api.c \
256
- crypto_core/hsalsa20/ref2/api.h \
257
252
  crypto_core/salsa20/ref/core_salsa20.c \
258
253
  crypto_core/salsa20/core_salsa20_api.c \
259
- crypto_core/salsa20/ref/api.h \
260
254
  crypto_generichash/crypto_generichash.c \
261
255
  crypto_generichash/blake2/generichash_blake2_api.c \
262
- crypto_generichash/blake2/ref/api.h \
263
256
  crypto_generichash/blake2/ref/blake2-impl.h \
264
257
  crypto_generichash/blake2/ref/blake2.h \
265
258
  crypto_generichash/blake2/ref/blake2b-compress-ref.c \
@@ -269,10 +262,8 @@ am__libsodium_la_SOURCES_DIST = \
269
262
  crypto_generichash/blake2/ref/blake2b-round.h \
270
263
  crypto_generichash/blake2/ref/generichash_blake2b.c \
271
264
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
272
- crypto_hash/sha256/cp/api.h \
273
265
  crypto_hash/sha256/cp/hash_sha256.c \
274
266
  crypto_hash/sha512/hash_sha512_api.c \
275
- crypto_hash/sha512/cp/api.h \
276
267
  crypto_hash/sha512/cp/hash_sha512.c \
277
268
  crypto_onetimeauth/crypto_onetimeauth.c \
278
269
  crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
@@ -280,7 +271,7 @@ am__libsodium_la_SOURCES_DIST = \
280
271
  crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
281
272
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
282
273
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
283
- crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c \
274
+ crypto_onetimeauth/poly1305/donna/poly1305_donna.c \
284
275
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
285
276
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
286
277
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -290,21 +281,20 @@ am__libsodium_la_SOURCES_DIST = \
290
281
  crypto_pwhash/scryptsalsa208sha256/sysendian.h \
291
282
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
292
283
  crypto_scalarmult/crypto_scalarmult.c \
293
- crypto_scalarmult/curve25519/scalarmult_curve25519_api.c \
284
+ crypto_scalarmult/curve25519/scalarmult_curve25519.c \
285
+ crypto_scalarmult/curve25519/scalarmult_curve25519.h \
294
286
  crypto_secretbox/crypto_secretbox.c \
295
287
  crypto_secretbox/crypto_secretbox_easy.c \
296
288
  crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c \
297
- crypto_secretbox/xsalsa20poly1305/ref/api.h \
298
289
  crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c \
299
290
  crypto_shorthash/crypto_shorthash.c \
300
291
  crypto_shorthash/siphash24/shorthash_siphash24_api.c \
301
- crypto_shorthash/siphash24/ref/api.h \
302
292
  crypto_shorthash/siphash24/ref/shorthash_siphash24.c \
303
293
  crypto_sign/crypto_sign.c crypto_sign/ed25519/ref10/base.h \
304
294
  crypto_sign/ed25519/ref10/base2.h \
305
295
  crypto_sign/ed25519/sign_ed25519_api.c \
306
- crypto_sign/ed25519/ref10/api.h crypto_sign/ed25519/ref10/d.h \
307
- crypto_sign/ed25519/ref10/d2.h crypto_sign/ed25519/ref10/fe.h \
296
+ crypto_sign/ed25519/ref10/d.h crypto_sign/ed25519/ref10/d2.h \
297
+ crypto_sign/ed25519/ref10/fe.h \
308
298
  crypto_sign/ed25519/ref10/fe_0.c \
309
299
  crypto_sign/ed25519/ref10/fe_1.c \
310
300
  crypto_sign/ed25519/ref10/fe_add.c \
@@ -355,29 +345,28 @@ am__libsodium_la_SOURCES_DIST = \
355
345
  crypto_sign/ed25519/ref10/sign.c \
356
346
  crypto_sign/ed25519/ref10/sqrtm1.h \
357
347
  crypto_stream/crypto_stream.c \
358
- crypto_stream/chacha20/stream_chacha20_api.c \
359
- crypto_stream/chacha20/ref/api.h \
348
+ crypto_stream/chacha20/stream_chacha20.c \
349
+ crypto_stream/chacha20/stream_chacha20.h \
350
+ crypto_stream/chacha20/ref/stream_chacha20_ref.h \
360
351
  crypto_stream/chacha20/ref/stream_chacha20_ref.c \
361
352
  crypto_stream/salsa20/stream_salsa20_api.c \
362
353
  crypto_stream/xsalsa20/stream_xsalsa20_api.c \
363
- crypto_stream/xsalsa20/ref/api.h \
364
354
  crypto_stream/xsalsa20/ref/stream_xsalsa20.c \
365
355
  crypto_stream/xsalsa20/ref/xor_xsalsa20.c \
366
- crypto_verify/16/verify_16_api.c crypto_verify/16/ref/api.h \
356
+ crypto_verify/16/verify_16_api.c \
367
357
  crypto_verify/16/ref/verify_16.c \
368
- crypto_verify/32/verify_32_api.c crypto_verify/32/ref/api.h \
358
+ crypto_verify/32/verify_32_api.c \
369
359
  crypto_verify/32/ref/verify_32.c \
370
- crypto_verify/64/verify_64_api.c crypto_verify/64/ref/api.h \
360
+ crypto_verify/64/verify_64_api.c \
371
361
  crypto_verify/64/ref/verify_64.c randombytes/randombytes.c \
372
362
  sodium/core.c sodium/runtime.c sodium/utils.c sodium/version.c \
373
363
  randombytes/salsa20/randombytes_salsa20_random.c \
374
364
  randombytes/nativeclient/randombytes_nativeclient.c \
375
365
  randombytes/sysrandom/randombytes_sysrandom.c \
376
- crypto_scalarmult/curve25519/donna_c64/api.h \
377
- crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c \
378
- crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c \
379
- crypto_scalarmult/curve25519/ref10/api.h \
380
- crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c \
366
+ crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c \
367
+ crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h \
368
+ crypto_scalarmult/curve25519/ref10/curve25519_ref10.c \
369
+ crypto_scalarmult/curve25519/ref10/curve25519_ref10.h \
381
370
  crypto_scalarmult/curve25519/ref10/fe.h \
382
371
  crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c \
383
372
  crypto_scalarmult/curve25519/ref10/fe_1_curve25519_ref10.c \
@@ -393,30 +382,29 @@ am__libsodium_la_SOURCES_DIST = \
393
382
  crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c \
394
383
  crypto_scalarmult/curve25519/ref10/montgomery.h \
395
384
  crypto_scalarmult/curve25519/ref10/pow225521.h \
396
- crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c \
397
- crypto_stream/salsa20/amd64_xmm6/api.h \
385
+ crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \
386
+ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \
387
+ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \
388
+ crypto_scalarmult/curve25519/sandy2x/fe.h \
389
+ crypto_scalarmult/curve25519/sandy2x/fe51.h \
390
+ crypto_scalarmult/curve25519/sandy2x/fe51_invert.c \
391
+ crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h \
392
+ crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c \
393
+ crypto_scalarmult/curve25519/sandy2x/ladder.h \
394
+ crypto_scalarmult/curve25519/sandy2x/ladder_base.h \
395
+ crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h \
396
+ crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \
397
+ crypto_scalarmult/curve25519/sandy2x/sandy2x.S \
398
398
  crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S \
399
- crypto_stream/salsa20/ref/api.h \
400
399
  crypto_stream/salsa20/ref/stream_salsa20_ref.c \
401
400
  crypto_stream/salsa20/ref/xor_salsa20_ref.c \
402
401
  crypto_core/salsa2012/ref/core_salsa2012.c \
403
402
  crypto_core/salsa2012/core_salsa2012_api.c \
404
- crypto_core/salsa2012/ref/api.h \
405
403
  crypto_core/salsa208/ref/core_salsa208.c \
406
404
  crypto_core/salsa208/core_salsa208_api.c \
407
- crypto_core/salsa208/ref/api.h \
408
- crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c \
409
- crypto_sign/edwards25519sha512batch/ref/api.h \
410
- crypto_sign/edwards25519sha512batch/ref/fe25519.h \
411
- crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c \
412
- crypto_sign/edwards25519sha512batch/ref/ge25519.h \
413
- crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c \
414
- crypto_sign/edwards25519sha512batch/ref/sc25519.h \
415
- crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c \
416
- crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c \
405
+ crypto_sign/ed25519/ref10/obsolete.c \
417
406
  crypto_stream/aes128ctr/portable/afternm_aes128ctr.c \
418
407
  crypto_stream/aes128ctr/stream_aes128ctr_api.c \
419
- crypto_stream/aes128ctr/portable/api.h \
420
408
  crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \
421
409
  crypto_stream/aes128ctr/portable/common.h \
422
410
  crypto_stream/aes128ctr/portable/common_aes128ctr.c \
@@ -428,19 +416,16 @@ am__libsodium_la_SOURCES_DIST = \
428
416
  crypto_stream/aes128ctr/portable/types.h \
429
417
  crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c \
430
418
  crypto_stream/salsa2012/stream_salsa2012_api.c \
431
- crypto_stream/salsa2012/ref/api.h \
432
419
  crypto_stream/salsa2012/ref/stream_salsa2012.c \
433
420
  crypto_stream/salsa2012/ref/xor_salsa2012.c \
434
421
  crypto_stream/salsa208/stream_salsa208_api.c \
435
- crypto_stream/salsa208/ref/api.h \
436
422
  crypto_stream/salsa208/ref/stream_salsa208.c \
437
423
  crypto_stream/salsa208/ref/xor_salsa208.c
438
424
  @EMSCRIPTEN_FALSE@am__objects_1 = randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo
439
425
  @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@am__objects_2 = randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo
440
426
  @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__objects_3 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo
441
- @HAVE_TI_MODE_TRUE@am__objects_4 = crypto_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo \
442
- @HAVE_TI_MODE_TRUE@ crypto_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo
443
- @HAVE_TI_MODE_FALSE@am__objects_5 = crypto_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo \
427
+ @HAVE_TI_MODE_TRUE@am__objects_4 = crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo
428
+ @HAVE_TI_MODE_FALSE@am__objects_5 = crypto_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo \
444
429
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_0_curve25519_ref10.lo \
445
430
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_1_curve25519_ref10.lo \
446
431
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_add_curve25519_ref10.lo \
@@ -452,20 +437,19 @@ am__libsodium_la_SOURCES_DIST = \
452
437
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_mul121666_curve25519_ref10.lo \
453
438
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_sq_curve25519_ref10.lo \
454
439
  @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_sub_curve25519_ref10.lo \
455
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_tobytes_curve25519_ref10.lo \
456
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo
457
- @HAVE_AMD64_ASM_TRUE@am__objects_6 = crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo
458
- @HAVE_AMD64_ASM_FALSE@am__objects_7 = crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo \
440
+ @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_tobytes_curve25519_ref10.lo
441
+ @HAVE_AVX_ASM_TRUE@am__objects_6 = crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo \
442
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo \
443
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo \
444
+ @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo
445
+ @HAVE_AMD64_ASM_TRUE@am__objects_7 = crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo
446
+ @HAVE_AMD64_ASM_FALSE@am__objects_8 = crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo \
459
447
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/libsodium_la-xor_salsa20_ref.lo
460
- @MINIMAL_FALSE@am__objects_8 = crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo \
448
+ @MINIMAL_FALSE@am__objects_9 = crypto_core/salsa2012/ref/libsodium_la-core_salsa2012.lo \
461
449
  @MINIMAL_FALSE@ crypto_core/salsa2012/libsodium_la-core_salsa2012_api.lo \
462
450
  @MINIMAL_FALSE@ crypto_core/salsa208/ref/libsodium_la-core_salsa208.lo \
463
451
  @MINIMAL_FALSE@ crypto_core/salsa208/libsodium_la-core_salsa208_api.lo \
464
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo \
465
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo \
466
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo \
467
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo \
468
- @MINIMAL_FALSE@ crypto_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo \
452
+ @MINIMAL_FALSE@ crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo \
469
453
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-afternm_aes128ctr.lo \
470
454
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/libsodium_la-stream_aes128ctr_api.lo \
471
455
  @MINIMAL_FALSE@ crypto_stream/aes128ctr/portable/libsodium_la-beforenm_aes128ctr.lo \
@@ -515,14 +499,14 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
515
499
  crypto_hash/sha512/cp/libsodium_la-hash_sha512.lo \
516
500
  crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \
517
501
  crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \
518
- crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo \
502
+ crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo \
519
503
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo \
520
504
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo \
521
505
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo \
522
506
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo \
523
507
  crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo \
524
508
  crypto_scalarmult/libsodium_la-crypto_scalarmult.lo \
525
- crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo \
509
+ crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo \
526
510
  crypto_secretbox/libsodium_la-crypto_secretbox.lo \
527
511
  crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo \
528
512
  crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305_api.lo \
@@ -572,7 +556,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
572
556
  crypto_sign/ed25519/ref10/libsodium_la-sc_reduce.lo \
573
557
  crypto_sign/ed25519/ref10/libsodium_la-sign.lo \
574
558
  crypto_stream/libsodium_la-crypto_stream.lo \
575
- crypto_stream/chacha20/libsodium_la-stream_chacha20_api.lo \
559
+ crypto_stream/chacha20/libsodium_la-stream_chacha20.lo \
576
560
  crypto_stream/chacha20/ref/libsodium_la-stream_chacha20_ref.lo \
577
561
  crypto_stream/salsa20/libsodium_la-stream_salsa20_api.lo \
578
562
  crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20_api.lo \
@@ -589,13 +573,14 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
589
573
  sodium/libsodium_la-utils.lo sodium/libsodium_la-version.lo \
590
574
  $(am__objects_1) $(am__objects_2) $(am__objects_3) \
591
575
  $(am__objects_4) $(am__objects_5) $(am__objects_6) \
592
- $(am__objects_7) $(am__objects_8)
576
+ $(am__objects_7) $(am__objects_8) $(am__objects_9)
593
577
  libsodium_la_OBJECTS = $(am_libsodium_la_OBJECTS)
594
578
  libsodium_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
595
579
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
596
580
  $(libsodium_la_LDFLAGS) $(LDFLAGS) -o $@
597
581
  libsse2_la_LIBADD =
598
- am_libsse2_la_OBJECTS = crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo
582
+ am_libsse2_la_OBJECTS = crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo \
583
+ crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo
599
584
  libsse2_la_OBJECTS = $(am_libsse2_la_OBJECTS)
600
585
  libsse2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
601
586
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
@@ -607,7 +592,8 @@ libsse41_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
607
592
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
608
593
  $(libsse41_la_LDFLAGS) $(LDFLAGS) -o $@
609
594
  libssse3_la_LIBADD =
610
- am_libssse3_la_OBJECTS = crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo
595
+ am_libssse3_la_OBJECTS = crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo \
596
+ crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo
611
597
  libssse3_la_OBJECTS = $(am_libssse3_la_OBJECTS)
612
598
  libssse3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
613
599
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
@@ -676,6 +662,7 @@ am__can_run_installinfo = \
676
662
  *) (install-info --version) >/dev/null 2>&1;; \
677
663
  esac
678
664
  DATA = $(defexec_DATA)
665
+ HEADERS = $(noinst_HEADERS)
679
666
  RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
680
667
  distclean-recursive maintainer-clean-recursive
681
668
  am__recursive_targets = \
@@ -772,6 +759,7 @@ EXEEXT = @EXEEXT@
772
759
  FGREP = @FGREP@
773
760
  GREP = @GREP@
774
761
  HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@
762
+ HAVE_AVX_ASM_V = @HAVE_AVX_ASM_V@
775
763
  HAVE_CPUID_V = @HAVE_CPUID_V@
776
764
  HAVE_TI_MODE_V = @HAVE_TI_MODE_V@
777
765
  INSTALL = @INSTALL@
@@ -879,34 +867,27 @@ libsodium_la_SOURCES = \
879
867
  crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
880
868
  crypto_auth/crypto_auth.c \
881
869
  crypto_auth/hmacsha256/auth_hmacsha256_api.c \
882
- crypto_auth/hmacsha256/cp/api.h \
883
870
  crypto_auth/hmacsha256/cp/hmac_hmacsha256.c \
884
871
  crypto_auth/hmacsha256/cp/verify_hmacsha256.c \
885
872
  crypto_auth/hmacsha512/auth_hmacsha512_api.c \
886
- crypto_auth/hmacsha512/cp/api.h \
887
873
  crypto_auth/hmacsha512/cp/hmac_hmacsha512.c \
888
874
  crypto_auth/hmacsha512/cp/verify_hmacsha512.c \
889
875
  crypto_auth/hmacsha512256/auth_hmacsha512256_api.c \
890
- crypto_auth/hmacsha512256/cp/api.h \
891
876
  crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c \
892
877
  crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c \
893
878
  crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \
894
879
  crypto_box/crypto_box_seal.c \
895
880
  crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c \
896
- crypto_box/curve25519xsalsa20poly1305/ref/api.h \
897
881
  crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c \
898
882
  crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c \
899
883
  crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c \
900
884
  crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c \
901
885
  crypto_core/hsalsa20/ref2/core_hsalsa20.c \
902
886
  crypto_core/hsalsa20/core_hsalsa20_api.c \
903
- crypto_core/hsalsa20/ref2/api.h \
904
887
  crypto_core/salsa20/ref/core_salsa20.c \
905
888
  crypto_core/salsa20/core_salsa20_api.c \
906
- crypto_core/salsa20/ref/api.h \
907
889
  crypto_generichash/crypto_generichash.c \
908
890
  crypto_generichash/blake2/generichash_blake2_api.c \
909
- crypto_generichash/blake2/ref/api.h \
910
891
  crypto_generichash/blake2/ref/blake2-impl.h \
911
892
  crypto_generichash/blake2/ref/blake2.h \
912
893
  crypto_generichash/blake2/ref/blake2b-compress-ref.c \
@@ -916,10 +897,8 @@ libsodium_la_SOURCES = \
916
897
  crypto_generichash/blake2/ref/blake2b-round.h \
917
898
  crypto_generichash/blake2/ref/generichash_blake2b.c \
918
899
  crypto_hash/crypto_hash.c crypto_hash/sha256/hash_sha256_api.c \
919
- crypto_hash/sha256/cp/api.h \
920
900
  crypto_hash/sha256/cp/hash_sha256.c \
921
901
  crypto_hash/sha512/hash_sha512_api.c \
922
- crypto_hash/sha512/cp/api.h \
923
902
  crypto_hash/sha512/cp/hash_sha512.c \
924
903
  crypto_onetimeauth/crypto_onetimeauth.c \
925
904
  crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
@@ -927,7 +906,7 @@ libsodium_la_SOURCES = \
927
906
  crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
928
907
  crypto_onetimeauth/poly1305/donna/poly1305_donna32.h \
929
908
  crypto_onetimeauth/poly1305/donna/poly1305_donna64.h \
930
- crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c \
909
+ crypto_onetimeauth/poly1305/donna/poly1305_donna.c \
931
910
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
932
911
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
933
912
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -937,21 +916,20 @@ libsodium_la_SOURCES = \
937
916
  crypto_pwhash/scryptsalsa208sha256/sysendian.h \
938
917
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
939
918
  crypto_scalarmult/crypto_scalarmult.c \
940
- crypto_scalarmult/curve25519/scalarmult_curve25519_api.c \
919
+ crypto_scalarmult/curve25519/scalarmult_curve25519.c \
920
+ crypto_scalarmult/curve25519/scalarmult_curve25519.h \
941
921
  crypto_secretbox/crypto_secretbox.c \
942
922
  crypto_secretbox/crypto_secretbox_easy.c \
943
923
  crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c \
944
- crypto_secretbox/xsalsa20poly1305/ref/api.h \
945
924
  crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c \
946
925
  crypto_shorthash/crypto_shorthash.c \
947
926
  crypto_shorthash/siphash24/shorthash_siphash24_api.c \
948
- crypto_shorthash/siphash24/ref/api.h \
949
927
  crypto_shorthash/siphash24/ref/shorthash_siphash24.c \
950
928
  crypto_sign/crypto_sign.c crypto_sign/ed25519/ref10/base.h \
951
929
  crypto_sign/ed25519/ref10/base2.h \
952
930
  crypto_sign/ed25519/sign_ed25519_api.c \
953
- crypto_sign/ed25519/ref10/api.h crypto_sign/ed25519/ref10/d.h \
954
- crypto_sign/ed25519/ref10/d2.h crypto_sign/ed25519/ref10/fe.h \
931
+ crypto_sign/ed25519/ref10/d.h crypto_sign/ed25519/ref10/d2.h \
932
+ crypto_sign/ed25519/ref10/fe.h \
955
933
  crypto_sign/ed25519/ref10/fe_0.c \
956
934
  crypto_sign/ed25519/ref10/fe_1.c \
957
935
  crypto_sign/ed25519/ref10/fe_add.c \
@@ -1002,26 +980,34 @@ libsodium_la_SOURCES = \
1002
980
  crypto_sign/ed25519/ref10/sign.c \
1003
981
  crypto_sign/ed25519/ref10/sqrtm1.h \
1004
982
  crypto_stream/crypto_stream.c \
1005
- crypto_stream/chacha20/stream_chacha20_api.c \
1006
- crypto_stream/chacha20/ref/api.h \
983
+ crypto_stream/chacha20/stream_chacha20.c \
984
+ crypto_stream/chacha20/stream_chacha20.h \
985
+ crypto_stream/chacha20/ref/stream_chacha20_ref.h \
1007
986
  crypto_stream/chacha20/ref/stream_chacha20_ref.c \
1008
987
  crypto_stream/salsa20/stream_salsa20_api.c \
1009
988
  crypto_stream/xsalsa20/stream_xsalsa20_api.c \
1010
- crypto_stream/xsalsa20/ref/api.h \
1011
989
  crypto_stream/xsalsa20/ref/stream_xsalsa20.c \
1012
990
  crypto_stream/xsalsa20/ref/xor_xsalsa20.c \
1013
- crypto_verify/16/verify_16_api.c crypto_verify/16/ref/api.h \
991
+ crypto_verify/16/verify_16_api.c \
1014
992
  crypto_verify/16/ref/verify_16.c \
1015
- crypto_verify/32/verify_32_api.c crypto_verify/32/ref/api.h \
993
+ crypto_verify/32/verify_32_api.c \
1016
994
  crypto_verify/32/ref/verify_32.c \
1017
- crypto_verify/64/verify_64_api.c crypto_verify/64/ref/api.h \
995
+ crypto_verify/64/verify_64_api.c \
1018
996
  crypto_verify/64/ref/verify_64.c randombytes/randombytes.c \
1019
997
  sodium/core.c sodium/runtime.c sodium/utils.c sodium/version.c \
1020
998
  $(am__append_1) $(am__append_2) $(am__append_3) \
1021
999
  $(am__append_4) $(am__append_5) $(am__append_6) \
1022
- $(am__append_7) $(am__append_8)
1000
+ $(am__append_7) $(am__append_8) $(am__append_9)
1001
+ noinst_HEADERS = \
1002
+ crypto_scalarmult/curve25519/sandy2x/consts.S \
1003
+ crypto_scalarmult/curve25519/sandy2x/fe51_mul.S \
1004
+ crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S \
1005
+ crypto_scalarmult/curve25519/sandy2x/fe51_pack.S \
1006
+ crypto_scalarmult/curve25519/sandy2x/ladder.S \
1007
+ crypto_scalarmult/curve25519/sandy2x/ladder_base.S
1008
+
1023
1009
  libsodium_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -no-undefined \
1024
- $(LIBTOOL_EXTRA_FLAGS) $(am__append_9)
1010
+ $(LIBTOOL_EXTRA_FLAGS) $(am__append_10)
1025
1011
  libsodium_la_CPPFLAGS = \
1026
1012
  $(LTDLINCL) \
1027
1013
  -I$(srcdir)/include/sodium \
@@ -1047,14 +1033,18 @@ libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1047
1033
  @CFLAGS_SSE2@
1048
1034
 
1049
1035
  libsse2_la_SOURCES = \
1050
- crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
1036
+ crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c \
1037
+ crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c \
1038
+ crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h
1051
1039
 
1052
1040
  libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS)
1053
1041
  libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
1054
1042
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@
1055
1043
 
1056
1044
  libssse3_la_SOURCES = \
1057
- crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
1045
+ crypto_generichash/blake2/ref/blake2b-compress-ssse3.c \
1046
+ crypto_stream/chacha20/vec/stream_chacha20_vec.h \
1047
+ crypto_stream/chacha20/vec/stream_chacha20_vec.c
1058
1048
 
1059
1049
  libsse41_la_LDFLAGS = $(libsodium_la_LDFLAGS)
1060
1050
  libsse41_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
@@ -1412,7 +1402,7 @@ crypto_onetimeauth/poly1305/donna/$(am__dirstamp):
1412
1402
  crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp):
1413
1403
  @$(MKDIR_P) crypto_onetimeauth/poly1305/donna/$(DEPDIR)
1414
1404
  @: > crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
1415
- crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo: \
1405
+ crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: \
1416
1406
  crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \
1417
1407
  crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
1418
1408
  crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp):
@@ -1457,7 +1447,7 @@ crypto_scalarmult/curve25519/$(am__dirstamp):
1457
1447
  crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp):
1458
1448
  @$(MKDIR_P) crypto_scalarmult/curve25519/$(DEPDIR)
1459
1449
  @: > crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp)
1460
- crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo: \
1450
+ crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: \
1461
1451
  crypto_scalarmult/curve25519/$(am__dirstamp) \
1462
1452
  crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp)
1463
1453
  crypto_secretbox/$(am__dirstamp):
@@ -1672,7 +1662,7 @@ crypto_stream/chacha20/$(am__dirstamp):
1672
1662
  crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp):
1673
1663
  @$(MKDIR_P) crypto_stream/chacha20/$(DEPDIR)
1674
1664
  @: > crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp)
1675
- crypto_stream/chacha20/libsodium_la-stream_chacha20_api.lo: \
1665
+ crypto_stream/chacha20/libsodium_la-stream_chacha20.lo: \
1676
1666
  crypto_stream/chacha20/$(am__dirstamp) \
1677
1667
  crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp)
1678
1668
  crypto_stream/chacha20/ref/$(am__dirstamp):
@@ -1823,10 +1813,7 @@ crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp):
1823
1813
  crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp):
1824
1814
  @$(MKDIR_P) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)
1825
1815
  @: > crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
1826
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo: \
1827
- crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp) \
1828
- crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
1829
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo: \
1816
+ crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo: \
1830
1817
  crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp) \
1831
1818
  crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
1832
1819
  crypto_scalarmult/curve25519/ref10/$(am__dirstamp):
@@ -1835,7 +1822,7 @@ crypto_scalarmult/curve25519/ref10/$(am__dirstamp):
1835
1822
  crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp):
1836
1823
  @$(MKDIR_P) crypto_scalarmult/curve25519/ref10/$(DEPDIR)
1837
1824
  @: > crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1838
- crypto_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo: \
1825
+ crypto_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo: \
1839
1826
  crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \
1840
1827
  crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1841
1828
  crypto_scalarmult/curve25519/ref10/libsodium_la-fe_0_curve25519_ref10.lo: \
@@ -1874,9 +1861,24 @@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_sub_curve25519_ref10.lo: \
1874
1861
  crypto_scalarmult/curve25519/ref10/libsodium_la-fe_tobytes_curve25519_ref10.lo: \
1875
1862
  crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \
1876
1863
  crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1877
- crypto_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo: \
1878
- crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \
1879
- crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1864
+ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp):
1865
+ @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x
1866
+ @: > crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp)
1867
+ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp):
1868
+ @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)
1869
+ @: > crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
1870
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo: \
1871
+ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \
1872
+ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
1873
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo: \
1874
+ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \
1875
+ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
1876
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo: \
1877
+ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \
1878
+ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
1879
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: \
1880
+ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \
1881
+ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
1880
1882
  crypto_stream/salsa20/amd64_xmm6/$(am__dirstamp):
1881
1883
  @$(MKDIR_P) crypto_stream/salsa20/amd64_xmm6
1882
1884
  @: > crypto_stream/salsa20/amd64_xmm6/$(am__dirstamp)
@@ -1934,33 +1936,9 @@ crypto_core/salsa208/$(DEPDIR)/$(am__dirstamp):
1934
1936
  crypto_core/salsa208/libsodium_la-core_salsa208_api.lo: \
1935
1937
  crypto_core/salsa208/$(am__dirstamp) \
1936
1938
  crypto_core/salsa208/$(DEPDIR)/$(am__dirstamp)
1937
- crypto_sign/edwards25519sha512batch/$(am__dirstamp):
1938
- @$(MKDIR_P) crypto_sign/edwards25519sha512batch
1939
- @: > crypto_sign/edwards25519sha512batch/$(am__dirstamp)
1940
- crypto_sign/edwards25519sha512batch/$(DEPDIR)/$(am__dirstamp):
1941
- @$(MKDIR_P) crypto_sign/edwards25519sha512batch/$(DEPDIR)
1942
- @: > crypto_sign/edwards25519sha512batch/$(DEPDIR)/$(am__dirstamp)
1943
- crypto_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo: \
1944
- crypto_sign/edwards25519sha512batch/$(am__dirstamp) \
1945
- crypto_sign/edwards25519sha512batch/$(DEPDIR)/$(am__dirstamp)
1946
- crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp):
1947
- @$(MKDIR_P) crypto_sign/edwards25519sha512batch/ref
1948
- @: > crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp)
1949
- crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp):
1950
- @$(MKDIR_P) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)
1951
- @: > crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
1952
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo: \
1953
- crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp) \
1954
- crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
1955
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo: \
1956
- crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp) \
1957
- crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
1958
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo: \
1959
- crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp) \
1960
- crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
1961
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo: \
1962
- crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp) \
1963
- crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
1939
+ crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo: \
1940
+ crypto_sign/ed25519/ref10/$(am__dirstamp) \
1941
+ crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
1964
1942
  crypto_stream/aes128ctr/portable/$(am__dirstamp):
1965
1943
  @$(MKDIR_P) crypto_stream/aes128ctr/portable
1966
1944
  @: > crypto_stream/aes128ctr/portable/$(am__dirstamp)
@@ -2051,6 +2029,15 @@ crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp):
2051
2029
  crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo: \
2052
2030
  crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) \
2053
2031
  crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp)
2032
+ crypto_onetimeauth/poly1305/sse2/$(am__dirstamp):
2033
+ @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2
2034
+ @: > crypto_onetimeauth/poly1305/sse2/$(am__dirstamp)
2035
+ crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp):
2036
+ @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2/$(DEPDIR)
2037
+ @: > crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp)
2038
+ crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: \
2039
+ crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) \
2040
+ crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp)
2054
2041
 
2055
2042
  libsse2.la: $(libsse2_la_OBJECTS) $(libsse2_la_DEPENDENCIES) $(EXTRA_libsse2_la_DEPENDENCIES)
2056
2043
  $(AM_V_CCLD)$(libsse2_la_LINK) $(libsse2_la_OBJECTS) $(libsse2_la_LIBADD) $(LIBS)
@@ -2063,6 +2050,15 @@ libsse41.la: $(libsse41_la_OBJECTS) $(libsse41_la_DEPENDENCIES) $(EXTRA_libsse41
2063
2050
  crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: \
2064
2051
  crypto_generichash/blake2/ref/$(am__dirstamp) \
2065
2052
  crypto_generichash/blake2/ref/$(DEPDIR)/$(am__dirstamp)
2053
+ crypto_stream/chacha20/vec/$(am__dirstamp):
2054
+ @$(MKDIR_P) crypto_stream/chacha20/vec
2055
+ @: > crypto_stream/chacha20/vec/$(am__dirstamp)
2056
+ crypto_stream/chacha20/vec/$(DEPDIR)/$(am__dirstamp):
2057
+ @$(MKDIR_P) crypto_stream/chacha20/vec/$(DEPDIR)
2058
+ @: > crypto_stream/chacha20/vec/$(DEPDIR)/$(am__dirstamp)
2059
+ crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo: \
2060
+ crypto_stream/chacha20/vec/$(am__dirstamp) \
2061
+ crypto_stream/chacha20/vec/$(DEPDIR)/$(am__dirstamp)
2066
2062
 
2067
2063
  libssse3.la: $(libssse3_la_OBJECTS) $(libssse3_la_DEPENDENCIES) $(EXTRA_libssse3_la_DEPENDENCIES)
2068
2064
  $(AM_V_CCLD)$(libssse3_la_LINK) $(libssse3_la_OBJECTS) $(libssse3_la_LIBADD) $(LIBS)
@@ -2131,6 +2127,8 @@ mostlyclean-compile:
2131
2127
  -rm -f crypto_onetimeauth/poly1305/*.lo
2132
2128
  -rm -f crypto_onetimeauth/poly1305/donna/*.$(OBJEXT)
2133
2129
  -rm -f crypto_onetimeauth/poly1305/donna/*.lo
2130
+ -rm -f crypto_onetimeauth/poly1305/sse2/*.$(OBJEXT)
2131
+ -rm -f crypto_onetimeauth/poly1305/sse2/*.lo
2134
2132
  -rm -f crypto_pwhash/scryptsalsa208sha256/*.$(OBJEXT)
2135
2133
  -rm -f crypto_pwhash/scryptsalsa208sha256/*.lo
2136
2134
  -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/*.$(OBJEXT)
@@ -2145,6 +2143,8 @@ mostlyclean-compile:
2145
2143
  -rm -f crypto_scalarmult/curve25519/donna_c64/*.lo
2146
2144
  -rm -f crypto_scalarmult/curve25519/ref10/*.$(OBJEXT)
2147
2145
  -rm -f crypto_scalarmult/curve25519/ref10/*.lo
2146
+ -rm -f crypto_scalarmult/curve25519/sandy2x/*.$(OBJEXT)
2147
+ -rm -f crypto_scalarmult/curve25519/sandy2x/*.lo
2148
2148
  -rm -f crypto_secretbox/*.$(OBJEXT)
2149
2149
  -rm -f crypto_secretbox/*.lo
2150
2150
  -rm -f crypto_secretbox/xsalsa20poly1305/*.$(OBJEXT)
@@ -2163,10 +2163,6 @@ mostlyclean-compile:
2163
2163
  -rm -f crypto_sign/ed25519/*.lo
2164
2164
  -rm -f crypto_sign/ed25519/ref10/*.$(OBJEXT)
2165
2165
  -rm -f crypto_sign/ed25519/ref10/*.lo
2166
- -rm -f crypto_sign/edwards25519sha512batch/*.$(OBJEXT)
2167
- -rm -f crypto_sign/edwards25519sha512batch/*.lo
2168
- -rm -f crypto_sign/edwards25519sha512batch/ref/*.$(OBJEXT)
2169
- -rm -f crypto_sign/edwards25519sha512batch/ref/*.lo
2170
2166
  -rm -f crypto_stream/*.$(OBJEXT)
2171
2167
  -rm -f crypto_stream/*.lo
2172
2168
  -rm -f crypto_stream/aes128ctr/*.$(OBJEXT)
@@ -2177,6 +2173,8 @@ mostlyclean-compile:
2177
2173
  -rm -f crypto_stream/chacha20/*.lo
2178
2174
  -rm -f crypto_stream/chacha20/ref/*.$(OBJEXT)
2179
2175
  -rm -f crypto_stream/chacha20/ref/*.lo
2176
+ -rm -f crypto_stream/chacha20/vec/*.$(OBJEXT)
2177
+ -rm -f crypto_stream/chacha20/vec/*.lo
2180
2178
  -rm -f crypto_stream/salsa20/*.$(OBJEXT)
2181
2179
  -rm -f crypto_stream/salsa20/*.lo
2182
2180
  -rm -f crypto_stream/salsa20/amd64_xmm6/*.$(OBJEXT)
@@ -2263,7 +2261,8 @@ distclean-compile:
2263
2261
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512.Plo@am__quote@
2264
2262
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo@am__quote@
2265
2263
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@
2266
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Plo@am__quote@
2264
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Plo@am__quote@
2265
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Plo@am__quote@
2267
2266
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo@am__quote@
2268
2267
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pbkdf2-sha256.Plo@am__quote@
2269
2268
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256.Plo@am__quote@
@@ -2271,10 +2270,9 @@ distclean-compile:
2271
2270
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/libsodium_la-pwhash_scryptsalsa208sha256_nosse.Plo@am__quote@
2272
2271
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Plo@am__quote@
2273
2272
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Plo@am__quote@
2274
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519_api.Plo@am__quote@
2275
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-base_curve25519_donna_c64.Plo@am__quote@
2276
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-smult_curve25519_donna_c64.Plo@am__quote@
2277
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-base_curve25519_ref10.Plo@am__quote@
2273
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Plo@am__quote@
2274
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-curve25519_donna_c64.Plo@am__quote@
2275
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Plo@am__quote@
2278
2276
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_0_curve25519_ref10.Plo@am__quote@
2279
2277
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_1_curve25519_ref10.Plo@am__quote@
2280
2278
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_add_curve25519_ref10.Plo@am__quote@
@@ -2287,7 +2285,10 @@ distclean-compile:
2287
2285
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_sq_curve25519_ref10.Plo@am__quote@
2288
2286
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_sub_curve25519_ref10.Plo@am__quote@
2289
2287
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_tobytes_curve25519_ref10.Plo@am__quote@
2290
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_curve25519_ref10.Plo@am__quote@
2288
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Plo@am__quote@
2289
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Plo@am__quote@
2290
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Plo@am__quote@
2291
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Plo@am__quote@
2291
2292
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Plo@am__quote@
2292
2293
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Plo@am__quote@
2293
2294
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/libsodium_la-secretbox_xsalsa20poly1305_api.Plo@am__quote@
@@ -2332,15 +2333,11 @@ distclean-compile:
2332
2333
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-ge_sub.Plo@am__quote@
2333
2334
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-ge_tobytes.Plo@am__quote@
2334
2335
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-keypair.Plo@am__quote@
2336
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-obsolete.Plo@am__quote@
2335
2337
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-open.Plo@am__quote@
2336
2338
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sc_muladd.Plo@am__quote@
2337
2339
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sc_reduce.Plo@am__quote@
2338
2340
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-sign.Plo@am__quote@
2339
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/edwards25519sha512batch/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch_api.Plo@am__quote@
2340
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-fe25519_edwards25519sha512batch.Plo@am__quote@
2341
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-ge25519_edwards25519sha512batch.Plo@am__quote@
2342
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sc25519_edwards25519sha512batch.Plo@am__quote@
2343
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch.Plo@am__quote@
2344
2341
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/$(DEPDIR)/libsodium_la-crypto_stream.Plo@am__quote@
2345
2342
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/$(DEPDIR)/libsodium_la-stream_aes128ctr_api.Plo@am__quote@
2346
2343
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-afternm_aes128ctr.Plo@am__quote@
@@ -2350,8 +2347,9 @@ distclean-compile:
2350
2347
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-int128_aes128ctr.Plo@am__quote@
2351
2348
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-stream_aes128ctr.Plo@am__quote@
2352
2349
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-xor_afternm_aes128ctr.Plo@am__quote@
2353
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20_api.Plo@am__quote@
2350
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Plo@am__quote@
2354
2351
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-stream_chacha20_ref.Plo@am__quote@
2352
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/chacha20/vec/$(DEPDIR)/libssse3_la-stream_chacha20_vec.Plo@am__quote@
2355
2353
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/$(DEPDIR)/libsodium_la-stream_salsa20_api.Plo@am__quote@
2356
2354
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/amd64_xmm6/$(DEPDIR)/libsodium_la-stream_salsa20_amd64_xmm6.Plo@am__quote@
2357
2355
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-stream_salsa20_ref.Plo@am__quote@
@@ -2404,6 +2402,13 @@ distclean-compile:
2404
2402
  @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2405
2403
  @am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $<
2406
2404
 
2405
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/sandy2x.S
2406
+ @am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/sandy2x.S' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/sandy2x.S
2407
+ @am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Plo
2408
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='crypto_scalarmult/curve25519/sandy2x/sandy2x.S' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo' libtool=yes @AMDEPBACKSLASH@
2409
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2410
+ @am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/sandy2x.S' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/sandy2x.S
2411
+
2407
2412
  crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo: crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S
2408
2413
  @am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo -MD -MP -MF crypto_stream/salsa20/amd64_xmm6/$(DEPDIR)/libsodium_la-stream_salsa20_amd64_xmm6.Tpo -c -o crypto_stream/salsa20/amd64_xmm6/libsodium_la-stream_salsa20_amd64_xmm6.lo `test -f 'crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S' || echo '$(srcdir)/'`crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S
2409
2414
  @am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/amd64_xmm6/$(DEPDIR)/libsodium_la-stream_salsa20_amd64_xmm6.Tpo crypto_stream/salsa20/amd64_xmm6/$(DEPDIR)/libsodium_la-stream_salsa20_amd64_xmm6.Plo
@@ -2687,12 +2692,12 @@ crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: crypto_onetime
2687
2692
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2688
2693
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo `test -f 'crypto_onetimeauth/poly1305/onetimeauth_poly1305.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/onetimeauth_poly1305.c
2689
2694
 
2690
- crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo: crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2691
- @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo -MD -MP -MF crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Tpo -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2692
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Tpo crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-auth_poly1305_donna.Plo
2693
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c' object='crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo' libtool=yes @AMDEPBACKSLASH@
2695
+ crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: crypto_onetimeauth/poly1305/donna/poly1305_donna.c
2696
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo -MD -MP -MF crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Tpo -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
2697
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Tpo crypto_onetimeauth/poly1305/donna/$(DEPDIR)/libsodium_la-poly1305_donna.Plo
2698
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/donna/poly1305_donna.c' object='crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo' libtool=yes @AMDEPBACKSLASH@
2694
2699
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2695
- @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/donna/libsodium_la-auth_poly1305_donna.lo `test -f 'crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
2700
+ @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
2696
2701
 
2697
2702
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2698
2703
  @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
@@ -2736,12 +2741,12 @@ crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: crypto_scalarmult/crypto_sc
2736
2741
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2737
2742
  @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_scalarmult/libsodium_la-crypto_scalarmult.lo `test -f 'crypto_scalarmult/crypto_scalarmult.c' || echo '$(srcdir)/'`crypto_scalarmult/crypto_scalarmult.c
2738
2743
 
2739
- crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo: crypto_scalarmult/curve25519/scalarmult_curve25519_api.c
2740
- @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_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo -MD -MP -MF crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519_api.Tpo -c -o crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519_api.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519_api.c
2741
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519_api.Tpo crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519_api.Plo
2742
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/scalarmult_curve25519_api.c' object='crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo' libtool=yes @AMDEPBACKSLASH@
2744
+ crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: crypto_scalarmult/curve25519/scalarmult_curve25519.c
2745
+ @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_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo -MD -MP -MF crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Tpo -c -o crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519.c
2746
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Tpo crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Plo
2747
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/scalarmult_curve25519.c' object='crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo' libtool=yes @AMDEPBACKSLASH@
2743
2748
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2744
- @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_scalarmult/curve25519/libsodium_la-scalarmult_curve25519_api.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519_api.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519_api.c
2749
+ @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_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo `test -f 'crypto_scalarmult/curve25519/scalarmult_curve25519.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/scalarmult_curve25519.c
2745
2750
 
2746
2751
  crypto_secretbox/libsodium_la-crypto_secretbox.lo: crypto_secretbox/crypto_secretbox.c
2747
2752
  @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_secretbox/libsodium_la-crypto_secretbox.lo -MD -MP -MF crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Tpo -c -o crypto_secretbox/libsodium_la-crypto_secretbox.lo `test -f 'crypto_secretbox/crypto_secretbox.c' || echo '$(srcdir)/'`crypto_secretbox/crypto_secretbox.c
@@ -3086,12 +3091,12 @@ crypto_stream/libsodium_la-crypto_stream.lo: crypto_stream/crypto_stream.c
3086
3091
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3087
3092
  @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/libsodium_la-crypto_stream.lo `test -f 'crypto_stream/crypto_stream.c' || echo '$(srcdir)/'`crypto_stream/crypto_stream.c
3088
3093
 
3089
- crypto_stream/chacha20/libsodium_la-stream_chacha20_api.lo: crypto_stream/chacha20/stream_chacha20_api.c
3090
- @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/chacha20/libsodium_la-stream_chacha20_api.lo -MD -MP -MF crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20_api.Tpo -c -o crypto_stream/chacha20/libsodium_la-stream_chacha20_api.lo `test -f 'crypto_stream/chacha20/stream_chacha20_api.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20_api.c
3091
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20_api.Tpo crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20_api.Plo
3092
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/stream_chacha20_api.c' object='crypto_stream/chacha20/libsodium_la-stream_chacha20_api.lo' libtool=yes @AMDEPBACKSLASH@
3094
+ crypto_stream/chacha20/libsodium_la-stream_chacha20.lo: crypto_stream/chacha20/stream_chacha20.c
3095
+ @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/chacha20/libsodium_la-stream_chacha20.lo -MD -MP -MF crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Tpo -c -o crypto_stream/chacha20/libsodium_la-stream_chacha20.lo `test -f 'crypto_stream/chacha20/stream_chacha20.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20.c
3096
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Tpo crypto_stream/chacha20/$(DEPDIR)/libsodium_la-stream_chacha20.Plo
3097
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/stream_chacha20.c' object='crypto_stream/chacha20/libsodium_la-stream_chacha20.lo' libtool=yes @AMDEPBACKSLASH@
3093
3098
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3094
- @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/chacha20/libsodium_la-stream_chacha20_api.lo `test -f 'crypto_stream/chacha20/stream_chacha20_api.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20_api.c
3099
+ @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/chacha20/libsodium_la-stream_chacha20.lo `test -f 'crypto_stream/chacha20/stream_chacha20.c' || echo '$(srcdir)/'`crypto_stream/chacha20/stream_chacha20.c
3095
3100
 
3096
3101
  crypto_stream/chacha20/ref/libsodium_la-stream_chacha20_ref.lo: crypto_stream/chacha20/ref/stream_chacha20_ref.c
3097
3102
  @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/chacha20/ref/libsodium_la-stream_chacha20_ref.lo -MD -MP -MF crypto_stream/chacha20/ref/$(DEPDIR)/libsodium_la-stream_chacha20_ref.Tpo -c -o crypto_stream/chacha20/ref/libsodium_la-stream_chacha20_ref.lo `test -f 'crypto_stream/chacha20/ref/stream_chacha20_ref.c' || echo '$(srcdir)/'`crypto_stream/chacha20/ref/stream_chacha20_ref.c
@@ -3226,26 +3231,19 @@ randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: randombytes/sysrand
3226
3231
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3227
3232
  @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 randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo `test -f 'randombytes/sysrandom/randombytes_sysrandom.c' || echo '$(srcdir)/'`randombytes/sysrandom/randombytes_sysrandom.c
3228
3233
 
3229
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo: crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c
3230
- @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_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo -MD -MP -MF crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-base_curve25519_donna_c64.Tpo -c -o crypto_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c
3231
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-base_curve25519_donna_c64.Tpo crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-base_curve25519_donna_c64.Plo
3232
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c' object='crypto_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo' libtool=yes @AMDEPBACKSLASH@
3234
+ crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo: crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c
3235
+ @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_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo -MD -MP -MF crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-curve25519_donna_c64.Tpo -c -o crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c
3236
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-curve25519_donna_c64.Tpo crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-curve25519_donna_c64.Plo
3237
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c' object='crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo' libtool=yes @AMDEPBACKSLASH@
3233
3238
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3234
- @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_scalarmult/curve25519/donna_c64/libsodium_la-base_curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c
3239
+ @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_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c
3235
3240
 
3236
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo: crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c
3237
- @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_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo -MD -MP -MF crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-smult_curve25519_donna_c64.Tpo -c -o crypto_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c
3238
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-smult_curve25519_donna_c64.Tpo crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-smult_curve25519_donna_c64.Plo
3239
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c' object='crypto_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo' libtool=yes @AMDEPBACKSLASH@
3241
+ crypto_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo: crypto_scalarmult/curve25519/ref10/curve25519_ref10.c
3242
+ @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_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/curve25519_ref10.c
3243
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Plo
3244
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/curve25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
3240
3245
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3241
- @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_scalarmult/curve25519/donna_c64/libsodium_la-smult_curve25519_donna_c64.lo `test -f 'crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c
3242
-
3243
- crypto_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo: crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c
3244
- @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_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-base_curve25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c
3245
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-base_curve25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-base_curve25519_ref10.Plo
3246
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
3247
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3248
- @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_scalarmult/curve25519/ref10/libsodium_la-base_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c
3246
+ @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_scalarmult/curve25519/ref10/libsodium_la-curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/curve25519_ref10.c
3249
3247
 
3250
3248
  crypto_scalarmult/curve25519/ref10/libsodium_la-fe_0_curve25519_ref10.lo: crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c
3251
3249
  @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_scalarmult/curve25519/ref10/libsodium_la-fe_0_curve25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-fe_0_curve25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-fe_0_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c
@@ -3331,12 +3329,26 @@ crypto_scalarmult/curve25519/ref10/libsodium_la-fe_tobytes_curve25519_ref10.lo:
3331
3329
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3332
3330
  @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_scalarmult/curve25519/ref10/libsodium_la-fe_tobytes_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c
3333
3331
 
3334
- crypto_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo: crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c
3335
- @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_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_curve25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c
3336
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_curve25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_curve25519_ref10.Plo
3337
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
3332
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c
3333
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c
3334
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Plo
3335
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo' libtool=yes @AMDEPBACKSLASH@
3336
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3337
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c
3338
+
3339
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo: crypto_scalarmult/curve25519/sandy2x/fe51_invert.c
3340
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe51_invert.c
3341
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Plo
3342
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo' libtool=yes @AMDEPBACKSLASH@
3338
3343
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3339
- @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_scalarmult/curve25519/ref10/libsodium_la-scalarmult_curve25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c
3344
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe51_invert.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe51_invert.c
3345
+
3346
+ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo: crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c
3347
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo -MD -MP -MF crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Tpo -c -o crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c
3348
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Tpo crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Plo
3349
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' object='crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo' libtool=yes @AMDEPBACKSLASH@
3350
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3351
+ @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_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo `test -f 'crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c
3340
3352
 
3341
3353
  crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo: crypto_stream/salsa20/ref/stream_salsa20_ref.c
3342
3354
  @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/salsa20/ref/libsodium_la-stream_salsa20_ref.lo -MD -MP -MF crypto_stream/salsa20/ref/$(DEPDIR)/libsodium_la-stream_salsa20_ref.Tpo -c -o crypto_stream/salsa20/ref/libsodium_la-stream_salsa20_ref.lo `test -f 'crypto_stream/salsa20/ref/stream_salsa20_ref.c' || echo '$(srcdir)/'`crypto_stream/salsa20/ref/stream_salsa20_ref.c
@@ -3380,40 +3392,12 @@ crypto_core/salsa208/libsodium_la-core_salsa208_api.lo: crypto_core/salsa208/cor
3380
3392
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3381
3393
  @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/salsa208/libsodium_la-core_salsa208_api.lo `test -f 'crypto_core/salsa208/core_salsa208_api.c' || echo '$(srcdir)/'`crypto_core/salsa208/core_salsa208_api.c
3382
3394
 
3383
- crypto_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo: crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c
3384
- @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_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo -MD -MP -MF crypto_sign/edwards25519sha512batch/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch_api.Tpo -c -o crypto_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo `test -f 'crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c
3385
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/edwards25519sha512batch/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch_api.Tpo crypto_sign/edwards25519sha512batch/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch_api.Plo
3386
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c' object='crypto_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo' libtool=yes @AMDEPBACKSLASH@
3387
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3388
- @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_sign/edwards25519sha512batch/libsodium_la-sign_edwards25519sha512batch_api.lo `test -f 'crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c
3389
-
3390
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo: crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c
3391
- @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_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo -MD -MP -MF crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-fe25519_edwards25519sha512batch.Tpo -c -o crypto_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c
3392
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-fe25519_edwards25519sha512batch.Tpo crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-fe25519_edwards25519sha512batch.Plo
3393
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c' object='crypto_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo' libtool=yes @AMDEPBACKSLASH@
3394
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3395
- @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_sign/edwards25519sha512batch/ref/libsodium_la-fe25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c
3396
-
3397
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo: crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c
3398
- @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_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo -MD -MP -MF crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-ge25519_edwards25519sha512batch.Tpo -c -o crypto_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c
3399
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-ge25519_edwards25519sha512batch.Tpo crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-ge25519_edwards25519sha512batch.Plo
3400
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c' object='crypto_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo' libtool=yes @AMDEPBACKSLASH@
3401
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3402
- @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_sign/edwards25519sha512batch/ref/libsodium_la-ge25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c
3403
-
3404
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo: crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c
3405
- @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_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo -MD -MP -MF crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sc25519_edwards25519sha512batch.Tpo -c -o crypto_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c
3406
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sc25519_edwards25519sha512batch.Tpo crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sc25519_edwards25519sha512batch.Plo
3407
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c' object='crypto_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo' libtool=yes @AMDEPBACKSLASH@
3408
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3409
- @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_sign/edwards25519sha512batch/ref/libsodium_la-sc25519_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c
3410
-
3411
- crypto_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo: crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c
3412
- @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_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo -MD -MP -MF crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch.Tpo -c -o crypto_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c
3413
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch.Tpo crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/libsodium_la-sign_edwards25519sha512batch.Plo
3414
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c' object='crypto_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo' libtool=yes @AMDEPBACKSLASH@
3395
+ crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo: crypto_sign/ed25519/ref10/obsolete.c
3396
+ @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_sign/ed25519/ref10/libsodium_la-obsolete.lo -MD -MP -MF crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-obsolete.Tpo -c -o crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo `test -f 'crypto_sign/ed25519/ref10/obsolete.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/obsolete.c
3397
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-obsolete.Tpo crypto_sign/ed25519/ref10/$(DEPDIR)/libsodium_la-obsolete.Plo
3398
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_sign/ed25519/ref10/obsolete.c' object='crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo' libtool=yes @AMDEPBACKSLASH@
3415
3399
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3416
- @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_sign/edwards25519sha512batch/ref/libsodium_la-sign_edwards25519sha512batch.lo `test -f 'crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c' || echo '$(srcdir)/'`crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c
3400
+ @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_sign/ed25519/ref10/libsodium_la-obsolete.lo `test -f 'crypto_sign/ed25519/ref10/obsolete.c' || echo '$(srcdir)/'`crypto_sign/ed25519/ref10/obsolete.c
3417
3401
 
3418
3402
  crypto_stream/aes128ctr/portable/libsodium_la-afternm_aes128ctr.lo: crypto_stream/aes128ctr/portable/afternm_aes128ctr.c
3419
3403
  @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-afternm_aes128ctr.lo -MD -MP -MF crypto_stream/aes128ctr/portable/$(DEPDIR)/libsodium_la-afternm_aes128ctr.Tpo -c -o crypto_stream/aes128ctr/portable/libsodium_la-afternm_aes128ctr.lo `test -f 'crypto_stream/aes128ctr/portable/afternm_aes128ctr.c' || echo '$(srcdir)/'`crypto_stream/aes128ctr/portable/afternm_aes128ctr.c
@@ -3520,6 +3504,13 @@ crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_ss
3520
3504
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3521
3505
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
3522
3506
 
3507
+ crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c
3508
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo -MD -MP -MF crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Tpo -c -o crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo `test -f 'crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c
3509
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Tpo crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/libsse2_la-poly1305_sse2.Plo
3510
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' object='crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo' libtool=yes @AMDEPBACKSLASH@
3511
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3512
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo `test -f 'crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c' || echo '$(srcdir)/'`crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c
3513
+
3523
3514
  crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo: crypto_generichash/blake2/ref/blake2b-compress-sse41.c
3524
3515
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsse41_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo -MD -MP -MF crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo -c -o crypto_generichash/blake2/ref/libsse41_la-blake2b-compress-sse41.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-sse41.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-sse41.c
3525
3516
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Tpo crypto_generichash/blake2/ref/$(DEPDIR)/libsse41_la-blake2b-compress-sse41.Plo
@@ -3534,6 +3525,13 @@ crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo: crypto_gene
3534
3525
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3535
3526
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libssse3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_generichash/blake2/ref/libssse3_la-blake2b-compress-ssse3.lo `test -f 'crypto_generichash/blake2/ref/blake2b-compress-ssse3.c' || echo '$(srcdir)/'`crypto_generichash/blake2/ref/blake2b-compress-ssse3.c
3536
3527
 
3528
+ crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo: crypto_stream/chacha20/vec/stream_chacha20_vec.c
3529
+ @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
3530
+ @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
3531
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_stream/chacha20/vec/stream_chacha20_vec.c' object='crypto_stream/chacha20/vec/libssse3_la-stream_chacha20_vec.lo' libtool=yes @AMDEPBACKSLASH@
3532
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3533
+ @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_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
3534
+
3537
3535
  mostlyclean-libtool:
3538
3536
  -rm -f *.lo
3539
3537
 
@@ -3570,6 +3568,7 @@ clean-libtool:
3570
3568
  -rm -rf crypto_onetimeauth/.libs crypto_onetimeauth/_libs
3571
3569
  -rm -rf crypto_onetimeauth/poly1305/.libs crypto_onetimeauth/poly1305/_libs
3572
3570
  -rm -rf crypto_onetimeauth/poly1305/donna/.libs crypto_onetimeauth/poly1305/donna/_libs
3571
+ -rm -rf crypto_onetimeauth/poly1305/sse2/.libs crypto_onetimeauth/poly1305/sse2/_libs
3573
3572
  -rm -rf crypto_pwhash/scryptsalsa208sha256/.libs crypto_pwhash/scryptsalsa208sha256/_libs
3574
3573
  -rm -rf crypto_pwhash/scryptsalsa208sha256/nosse/.libs crypto_pwhash/scryptsalsa208sha256/nosse/_libs
3575
3574
  -rm -rf crypto_pwhash/scryptsalsa208sha256/sse/.libs crypto_pwhash/scryptsalsa208sha256/sse/_libs
@@ -3577,6 +3576,7 @@ clean-libtool:
3577
3576
  -rm -rf crypto_scalarmult/curve25519/.libs crypto_scalarmult/curve25519/_libs
3578
3577
  -rm -rf crypto_scalarmult/curve25519/donna_c64/.libs crypto_scalarmult/curve25519/donna_c64/_libs
3579
3578
  -rm -rf crypto_scalarmult/curve25519/ref10/.libs crypto_scalarmult/curve25519/ref10/_libs
3579
+ -rm -rf crypto_scalarmult/curve25519/sandy2x/.libs crypto_scalarmult/curve25519/sandy2x/_libs
3580
3580
  -rm -rf crypto_secretbox/.libs crypto_secretbox/_libs
3581
3581
  -rm -rf crypto_secretbox/xsalsa20poly1305/.libs crypto_secretbox/xsalsa20poly1305/_libs
3582
3582
  -rm -rf crypto_secretbox/xsalsa20poly1305/ref/.libs crypto_secretbox/xsalsa20poly1305/ref/_libs
@@ -3586,13 +3586,12 @@ clean-libtool:
3586
3586
  -rm -rf crypto_sign/.libs crypto_sign/_libs
3587
3587
  -rm -rf crypto_sign/ed25519/.libs crypto_sign/ed25519/_libs
3588
3588
  -rm -rf crypto_sign/ed25519/ref10/.libs crypto_sign/ed25519/ref10/_libs
3589
- -rm -rf crypto_sign/edwards25519sha512batch/.libs crypto_sign/edwards25519sha512batch/_libs
3590
- -rm -rf crypto_sign/edwards25519sha512batch/ref/.libs crypto_sign/edwards25519sha512batch/ref/_libs
3591
3589
  -rm -rf crypto_stream/.libs crypto_stream/_libs
3592
3590
  -rm -rf crypto_stream/aes128ctr/.libs crypto_stream/aes128ctr/_libs
3593
3591
  -rm -rf crypto_stream/aes128ctr/portable/.libs crypto_stream/aes128ctr/portable/_libs
3594
3592
  -rm -rf crypto_stream/chacha20/.libs crypto_stream/chacha20/_libs
3595
3593
  -rm -rf crypto_stream/chacha20/ref/.libs crypto_stream/chacha20/ref/_libs
3594
+ -rm -rf crypto_stream/chacha20/vec/.libs crypto_stream/chacha20/vec/_libs
3596
3595
  -rm -rf crypto_stream/salsa20/.libs crypto_stream/salsa20/_libs
3597
3596
  -rm -rf crypto_stream/salsa20/amd64_xmm6/.libs crypto_stream/salsa20/amd64_xmm6/_libs
3598
3597
  -rm -rf crypto_stream/salsa20/ref/.libs crypto_stream/salsa20/ref/_libs
@@ -3791,7 +3790,7 @@ distdir: $(DISTFILES)
3791
3790
  done
3792
3791
  check-am: all-am
3793
3792
  check: check-recursive
3794
- all-am: Makefile $(LTLIBRARIES) $(DATA)
3793
+ all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
3795
3794
  installdirs: installdirs-recursive
3796
3795
  installdirs-am:
3797
3796
  for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(defexecdir)"; do \
@@ -3886,6 +3885,8 @@ distclean-generic:
3886
3885
  -rm -f crypto_onetimeauth/poly1305/$(am__dirstamp)
3887
3886
  -rm -f crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp)
3888
3887
  -rm -f crypto_onetimeauth/poly1305/donna/$(am__dirstamp)
3888
+ -rm -f crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp)
3889
+ -rm -f crypto_onetimeauth/poly1305/sse2/$(am__dirstamp)
3889
3890
  -rm -f crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp)
3890
3891
  -rm -f crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp)
3891
3892
  -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp)
@@ -3900,6 +3901,8 @@ distclean-generic:
3900
3901
  -rm -f crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp)
3901
3902
  -rm -f crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
3902
3903
  -rm -f crypto_scalarmult/curve25519/ref10/$(am__dirstamp)
3904
+ -rm -f crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
3905
+ -rm -f crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp)
3903
3906
  -rm -f crypto_secretbox/$(DEPDIR)/$(am__dirstamp)
3904
3907
  -rm -f crypto_secretbox/$(am__dirstamp)
3905
3908
  -rm -f crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp)
@@ -3918,10 +3921,6 @@ distclean-generic:
3918
3921
  -rm -f crypto_sign/ed25519/$(am__dirstamp)
3919
3922
  -rm -f crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
3920
3923
  -rm -f crypto_sign/ed25519/ref10/$(am__dirstamp)
3921
- -rm -f crypto_sign/edwards25519sha512batch/$(DEPDIR)/$(am__dirstamp)
3922
- -rm -f crypto_sign/edwards25519sha512batch/$(am__dirstamp)
3923
- -rm -f crypto_sign/edwards25519sha512batch/ref/$(DEPDIR)/$(am__dirstamp)
3924
- -rm -f crypto_sign/edwards25519sha512batch/ref/$(am__dirstamp)
3925
3924
  -rm -f crypto_stream/$(DEPDIR)/$(am__dirstamp)
3926
3925
  -rm -f crypto_stream/$(am__dirstamp)
3927
3926
  -rm -f crypto_stream/aes128ctr/$(DEPDIR)/$(am__dirstamp)
@@ -3932,6 +3931,8 @@ distclean-generic:
3932
3931
  -rm -f crypto_stream/chacha20/$(am__dirstamp)
3933
3932
  -rm -f crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp)
3934
3933
  -rm -f crypto_stream/chacha20/ref/$(am__dirstamp)
3934
+ -rm -f crypto_stream/chacha20/vec/$(DEPDIR)/$(am__dirstamp)
3935
+ -rm -f crypto_stream/chacha20/vec/$(am__dirstamp)
3935
3936
  -rm -f crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp)
3936
3937
  -rm -f crypto_stream/salsa20/$(am__dirstamp)
3937
3938
  -rm -f crypto_stream/salsa20/amd64_xmm6/$(DEPDIR)/$(am__dirstamp)
@@ -3982,7 +3983,7 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
3982
3983
  clean-noinstLTLIBRARIES mostlyclean-am
3983
3984
 
3984
3985
  distclean: distclean-recursive
3985
- -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/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_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_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_sign/edwards25519sha512batch/$(DEPDIR) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(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)
3986
+ -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/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)
3986
3987
  -rm -f Makefile
3987
3988
  distclean-am: clean-am distclean-compile distclean-generic \
3988
3989
  distclean-tags
@@ -4028,7 +4029,7 @@ install-ps-am:
4028
4029
  installcheck-am:
4029
4030
 
4030
4031
  maintainer-clean: maintainer-clean-recursive
4031
- -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/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_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_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_sign/edwards25519sha512batch/$(DEPDIR) crypto_sign/edwards25519sha512batch/ref/$(DEPDIR) crypto_stream/$(DEPDIR) crypto_stream/aes128ctr/$(DEPDIR) crypto_stream/aes128ctr/portable/$(DEPDIR) crypto_stream/chacha20/$(DEPDIR) crypto_stream/chacha20/ref/$(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)
4032
+ -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/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)
4032
4033
  -rm -f Makefile
4033
4034
  maintainer-clean-am: distclean-am maintainer-clean-generic
4034
4035