rbnacl-libsodium 1.0.15.1 → 1.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +4 -6
  3. data/CHANGES.md +50 -42
  4. data/Gemfile +1 -1
  5. data/README.md +3 -1
  6. data/Rakefile +46 -0
  7. data/ext/rbnacl/extconf.rb +16 -1
  8. data/lib/rbnacl/libsodium.rb +16 -8
  9. data/lib/rbnacl/libsodium/version.rb +1 -1
  10. data/rbnacl-libsodium.gemspec +3 -0
  11. data/vendor/libsodium/AUTHORS +20 -5
  12. data/vendor/libsodium/ChangeLog +25 -0
  13. data/vendor/libsodium/Makefile.in +3 -1
  14. data/vendor/libsodium/README.markdown +2 -1
  15. data/vendor/libsodium/aclocal.m4 +1 -0
  16. data/vendor/libsodium/autom4te.cache/output.1 +836 -123
  17. data/vendor/libsodium/autom4te.cache/output.4 +21342 -0
  18. data/vendor/libsodium/autom4te.cache/requests +801 -554
  19. data/vendor/libsodium/autom4te.cache/traces.1 +717 -596
  20. data/vendor/libsodium/autom4te.cache/traces.4 +4355 -0
  21. data/vendor/libsodium/builds/Makefile.in +3 -1
  22. data/vendor/libsodium/builds/msvc/resource.h +1 -1
  23. data/vendor/libsodium/builds/msvc/resource.rc +2 -2
  24. data/vendor/libsodium/builds/msvc/version.h +2 -2
  25. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +17 -8
  26. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +60 -24
  27. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +17 -8
  28. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +60 -24
  29. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +17 -8
  30. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +60 -24
  31. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +17 -8
  32. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +60 -24
  33. data/vendor/libsodium/builds/msvc/vs2017/libsodium/libsodium.vcxproj +17 -8
  34. data/vendor/libsodium/builds/msvc/vs2017/libsodium/libsodium.vcxproj.filters +60 -24
  35. data/vendor/libsodium/configure +834 -121
  36. data/vendor/libsodium/configure.ac +55 -13
  37. data/vendor/libsodium/contrib/Findsodium.cmake +22 -3
  38. data/vendor/libsodium/contrib/Makefile.in +3 -1
  39. data/vendor/libsodium/dist-build/Makefile.in +3 -1
  40. data/vendor/libsodium/dist-build/android-build.sh +2 -2
  41. data/vendor/libsodium/dist-build/emscripten-symbols.def +38 -26
  42. data/vendor/libsodium/dist-build/emscripten.sh +23 -8
  43. data/vendor/libsodium/dist-build/msys2-win32.sh +1 -1
  44. data/vendor/libsodium/dist-build/msys2-win64.sh +1 -1
  45. data/vendor/libsodium/libsodium.vcxproj +17 -8
  46. data/vendor/libsodium/libsodium.vcxproj.filters +41 -14
  47. data/vendor/libsodium/m4/ax_tls.m4 +74 -0
  48. data/vendor/libsodium/msvc-scripts/Makefile.in +3 -1
  49. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  50. data/vendor/libsodium/packaging/dotnet-core/README.md +5 -5
  51. data/vendor/libsodium/packaging/dotnet-core/prepare.py +7 -7
  52. data/vendor/libsodium/packaging/nuget/package.config +1 -1
  53. data/vendor/libsodium/regen-msvc/libsodium.vcxproj +326 -0
  54. data/vendor/libsodium/regen-msvc/libsodium.vcxproj.filters +23 -0
  55. data/vendor/libsodium/regen-msvc/libsodium.vcxproj.filters.tpl +35 -0
  56. data/vendor/libsodium/regen-msvc/libsodium.vcxproj.tpl +93 -0
  57. data/vendor/libsodium/regen-msvc/regen-msvc.py +136 -0
  58. data/vendor/libsodium/regen-msvc/tl_libsodium.vcxproj.filters.tpl +23 -0
  59. data/vendor/libsodium/regen-msvc/tl_libsodium.vcxproj.tpl +331 -0
  60. data/vendor/libsodium/src/Makefile.in +3 -1
  61. data/vendor/libsodium/src/libsodium/Makefile.am +40 -24
  62. data/vendor/libsodium/src/libsodium/Makefile.in +238 -180
  63. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +10 -2
  64. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/core_ed25519.c +79 -0
  65. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c +2031 -0
  66. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/base.h +1344 -0
  67. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/base2.h +40 -0
  68. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/constants.h +20 -0
  69. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/fe.h +220 -0
  70. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/base.h +1344 -0
  71. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/base2.h +40 -0
  72. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/constants.h +21 -0
  73. data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/fe.h +116 -0
  74. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2.h +1 -1
  75. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c +2 -1
  76. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c +14 -82
  77. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c +1 -0
  78. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c +3 -3
  79. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c +3 -3
  80. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +1 -7
  81. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +1 -0
  82. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +0 -6
  83. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c +19 -92
  84. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h +72 -4
  85. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c +5 -1
  86. data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.h +1 -1
  87. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +10 -7
  88. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c +108 -231
  89. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.h +1 -1
  90. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +27 -27
  91. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +2 -1
  92. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +6 -3
  93. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c +3 -11
  94. data/vendor/libsodium/src/libsodium/crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c +86 -0
  95. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +28 -26
  96. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +32 -30
  97. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +14 -115
  98. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +56 -13
  99. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/{ed25519_ref10.h → sign_ed25519_ref10.h} +2 -5
  100. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c +1 -1
  101. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c +1 -0
  102. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c +1 -0
  103. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/u8.h +1 -1
  104. data/vendor/libsodium/src/libsodium/include/Makefile.am +2 -0
  105. data/vendor/libsodium/src/libsodium/include/Makefile.in +13 -9
  106. data/vendor/libsodium/src/libsodium/include/sodium.h +2 -0
  107. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_ed25519.h +37 -0
  108. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +8 -0
  109. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h +8 -0
  110. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_ed25519.h +41 -0
  111. data/vendor/libsodium/src/libsodium/include/sodium/private/common.h +18 -0
  112. data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10.h +125 -0
  113. data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10_fe_25_5.h +1050 -0
  114. data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10_fe_51.h +518 -0
  115. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
  116. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +3 -0
  117. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +182 -102
  118. data/vendor/libsodium/src/libsodium/sodium/core.c +30 -2
  119. data/vendor/libsodium/src/libsodium/sodium/runtime.c +14 -0
  120. data/vendor/libsodium/src/libsodium/sodium/utils.c +46 -0
  121. data/vendor/libsodium/test/Makefile.in +3 -1
  122. data/vendor/libsodium/test/default/Makefile.am +16 -0
  123. data/vendor/libsodium/test/default/Makefile.in +71 -23
  124. data/vendor/libsodium/test/default/aead_aes256gcm.c +1 -1
  125. data/vendor/libsodium/test/default/cmptest.h +4 -0
  126. data/vendor/libsodium/test/default/core3.c +44 -4
  127. data/vendor/libsodium/test/default/core3.exp +2 -0
  128. data/vendor/libsodium/test/default/core4.c +1 -1
  129. data/vendor/libsodium/test/default/core_ed25519.c +151 -0
  130. data/vendor/libsodium/test/default/core_ed25519.exp +1 -0
  131. data/vendor/libsodium/test/default/ed25519_convert.c +9 -1
  132. data/vendor/libsodium/test/default/index.html.tpl +17 -3
  133. data/vendor/libsodium/test/default/kdf.c +4 -2
  134. data/vendor/libsodium/test/default/metamorphic.c +8 -8
  135. data/vendor/libsodium/test/default/misuse.c +29 -1
  136. data/vendor/libsodium/test/default/pwhash_argon2i.c +9 -3
  137. data/vendor/libsodium/test/default/pwhash_argon2i.exp +2 -2
  138. data/vendor/libsodium/test/default/pwhash_argon2id.c +7 -2
  139. data/vendor/libsodium/test/default/pwhash_argon2id.exp +2 -2
  140. data/vendor/libsodium/test/default/scalarmult.c +0 -2
  141. data/vendor/libsodium/test/default/scalarmult.exp +0 -1
  142. data/vendor/libsodium/test/default/scalarmult_ed25519.c +90 -0
  143. data/vendor/libsodium/test/default/scalarmult_ed25519.exp +1 -0
  144. data/vendor/libsodium/test/default/secretbox_easy2.c +1 -1
  145. data/vendor/libsodium/test/default/secretstream.c +52 -3
  146. data/vendor/libsodium/test/default/sign.c +16 -0
  147. data/vendor/libsodium/test/default/sodium_core.c +1 -0
  148. data/vendor/libsodium/test/default/sodium_utils.c +2 -1
  149. data/vendor/libsodium/test/default/xchacha20.c +2 -1
  150. metadata +63 -12
  151. data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/base.h +0 -1344
  152. data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/base2.h +0 -40
  153. data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +0 -2797
  154. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c +0 -545
  155. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +0 -10
  156. data/vendor/libsodium/src/libsodium/include/sodium/private/curve25519_ref10.h +0 -132
  157. data/vendor/libsodium/test/default/index-wasm.html.tpl +0 -118
@@ -94,7 +94,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_catchable_abrt.m4 \
94
94
  $(top_srcdir)/m4/ax_check_compile_flag.m4 \
95
95
  $(top_srcdir)/m4/ax_check_define.m4 \
96
96
  $(top_srcdir)/m4/ax_check_link_flag.m4 \
97
- $(top_srcdir)/m4/ax_pthread.m4 \
97
+ $(top_srcdir)/m4/ax_pthread.m4 $(top_srcdir)/m4/ax_tls.m4 \
98
98
  $(top_srcdir)/m4/ax_valgrind_check.m4 \
99
99
  $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
100
100
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
@@ -189,6 +189,7 @@ am__relativize = \
189
189
  done; \
190
190
  reldir="$$dir2"
191
191
  ACLOCAL = @ACLOCAL@
192
+ ALLOCA = @ALLOCA@
192
193
  AMTAR = @AMTAR@
193
194
  AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
194
195
  AR = @AR@
@@ -209,6 +210,7 @@ CFLAGS_AVX2 = @CFLAGS_AVX2@
209
210
  CFLAGS_AVX512F = @CFLAGS_AVX512F@
210
211
  CFLAGS_MMX = @CFLAGS_MMX@
211
212
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
213
+ CFLAGS_RDRAND = @CFLAGS_RDRAND@
212
214
  CFLAGS_SSE2 = @CFLAGS_SSE2@
213
215
  CFLAGS_SSE3 = @CFLAGS_SSE3@
214
216
  CFLAGS_SSE41 = @CFLAGS_SSE41@
@@ -12,9 +12,7 @@ libsodium_la_SOURCES = \
12
12
  crypto_box/crypto_box_easy.c \
13
13
  crypto_box/crypto_box_seal.c \
14
14
  crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \
15
- crypto_core/curve25519/ref10/base.h \
16
- crypto_core/curve25519/ref10/base2.h \
17
- crypto_core/curve25519/ref10/curve25519_ref10.c \
15
+ crypto_core/ed25519/ref10/ed25519_ref10.c \
18
16
  crypto_core/hchacha20/core_hchacha20.c \
19
17
  crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
20
18
  crypto_core/hsalsa20/core_hsalsa20.c \
@@ -57,6 +55,8 @@ libsodium_la_SOURCES = \
57
55
  crypto_pwhash/argon2/pwhash_argon2id.c \
58
56
  crypto_pwhash/crypto_pwhash.c \
59
57
  crypto_scalarmult/crypto_scalarmult.c \
58
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
59
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.h \
60
60
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
61
61
  crypto_scalarmult/curve25519/scalarmult_curve25519.h \
62
62
  crypto_secretbox/crypto_secretbox.c \
@@ -69,10 +69,10 @@ libsodium_la_SOURCES = \
69
69
  crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \
70
70
  crypto_sign/crypto_sign.c \
71
71
  crypto_sign/ed25519/sign_ed25519.c \
72
- crypto_sign/ed25519/ref10/ed25519_ref10.h \
73
72
  crypto_sign/ed25519/ref10/keypair.c \
74
73
  crypto_sign/ed25519/ref10/open.c \
75
74
  crypto_sign/ed25519/ref10/sign.c \
75
+ crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \
76
76
  crypto_stream/chacha20/stream_chacha20.c \
77
77
  crypto_stream/chacha20/stream_chacha20.h \
78
78
  crypto_stream/chacha20/ref/chacha20_ref.h \
@@ -83,7 +83,7 @@ libsodium_la_SOURCES = \
83
83
  crypto_stream/xsalsa20/stream_xsalsa20.c \
84
84
  crypto_verify/sodium/verify.c \
85
85
  include/sodium/private/common.h \
86
- include/sodium/private/curve25519_ref10.h \
86
+ include/sodium/private/ed25519_ref10.h \
87
87
  include/sodium/private/implementations.h \
88
88
  include/sodium/private/mutex.h \
89
89
  include/sodium/private/sse2_64_32.h \
@@ -94,28 +94,20 @@ libsodium_la_SOURCES = \
94
94
  sodium/utils.c \
95
95
  sodium/version.c
96
96
 
97
- if !EMSCRIPTEN
98
- libsodium_la_SOURCES += \
99
- randombytes/salsa20/randombytes_salsa20_random.c
100
-
101
- if NATIVECLIENT
102
- libsodium_la_SOURCES += \
103
- randombytes/nativeclient/randombytes_nativeclient.c
104
- else
105
- libsodium_la_SOURCES += \
106
- randombytes/sysrandom/randombytes_sysrandom.c
107
- endif
108
-
109
- endif
110
-
111
97
  if HAVE_TI_MODE
112
98
  libsodium_la_SOURCES += \
113
- crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c \
114
- crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h
99
+ crypto_core/ed25519/ref10/fe_51/base.h \
100
+ crypto_core/ed25519/ref10/fe_51/base2.h \
101
+ crypto_core/ed25519/ref10/fe_51/constants.h \
102
+ crypto_core/ed25519/ref10/fe_51/fe.h \
103
+ include/sodium/private/ed25519_ref10_fe_51.h
115
104
  else
116
105
  libsodium_la_SOURCES += \
117
- crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
118
- crypto_scalarmult/curve25519/ref10/x25519_ref10.h
106
+ crypto_core/ed25519/ref10/fe_25_5/base.h \
107
+ crypto_core/ed25519/ref10/fe_25_5/base2.h \
108
+ crypto_core/ed25519/ref10/fe_25_5/constants.h \
109
+ crypto_core/ed25519/ref10/fe_25_5/fe.h \
110
+ include/sodium/private/ed25519_ref10_fe_25_5.h
119
111
  endif
120
112
 
121
113
  if HAVE_AMD64_ASM
@@ -158,6 +150,7 @@ if !MINIMAL
158
150
  libsodium_la_SOURCES += \
159
151
  crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \
160
152
  crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \
153
+ crypto_core/ed25519/core_ed25519.c \
161
154
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
162
155
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
163
156
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -165,6 +158,7 @@ libsodium_la_SOURCES += \
165
158
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
166
159
  crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
167
160
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
161
+ crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \
168
162
  crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
169
163
  crypto_shorthash/siphash24/shorthash_siphashx24.c \
170
164
  crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \
@@ -176,6 +170,8 @@ libsodium_la_SOURCES += \
176
170
  crypto_stream/xchacha20/stream_xchacha20.c
177
171
  endif
178
172
 
173
+ randombytes_salsa20_randombytes_salsa20_random_CFLAGS = @CFLAGS_RDRAND@
174
+
179
175
  libsodium_la_LDFLAGS = \
180
176
  $(AM_LDFLAGS) \
181
177
  -export-dynamic \
@@ -199,7 +195,27 @@ SUBDIRS = \
199
195
  include
200
196
 
201
197
  libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
202
- noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
198
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
199
+
200
+ librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
201
+ librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
202
+ @CFLAGS_RDRAND@
203
+ librdrand_la_SOURCES = \
204
+ randombytes/salsa20/randombytes_salsa20_random.c
205
+
206
+ if !EMSCRIPTEN
207
+ libsodium_la_LIBADD += librdrand.la
208
+ noinst_LTLIBRARIES += librdrand.la
209
+
210
+ if NATIVECLIENT
211
+ libsodium_la_SOURCES += \
212
+ randombytes/nativeclient/randombytes_nativeclient.c
213
+ else
214
+ libsodium_la_SOURCES += \
215
+ randombytes/sysrandom/randombytes_sysrandom.c
216
+ endif
217
+
218
+ endif
203
219
 
204
220
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
205
221
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
@@ -90,33 +90,30 @@ PRE_UNINSTALL = :
90
90
  POST_UNINSTALL = :
91
91
  build_triplet = @build@
92
92
  host_triplet = @host@
93
- @EMSCRIPTEN_FALSE@am__append_1 = \
94
- @EMSCRIPTEN_FALSE@ randombytes/salsa20/randombytes_salsa20_random.c
95
-
96
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@am__append_2 = \
97
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@ randombytes/nativeclient/randombytes_nativeclient.c
98
-
99
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__append_3 = \
100
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c
101
-
102
- @HAVE_TI_MODE_TRUE@am__append_4 = \
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
-
106
- @HAVE_TI_MODE_FALSE@am__append_5 = \
107
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
108
- @HAVE_TI_MODE_FALSE@ crypto_scalarmult/curve25519/ref10/x25519_ref10.h
109
-
110
- @HAVE_AMD64_ASM_TRUE@am__append_6 = \
93
+ @HAVE_TI_MODE_TRUE@am__append_1 = \
94
+ @HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/base.h \
95
+ @HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/base2.h \
96
+ @HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/constants.h \
97
+ @HAVE_TI_MODE_TRUE@ crypto_core/ed25519/ref10/fe_51/fe.h \
98
+ @HAVE_TI_MODE_TRUE@ include/sodium/private/ed25519_ref10_fe_51.h
99
+
100
+ @HAVE_TI_MODE_FALSE@am__append_2 = \
101
+ @HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/base.h \
102
+ @HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/base2.h \
103
+ @HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/constants.h \
104
+ @HAVE_TI_MODE_FALSE@ crypto_core/ed25519/ref10/fe_25_5/fe.h \
105
+ @HAVE_TI_MODE_FALSE@ include/sodium/private/ed25519_ref10_fe_25_5.h
106
+
107
+ @HAVE_AMD64_ASM_TRUE@am__append_3 = \
111
108
  @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S \
112
109
  @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6.c \
113
110
  @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/salsa20_xmm6.h
114
111
 
115
- @HAVE_AMD64_ASM_FALSE@am__append_7 = \
112
+ @HAVE_AMD64_ASM_FALSE@am__append_4 = \
116
113
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/salsa20_ref.c \
117
114
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/ref/salsa20_ref.h
118
115
 
119
- @HAVE_AVX_ASM_TRUE@am__append_8 = \
116
+ @HAVE_AVX_ASM_TRUE@am__append_5 = \
120
117
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/consts_namespace.h \
121
118
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c \
122
119
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h \
@@ -131,9 +128,10 @@ host_triplet = @host@
131
128
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h \
132
129
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/sandy2x.S
133
130
 
134
- @MINIMAL_FALSE@am__append_9 = \
131
+ @MINIMAL_FALSE@am__append_6 = \
135
132
  @MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \
136
133
  @MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \
134
+ @MINIMAL_FALSE@ crypto_core/ed25519/core_ed25519.c \
137
135
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
138
136
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
139
137
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -141,6 +139,7 @@ host_triplet = @host@
141
139
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
142
140
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
143
141
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
142
+ @MINIMAL_FALSE@ crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \
144
143
  @MINIMAL_FALSE@ crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
145
144
  @MINIMAL_FALSE@ crypto_shorthash/siphash24/shorthash_siphashx24.c \
146
145
  @MINIMAL_FALSE@ crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \
@@ -151,11 +150,19 @@ host_triplet = @host@
151
150
  @MINIMAL_FALSE@ crypto_stream/salsa208/stream_salsa208.c \
152
151
  @MINIMAL_FALSE@ crypto_stream/xchacha20/stream_xchacha20.c
153
152
 
154
- @HAVE_LD_OUTPUT_DEF_TRUE@am__append_10 = -Wl,--output-def,libsodium-$(DLL_VERSION).def
155
- @MINIMAL_FALSE@am__append_11 = \
153
+ @HAVE_LD_OUTPUT_DEF_TRUE@am__append_7 = -Wl,--output-def,libsodium-$(DLL_VERSION).def
154
+ @EMSCRIPTEN_FALSE@am__append_8 = librdrand.la
155
+ @EMSCRIPTEN_FALSE@am__append_9 = librdrand.la
156
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@am__append_10 = \
157
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@ randombytes/nativeclient/randombytes_nativeclient.c
158
+
159
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__append_11 = \
160
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@ randombytes/sysrandom/randombytes_sysrandom.c
161
+
162
+ @MINIMAL_FALSE@am__append_12 = \
156
163
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
157
164
 
158
- @HAVE_AMD64_ASM_FALSE@am__append_12 = \
165
+ @HAVE_AMD64_ASM_FALSE@am__append_13 = \
159
166
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c \
160
167
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.h \
161
168
  @HAVE_AMD64_ASM_FALSE@ crypto_stream/salsa20/xmm6int/u0.h \
@@ -169,7 +176,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_catchable_abrt.m4 \
169
176
  $(top_srcdir)/m4/ax_check_compile_flag.m4 \
170
177
  $(top_srcdir)/m4/ax_check_define.m4 \
171
178
  $(top_srcdir)/m4/ax_check_link_flag.m4 \
172
- $(top_srcdir)/m4/ax_pthread.m4 \
179
+ $(top_srcdir)/m4/ax_pthread.m4 $(top_srcdir)/m4/ax_tls.m4 \
173
180
  $(top_srcdir)/m4/ax_valgrind_check.m4 \
174
181
  $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
175
182
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
@@ -237,8 +244,15 @@ libavx512f_la_OBJECTS = $(am_libavx512f_la_OBJECTS)
237
244
  libavx512f_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
238
245
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
239
246
  $(libavx512f_la_LDFLAGS) $(LDFLAGS) -o $@
247
+ librdrand_la_LIBADD =
248
+ am_librdrand_la_OBJECTS = randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo
249
+ librdrand_la_OBJECTS = $(am_librdrand_la_OBJECTS)
250
+ librdrand_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
251
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
252
+ $(librdrand_la_LDFLAGS) $(LDFLAGS) -o $@
253
+ @EMSCRIPTEN_FALSE@am_librdrand_la_rpath =
240
254
  libsodium_la_DEPENDENCIES = libaesni.la libsse2.la libssse3.la \
241
- libsse41.la libavx2.la libavx512f.la
255
+ libsse41.la libavx2.la libavx512f.la $(am__append_8)
242
256
  am__libsodium_la_SOURCES_DIST = \
243
257
  crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
244
258
  crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
@@ -249,9 +263,7 @@ am__libsodium_la_SOURCES_DIST = \
249
263
  crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \
250
264
  crypto_box/crypto_box_seal.c \
251
265
  crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \
252
- crypto_core/curve25519/ref10/base.h \
253
- crypto_core/curve25519/ref10/base2.h \
254
- crypto_core/curve25519/ref10/curve25519_ref10.c \
266
+ crypto_core/ed25519/ref10/ed25519_ref10.c \
255
267
  crypto_core/hchacha20/core_hchacha20.c \
256
268
  crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
257
269
  crypto_core/hsalsa20/core_hsalsa20.c \
@@ -290,6 +302,8 @@ am__libsodium_la_SOURCES_DIST = \
290
302
  crypto_pwhash/argon2/pwhash_argon2id.c \
291
303
  crypto_pwhash/crypto_pwhash.c \
292
304
  crypto_scalarmult/crypto_scalarmult.c \
305
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
306
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.h \
293
307
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
294
308
  crypto_scalarmult/curve25519/scalarmult_curve25519.h \
295
309
  crypto_secretbox/crypto_secretbox.c \
@@ -301,10 +315,10 @@ am__libsodium_la_SOURCES_DIST = \
301
315
  crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \
302
316
  crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \
303
317
  crypto_sign/crypto_sign.c crypto_sign/ed25519/sign_ed25519.c \
304
- crypto_sign/ed25519/ref10/ed25519_ref10.h \
305
318
  crypto_sign/ed25519/ref10/keypair.c \
306
319
  crypto_sign/ed25519/ref10/open.c \
307
320
  crypto_sign/ed25519/ref10/sign.c \
321
+ crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \
308
322
  crypto_stream/chacha20/stream_chacha20.c \
309
323
  crypto_stream/chacha20/stream_chacha20.h \
310
324
  crypto_stream/chacha20/ref/chacha20_ref.h \
@@ -314,19 +328,21 @@ am__libsodium_la_SOURCES_DIST = \
314
328
  crypto_stream/salsa20/stream_salsa20.h \
315
329
  crypto_stream/xsalsa20/stream_xsalsa20.c \
316
330
  crypto_verify/sodium/verify.c include/sodium/private/common.h \
317
- include/sodium/private/curve25519_ref10.h \
331
+ include/sodium/private/ed25519_ref10.h \
318
332
  include/sodium/private/implementations.h \
319
333
  include/sodium/private/mutex.h \
320
334
  include/sodium/private/sse2_64_32.h randombytes/randombytes.c \
321
335
  sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
322
- sodium/version.c \
323
- randombytes/salsa20/randombytes_salsa20_random.c \
324
- randombytes/nativeclient/randombytes_nativeclient.c \
325
- randombytes/sysrandom/randombytes_sysrandom.c \
326
- crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c \
327
- crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h \
328
- crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
329
- crypto_scalarmult/curve25519/ref10/x25519_ref10.h \
336
+ sodium/version.c crypto_core/ed25519/ref10/fe_51/base.h \
337
+ crypto_core/ed25519/ref10/fe_51/base2.h \
338
+ crypto_core/ed25519/ref10/fe_51/constants.h \
339
+ crypto_core/ed25519/ref10/fe_51/fe.h \
340
+ include/sodium/private/ed25519_ref10_fe_51.h \
341
+ crypto_core/ed25519/ref10/fe_25_5/base.h \
342
+ crypto_core/ed25519/ref10/fe_25_5/base2.h \
343
+ crypto_core/ed25519/ref10/fe_25_5/constants.h \
344
+ crypto_core/ed25519/ref10/fe_25_5/fe.h \
345
+ include/sodium/private/ed25519_ref10_fe_25_5.h \
330
346
  crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S \
331
347
  crypto_stream/salsa20/xmm6/salsa20_xmm6.c \
332
348
  crypto_stream/salsa20/xmm6/salsa20_xmm6.h \
@@ -347,6 +363,7 @@ am__libsodium_la_SOURCES_DIST = \
347
363
  crypto_scalarmult/curve25519/sandy2x/sandy2x.S \
348
364
  crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \
349
365
  crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c \
366
+ crypto_core/ed25519/core_ed25519.c \
350
367
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c \
351
368
  crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h \
352
369
  crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c \
@@ -354,6 +371,7 @@ am__libsodium_la_SOURCES_DIST = \
354
371
  crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
355
372
  crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
356
373
  crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
374
+ crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \
357
375
  crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
358
376
  crypto_shorthash/siphash24/shorthash_siphashx24.c \
359
377
  crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \
@@ -362,26 +380,26 @@ am__libsodium_la_SOURCES_DIST = \
362
380
  crypto_stream/salsa2012/stream_salsa2012.c \
363
381
  crypto_stream/salsa208/ref/stream_salsa208_ref.c \
364
382
  crypto_stream/salsa208/stream_salsa208.c \
365
- crypto_stream/xchacha20/stream_xchacha20.c
366
- @EMSCRIPTEN_FALSE@am__objects_1 = randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo
367
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@am__objects_2 = randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo
368
- @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__objects_3 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo
369
- @HAVE_TI_MODE_TRUE@am__objects_4 = crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo
370
- @HAVE_TI_MODE_FALSE@am__objects_5 = crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo
371
- @HAVE_AMD64_ASM_TRUE@am__objects_6 = crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo \
383
+ crypto_stream/xchacha20/stream_xchacha20.c \
384
+ randombytes/nativeclient/randombytes_nativeclient.c \
385
+ randombytes/sysrandom/randombytes_sysrandom.c
386
+ am__objects_1 =
387
+ @HAVE_AMD64_ASM_TRUE@am__objects_2 = crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo \
372
388
  @HAVE_AMD64_ASM_TRUE@ crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo
373
- @HAVE_AMD64_ASM_FALSE@am__objects_7 = crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo
374
- @HAVE_AVX_ASM_TRUE@am__objects_8 = crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo \
389
+ @HAVE_AMD64_ASM_FALSE@am__objects_3 = crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo
390
+ @HAVE_AVX_ASM_TRUE@am__objects_4 = crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo \
375
391
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe51_invert.lo \
376
392
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-fe_frombytes_sandy2x.lo \
377
393
  @HAVE_AVX_ASM_TRUE@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo
378
- @MINIMAL_FALSE@am__objects_9 = crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo \
394
+ @MINIMAL_FALSE@am__objects_5 = crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo \
379
395
  @MINIMAL_FALSE@ crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo \
396
+ @MINIMAL_FALSE@ crypto_core/ed25519/libsodium_la-core_ed25519.lo \
380
397
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo \
381
398
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-scrypt_platform.lo \
382
399
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-pbkdf2-sha256.lo \
383
400
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo \
384
401
  @MINIMAL_FALSE@ crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo \
402
+ @MINIMAL_FALSE@ crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo \
385
403
  @MINIMAL_FALSE@ crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo \
386
404
  @MINIMAL_FALSE@ crypto_shorthash/siphash24/libsodium_la-shorthash_siphashx24.lo \
387
405
  @MINIMAL_FALSE@ crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphashx24_ref.lo \
@@ -391,6 +409,8 @@ am__libsodium_la_SOURCES_DIST = \
391
409
  @MINIMAL_FALSE@ crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo \
392
410
  @MINIMAL_FALSE@ crypto_stream/salsa208/libsodium_la-stream_salsa208.lo \
393
411
  @MINIMAL_FALSE@ crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo
412
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_TRUE@am__objects_6 = randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo
413
+ @EMSCRIPTEN_FALSE@@NATIVECLIENT_FALSE@am__objects_7 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo
394
414
  am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo \
395
415
  crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo \
396
416
  crypto_auth/libsodium_la-crypto_auth.lo \
@@ -401,7 +421,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
401
421
  crypto_box/libsodium_la-crypto_box_easy.lo \
402
422
  crypto_box/libsodium_la-crypto_box_seal.lo \
403
423
  crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo \
404
- crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo \
424
+ crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo \
405
425
  crypto_core/hchacha20/libsodium_la-core_hchacha20.lo \
406
426
  crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo \
407
427
  crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo \
@@ -431,6 +451,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
431
451
  crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo \
432
452
  crypto_pwhash/libsodium_la-crypto_pwhash.lo \
433
453
  crypto_scalarmult/libsodium_la-crypto_scalarmult.lo \
454
+ crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo \
434
455
  crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo \
435
456
  crypto_secretbox/libsodium_la-crypto_secretbox.lo \
436
457
  crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo \
@@ -454,9 +475,9 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
454
475
  sodium/libsodium_la-codecs.lo sodium/libsodium_la-core.lo \
455
476
  sodium/libsodium_la-runtime.lo sodium/libsodium_la-utils.lo \
456
477
  sodium/libsodium_la-version.lo $(am__objects_1) \
457
- $(am__objects_2) $(am__objects_3) $(am__objects_4) \
458
- $(am__objects_5) $(am__objects_6) $(am__objects_7) \
459
- $(am__objects_8) $(am__objects_9)
478
+ $(am__objects_1) $(am__objects_2) $(am__objects_3) \
479
+ $(am__objects_4) $(am__objects_5) $(am__objects_6) \
480
+ $(am__objects_7)
460
481
  libsodium_la_OBJECTS = $(am_libsodium_la_OBJECTS)
461
482
  libsodium_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
462
483
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
@@ -471,11 +492,11 @@ am__libsse2_la_SOURCES_DIST = \
471
492
  crypto_stream/salsa20/xmm6int/u0.h \
472
493
  crypto_stream/salsa20/xmm6int/u1.h \
473
494
  crypto_stream/salsa20/xmm6int/u4.h
474
- @MINIMAL_FALSE@am__objects_10 = crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo
475
- @HAVE_AMD64_ASM_FALSE@am__objects_11 = crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo
495
+ @MINIMAL_FALSE@am__objects_8 = crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo
496
+ @HAVE_AMD64_ASM_FALSE@am__objects_9 = crypto_stream/salsa20/xmm6int/libsse2_la-salsa20_xmm6int-sse2.lo
476
497
  am_libsse2_la_OBJECTS = \
477
498
  crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo \
478
- $(am__objects_10) $(am__objects_11)
499
+ $(am__objects_8) $(am__objects_9)
479
500
  libsse2_la_OBJECTS = $(am_libsse2_la_OBJECTS)
480
501
  libsse2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
481
502
  $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
@@ -539,11 +560,12 @@ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
539
560
  am__v_CCLD_0 = @echo " CCLD " $@;
540
561
  am__v_CCLD_1 =
541
562
  SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
542
- $(libavx512f_la_SOURCES) $(libsodium_la_SOURCES) \
543
- $(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
544
- $(libssse3_la_SOURCES)
563
+ $(libavx512f_la_SOURCES) $(librdrand_la_SOURCES) \
564
+ $(libsodium_la_SOURCES) $(libsse2_la_SOURCES) \
565
+ $(libsse41_la_SOURCES) $(libssse3_la_SOURCES)
545
566
  DIST_SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
546
- $(libavx512f_la_SOURCES) $(am__libsodium_la_SOURCES_DIST) \
567
+ $(libavx512f_la_SOURCES) $(librdrand_la_SOURCES) \
568
+ $(am__libsodium_la_SOURCES_DIST) \
547
569
  $(am__libsse2_la_SOURCES_DIST) $(libsse41_la_SOURCES) \
548
570
  $(libssse3_la_SOURCES)
549
571
  RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
@@ -618,6 +640,7 @@ am__relativize = \
618
640
  done; \
619
641
  reldir="$$dir2"
620
642
  ACLOCAL = @ACLOCAL@
643
+ ALLOCA = @ALLOCA@
621
644
  AMTAR = @AMTAR@
622
645
  AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
623
646
  AR = @AR@
@@ -638,6 +661,7 @@ CFLAGS_AVX2 = @CFLAGS_AVX2@
638
661
  CFLAGS_AVX512F = @CFLAGS_AVX512F@
639
662
  CFLAGS_MMX = @CFLAGS_MMX@
640
663
  CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
664
+ CFLAGS_RDRAND = @CFLAGS_RDRAND@
641
665
  CFLAGS_SSE2 = @CFLAGS_SSE2@
642
666
  CFLAGS_SSE3 = @CFLAGS_SSE3@
643
667
  CFLAGS_SSE41 = @CFLAGS_SSE41@
@@ -787,9 +811,7 @@ libsodium_la_SOURCES = \
787
811
  crypto_box/crypto_box.c crypto_box/crypto_box_easy.c \
788
812
  crypto_box/crypto_box_seal.c \
789
813
  crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c \
790
- crypto_core/curve25519/ref10/base.h \
791
- crypto_core/curve25519/ref10/base2.h \
792
- crypto_core/curve25519/ref10/curve25519_ref10.c \
814
+ crypto_core/ed25519/ref10/ed25519_ref10.c \
793
815
  crypto_core/hchacha20/core_hchacha20.c \
794
816
  crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
795
817
  crypto_core/hsalsa20/core_hsalsa20.c \
@@ -828,6 +850,8 @@ libsodium_la_SOURCES = \
828
850
  crypto_pwhash/argon2/pwhash_argon2id.c \
829
851
  crypto_pwhash/crypto_pwhash.c \
830
852
  crypto_scalarmult/crypto_scalarmult.c \
853
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.c \
854
+ crypto_scalarmult/curve25519/ref10/x25519_ref10.h \
831
855
  crypto_scalarmult/curve25519/scalarmult_curve25519.c \
832
856
  crypto_scalarmult/curve25519/scalarmult_curve25519.h \
833
857
  crypto_secretbox/crypto_secretbox.c \
@@ -839,10 +863,10 @@ libsodium_la_SOURCES = \
839
863
  crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \
840
864
  crypto_shorthash/siphash24/ref/shorthash_siphash_ref.h \
841
865
  crypto_sign/crypto_sign.c crypto_sign/ed25519/sign_ed25519.c \
842
- crypto_sign/ed25519/ref10/ed25519_ref10.h \
843
866
  crypto_sign/ed25519/ref10/keypair.c \
844
867
  crypto_sign/ed25519/ref10/open.c \
845
868
  crypto_sign/ed25519/ref10/sign.c \
869
+ crypto_sign/ed25519/ref10/sign_ed25519_ref10.h \
846
870
  crypto_stream/chacha20/stream_chacha20.c \
847
871
  crypto_stream/chacha20/stream_chacha20.h \
848
872
  crypto_stream/chacha20/ref/chacha20_ref.h \
@@ -852,15 +876,14 @@ libsodium_la_SOURCES = \
852
876
  crypto_stream/salsa20/stream_salsa20.h \
853
877
  crypto_stream/xsalsa20/stream_xsalsa20.c \
854
878
  crypto_verify/sodium/verify.c include/sodium/private/common.h \
855
- include/sodium/private/curve25519_ref10.h \
879
+ include/sodium/private/ed25519_ref10.h \
856
880
  include/sodium/private/implementations.h \
857
881
  include/sodium/private/mutex.h \
858
882
  include/sodium/private/sse2_64_32.h randombytes/randombytes.c \
859
883
  sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
860
884
  sodium/version.c $(am__append_1) $(am__append_2) \
861
885
  $(am__append_3) $(am__append_4) $(am__append_5) \
862
- $(am__append_6) $(am__append_7) $(am__append_8) \
863
- $(am__append_9)
886
+ $(am__append_6) $(am__append_10) $(am__append_11)
864
887
  noinst_HEADERS = \
865
888
  crypto_scalarmult/curve25519/sandy2x/consts.S \
866
889
  crypto_scalarmult/curve25519/sandy2x/fe51_mul.S \
@@ -869,8 +892,9 @@ noinst_HEADERS = \
869
892
  crypto_scalarmult/curve25519/sandy2x/ladder.S \
870
893
  crypto_scalarmult/curve25519/sandy2x/ladder_base.S
871
894
 
895
+ randombytes_salsa20_randombytes_salsa20_random_CFLAGS = @CFLAGS_RDRAND@
872
896
  libsodium_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -no-undefined \
873
- $(LIBTOOL_EXTRA_FLAGS) $(am__append_10)
897
+ $(LIBTOOL_EXTRA_FLAGS) $(am__append_7)
874
898
  libsodium_la_CPPFLAGS = \
875
899
  $(LTDLINCL) \
876
900
  -I$(srcdir)/include/sodium \
@@ -882,8 +906,17 @@ libsodium_la_CPPFLAGS = \
882
906
  SUBDIRS = \
883
907
  include
884
908
 
885
- libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
886
- noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
909
+ libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la \
910
+ libavx2.la libavx512f.la $(am__append_8)
911
+ noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la \
912
+ libavx2.la libavx512f.la $(am__append_9)
913
+ librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
914
+ librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
915
+ @CFLAGS_RDRAND@
916
+
917
+ librdrand_la_SOURCES = \
918
+ randombytes/salsa20/randombytes_salsa20_random.c
919
+
887
920
  libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
888
921
  libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
889
922
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
@@ -897,7 +930,7 @@ libsse2_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
897
930
 
898
931
  libsse2_la_SOURCES = crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c \
899
932
  crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h \
900
- $(am__append_11) $(am__append_12)
933
+ $(am__append_12) $(am__append_13)
901
934
  libssse3_la_LDFLAGS = $(libsodium_la_LDFLAGS)
902
935
  libssse3_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
903
936
  @CFLAGS_SSE2@ @CFLAGS_SSSE3@
@@ -1084,6 +1117,18 @@ crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo: \
1084
1117
 
1085
1118
  libavx512f.la: $(libavx512f_la_OBJECTS) $(libavx512f_la_DEPENDENCIES) $(EXTRA_libavx512f_la_DEPENDENCIES)
1086
1119
  $(AM_V_CCLD)$(libavx512f_la_LINK) $(libavx512f_la_OBJECTS) $(libavx512f_la_LIBADD) $(LIBS)
1120
+ randombytes/salsa20/$(am__dirstamp):
1121
+ @$(MKDIR_P) randombytes/salsa20
1122
+ @: > randombytes/salsa20/$(am__dirstamp)
1123
+ randombytes/salsa20/$(DEPDIR)/$(am__dirstamp):
1124
+ @$(MKDIR_P) randombytes/salsa20/$(DEPDIR)
1125
+ @: > randombytes/salsa20/$(DEPDIR)/$(am__dirstamp)
1126
+ randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo: \
1127
+ randombytes/salsa20/$(am__dirstamp) \
1128
+ randombytes/salsa20/$(DEPDIR)/$(am__dirstamp)
1129
+
1130
+ librdrand.la: $(librdrand_la_OBJECTS) $(librdrand_la_DEPENDENCIES) $(EXTRA_librdrand_la_DEPENDENCIES)
1131
+ $(AM_V_CCLD)$(librdrand_la_LINK) $(am_librdrand_la_rpath) $(librdrand_la_OBJECTS) $(librdrand_la_LIBADD) $(LIBS)
1087
1132
  crypto_aead/chacha20poly1305/sodium/$(am__dirstamp):
1088
1133
  @$(MKDIR_P) crypto_aead/chacha20poly1305/sodium
1089
1134
  @: > crypto_aead/chacha20poly1305/sodium/$(am__dirstamp)
@@ -1160,15 +1205,15 @@ crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp):
1160
1205
  crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo: \
1161
1206
  crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) \
1162
1207
  crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp)
1163
- crypto_core/curve25519/ref10/$(am__dirstamp):
1164
- @$(MKDIR_P) crypto_core/curve25519/ref10
1165
- @: > crypto_core/curve25519/ref10/$(am__dirstamp)
1166
- crypto_core/curve25519/ref10/$(DEPDIR)/$(am__dirstamp):
1167
- @$(MKDIR_P) crypto_core/curve25519/ref10/$(DEPDIR)
1168
- @: > crypto_core/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1169
- crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo: \
1170
- crypto_core/curve25519/ref10/$(am__dirstamp) \
1171
- crypto_core/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1208
+ crypto_core/ed25519/ref10/$(am__dirstamp):
1209
+ @$(MKDIR_P) crypto_core/ed25519/ref10
1210
+ @: > crypto_core/ed25519/ref10/$(am__dirstamp)
1211
+ crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp):
1212
+ @$(MKDIR_P) crypto_core/ed25519/ref10/$(DEPDIR)
1213
+ @: > crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
1214
+ crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo: \
1215
+ crypto_core/ed25519/ref10/$(am__dirstamp) \
1216
+ crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
1172
1217
  crypto_core/hchacha20/$(am__dirstamp):
1173
1218
  @$(MKDIR_P) crypto_core/hchacha20
1174
1219
  @: > crypto_core/hchacha20/$(am__dirstamp)
@@ -1367,6 +1412,15 @@ crypto_scalarmult/$(DEPDIR)/$(am__dirstamp):
1367
1412
  crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: \
1368
1413
  crypto_scalarmult/$(am__dirstamp) \
1369
1414
  crypto_scalarmult/$(DEPDIR)/$(am__dirstamp)
1415
+ crypto_scalarmult/curve25519/ref10/$(am__dirstamp):
1416
+ @$(MKDIR_P) crypto_scalarmult/curve25519/ref10
1417
+ @: > crypto_scalarmult/curve25519/ref10/$(am__dirstamp)
1418
+ crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp):
1419
+ @$(MKDIR_P) crypto_scalarmult/curve25519/ref10/$(DEPDIR)
1420
+ @: > crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1421
+ crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: \
1422
+ crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \
1423
+ crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1370
1424
  crypto_scalarmult/curve25519/$(am__dirstamp):
1371
1425
  @$(MKDIR_P) crypto_scalarmult/curve25519
1372
1426
  @: > crypto_scalarmult/curve25519/$(am__dirstamp)
@@ -1543,51 +1597,6 @@ sodium/libsodium_la-utils.lo: sodium/$(am__dirstamp) \
1543
1597
  sodium/$(DEPDIR)/$(am__dirstamp)
1544
1598
  sodium/libsodium_la-version.lo: sodium/$(am__dirstamp) \
1545
1599
  sodium/$(DEPDIR)/$(am__dirstamp)
1546
- randombytes/salsa20/$(am__dirstamp):
1547
- @$(MKDIR_P) randombytes/salsa20
1548
- @: > randombytes/salsa20/$(am__dirstamp)
1549
- randombytes/salsa20/$(DEPDIR)/$(am__dirstamp):
1550
- @$(MKDIR_P) randombytes/salsa20/$(DEPDIR)
1551
- @: > randombytes/salsa20/$(DEPDIR)/$(am__dirstamp)
1552
- randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo: \
1553
- randombytes/salsa20/$(am__dirstamp) \
1554
- randombytes/salsa20/$(DEPDIR)/$(am__dirstamp)
1555
- randombytes/nativeclient/$(am__dirstamp):
1556
- @$(MKDIR_P) randombytes/nativeclient
1557
- @: > randombytes/nativeclient/$(am__dirstamp)
1558
- randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp):
1559
- @$(MKDIR_P) randombytes/nativeclient/$(DEPDIR)
1560
- @: > randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp)
1561
- randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo: \
1562
- randombytes/nativeclient/$(am__dirstamp) \
1563
- randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp)
1564
- randombytes/sysrandom/$(am__dirstamp):
1565
- @$(MKDIR_P) randombytes/sysrandom
1566
- @: > randombytes/sysrandom/$(am__dirstamp)
1567
- randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp):
1568
- @$(MKDIR_P) randombytes/sysrandom/$(DEPDIR)
1569
- @: > randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp)
1570
- randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: \
1571
- randombytes/sysrandom/$(am__dirstamp) \
1572
- randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp)
1573
- crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp):
1574
- @$(MKDIR_P) crypto_scalarmult/curve25519/donna_c64
1575
- @: > crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp)
1576
- crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp):
1577
- @$(MKDIR_P) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)
1578
- @: > crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
1579
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo: \
1580
- crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp) \
1581
- crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
1582
- crypto_scalarmult/curve25519/ref10/$(am__dirstamp):
1583
- @$(MKDIR_P) crypto_scalarmult/curve25519/ref10
1584
- @: > crypto_scalarmult/curve25519/ref10/$(am__dirstamp)
1585
- crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp):
1586
- @$(MKDIR_P) crypto_scalarmult/curve25519/ref10/$(DEPDIR)
1587
- @: > crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1588
- crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: \
1589
- crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \
1590
- crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
1591
1600
  crypto_stream/salsa20/xmm6/$(am__dirstamp):
1592
1601
  @$(MKDIR_P) crypto_stream/salsa20/xmm6
1593
1602
  @: > crypto_stream/salsa20/xmm6/$(am__dirstamp)
@@ -1639,6 +1648,15 @@ crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1
1639
1648
  crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo: \
1640
1649
  crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) \
1641
1650
  crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp)
1651
+ crypto_core/ed25519/$(am__dirstamp):
1652
+ @$(MKDIR_P) crypto_core/ed25519
1653
+ @: > crypto_core/ed25519/$(am__dirstamp)
1654
+ crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp):
1655
+ @$(MKDIR_P) crypto_core/ed25519/$(DEPDIR)
1656
+ @: > crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp)
1657
+ crypto_core/ed25519/libsodium_la-core_ed25519.lo: \
1658
+ crypto_core/ed25519/$(am__dirstamp) \
1659
+ crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp)
1642
1660
  crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp):
1643
1661
  @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256
1644
1662
  @: > crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp)
@@ -1666,6 +1684,15 @@ crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp):
1666
1684
  crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo: \
1667
1685
  crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) \
1668
1686
  crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp)
1687
+ crypto_scalarmult/ed25519/ref10/$(am__dirstamp):
1688
+ @$(MKDIR_P) crypto_scalarmult/ed25519/ref10
1689
+ @: > crypto_scalarmult/ed25519/ref10/$(am__dirstamp)
1690
+ crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp):
1691
+ @$(MKDIR_P) crypto_scalarmult/ed25519/ref10/$(DEPDIR)
1692
+ @: > crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
1693
+ crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo: \
1694
+ crypto_scalarmult/ed25519/ref10/$(am__dirstamp) \
1695
+ crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
1669
1696
  crypto_secretbox/xchacha20poly1305/$(am__dirstamp):
1670
1697
  @$(MKDIR_P) crypto_secretbox/xchacha20poly1305
1671
1698
  @: > crypto_secretbox/xchacha20poly1305/$(am__dirstamp)
@@ -1729,6 +1756,24 @@ crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp):
1729
1756
  crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo: \
1730
1757
  crypto_stream/xchacha20/$(am__dirstamp) \
1731
1758
  crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp)
1759
+ randombytes/nativeclient/$(am__dirstamp):
1760
+ @$(MKDIR_P) randombytes/nativeclient
1761
+ @: > randombytes/nativeclient/$(am__dirstamp)
1762
+ randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp):
1763
+ @$(MKDIR_P) randombytes/nativeclient/$(DEPDIR)
1764
+ @: > randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp)
1765
+ randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo: \
1766
+ randombytes/nativeclient/$(am__dirstamp) \
1767
+ randombytes/nativeclient/$(DEPDIR)/$(am__dirstamp)
1768
+ randombytes/sysrandom/$(am__dirstamp):
1769
+ @$(MKDIR_P) randombytes/sysrandom
1770
+ @: > randombytes/sysrandom/$(am__dirstamp)
1771
+ randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp):
1772
+ @$(MKDIR_P) randombytes/sysrandom/$(DEPDIR)
1773
+ @: > randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp)
1774
+ randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: \
1775
+ randombytes/sysrandom/$(am__dirstamp) \
1776
+ randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp)
1732
1777
 
1733
1778
  libsodium.la: $(libsodium_la_OBJECTS) $(libsodium_la_DEPENDENCIES) $(EXTRA_libsodium_la_DEPENDENCIES)
1734
1779
  $(AM_V_CCLD)$(libsodium_la_LINK) -rpath $(libdir) $(libsodium_la_OBJECTS) $(libsodium_la_LIBADD) $(LIBS)
@@ -1797,8 +1842,10 @@ mostlyclean-compile:
1797
1842
  -rm -f crypto_box/curve25519xchacha20poly1305/*.lo
1798
1843
  -rm -f crypto_box/curve25519xsalsa20poly1305/*.$(OBJEXT)
1799
1844
  -rm -f crypto_box/curve25519xsalsa20poly1305/*.lo
1800
- -rm -f crypto_core/curve25519/ref10/*.$(OBJEXT)
1801
- -rm -f crypto_core/curve25519/ref10/*.lo
1845
+ -rm -f crypto_core/ed25519/*.$(OBJEXT)
1846
+ -rm -f crypto_core/ed25519/*.lo
1847
+ -rm -f crypto_core/ed25519/ref10/*.$(OBJEXT)
1848
+ -rm -f crypto_core/ed25519/ref10/*.lo
1802
1849
  -rm -f crypto_core/hchacha20/*.$(OBJEXT)
1803
1850
  -rm -f crypto_core/hchacha20/*.lo
1804
1851
  -rm -f crypto_core/hsalsa20/*.$(OBJEXT)
@@ -1851,12 +1898,12 @@ mostlyclean-compile:
1851
1898
  -rm -f crypto_scalarmult/*.lo
1852
1899
  -rm -f crypto_scalarmult/curve25519/*.$(OBJEXT)
1853
1900
  -rm -f crypto_scalarmult/curve25519/*.lo
1854
- -rm -f crypto_scalarmult/curve25519/donna_c64/*.$(OBJEXT)
1855
- -rm -f crypto_scalarmult/curve25519/donna_c64/*.lo
1856
1901
  -rm -f crypto_scalarmult/curve25519/ref10/*.$(OBJEXT)
1857
1902
  -rm -f crypto_scalarmult/curve25519/ref10/*.lo
1858
1903
  -rm -f crypto_scalarmult/curve25519/sandy2x/*.$(OBJEXT)
1859
1904
  -rm -f crypto_scalarmult/curve25519/sandy2x/*.lo
1905
+ -rm -f crypto_scalarmult/ed25519/ref10/*.$(OBJEXT)
1906
+ -rm -f crypto_scalarmult/ed25519/ref10/*.lo
1860
1907
  -rm -f crypto_secretbox/*.$(OBJEXT)
1861
1908
  -rm -f crypto_secretbox/*.lo
1862
1909
  -rm -f crypto_secretbox/xchacha20poly1305/*.$(OBJEXT)
@@ -1934,7 +1981,8 @@ distclean-compile:
1934
1981
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xchacha20poly1305.Plo@am__quote@
1935
1982
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/libsodium_la-box_seal_curve25519xchacha20poly1305.Plo@am__quote@
1936
1983
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/libsodium_la-box_curve25519xsalsa20poly1305.Plo@am__quote@
1937
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Plo@am__quote@
1984
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Plo@am__quote@
1985
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Plo@am__quote@
1938
1986
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Plo@am__quote@
1939
1987
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo@am__quote@
1940
1988
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo@am__quote@
@@ -1978,12 +2026,12 @@ distclean-compile:
1978
2026
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/libsse2_la-pwhash_scryptsalsa208sha256_sse.Plo@am__quote@
1979
2027
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/$(DEPDIR)/libsodium_la-crypto_scalarmult.Plo@am__quote@
1980
2028
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/$(DEPDIR)/libsodium_la-scalarmult_curve25519.Plo@am__quote@
1981
- @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/libsodium_la-curve25519_donna_c64.Plo@am__quote@
1982
2029
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Plo@am__quote@
1983
2030
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-curve25519_sandy2x.Plo@am__quote@
1984
2031
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe51_invert.Plo@am__quote@
1985
2032
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-fe_frombytes_sandy2x.Plo@am__quote@
1986
2033
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/libsodium_la-sandy2x.Plo@am__quote@
2034
+ @AMDEP_TRUE@@am__include@ @am__quote@crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Plo@am__quote@
1987
2035
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox.Plo@am__quote@
1988
2036
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/$(DEPDIR)/libsodium_la-crypto_secretbox_easy.Plo@am__quote@
1989
2037
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Plo@am__quote@
@@ -2020,7 +2068,7 @@ distclean-compile:
2020
2068
  @AMDEP_TRUE@@am__include@ @am__quote@crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo@am__quote@
2021
2069
  @AMDEP_TRUE@@am__include@ @am__quote@randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo@am__quote@
2022
2070
  @AMDEP_TRUE@@am__include@ @am__quote@randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Plo@am__quote@
2023
- @AMDEP_TRUE@@am__include@ @am__quote@randombytes/salsa20/$(DEPDIR)/libsodium_la-randombytes_salsa20_random.Plo@am__quote@
2071
+ @AMDEP_TRUE@@am__include@ @am__quote@randombytes/salsa20/$(DEPDIR)/librdrand_la-randombytes_salsa20_random.Plo@am__quote@
2024
2072
  @AMDEP_TRUE@@am__include@ @am__quote@randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo@am__quote@
2025
2073
  @AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-codecs.Plo@am__quote@
2026
2074
  @AMDEP_TRUE@@am__include@ @am__quote@sodium/$(DEPDIR)/libsodium_la-core.Plo@am__quote@
@@ -2132,6 +2180,13 @@ crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo: crypto_pwhash/a
2132
2180
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2133
2181
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx512f_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/argon2/libavx512f_la-argon2-fill-block-avx512f.lo `test -f 'crypto_pwhash/argon2/argon2-fill-block-avx512f.c' || echo '$(srcdir)/'`crypto_pwhash/argon2/argon2-fill-block-avx512f.c
2134
2182
 
2183
+ randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo: randombytes/salsa20/randombytes_salsa20_random.c
2184
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo -MD -MP -MF randombytes/salsa20/$(DEPDIR)/librdrand_la-randombytes_salsa20_random.Tpo -c -o randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo `test -f 'randombytes/salsa20/randombytes_salsa20_random.c' || echo '$(srcdir)/'`randombytes/salsa20/randombytes_salsa20_random.c
2185
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/salsa20/$(DEPDIR)/librdrand_la-randombytes_salsa20_random.Tpo randombytes/salsa20/$(DEPDIR)/librdrand_la-randombytes_salsa20_random.Plo
2186
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/salsa20/randombytes_salsa20_random.c' object='randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo' libtool=yes @AMDEPBACKSLASH@
2187
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2188
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/salsa20/librdrand_la-randombytes_salsa20_random.lo `test -f 'randombytes/salsa20/randombytes_salsa20_random.c' || echo '$(srcdir)/'`randombytes/salsa20/randombytes_salsa20_random.c
2189
+
2135
2190
  crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
2136
2191
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo -MD -MP -MF crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
2137
2192
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
@@ -2202,12 +2257,12 @@ crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly130
2202
2257
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2203
2258
  @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_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo `test -f 'crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c
2204
2259
 
2205
- crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo: crypto_core/curve25519/ref10/curve25519_ref10.c
2206
- @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo -MD -MP -MF crypto_core/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Tpo -c -o crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo `test -f 'crypto_core/curve25519/ref10/curve25519_ref10.c' || echo '$(srcdir)/'`crypto_core/curve25519/ref10/curve25519_ref10.c
2207
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Tpo crypto_core/curve25519/ref10/$(DEPDIR)/libsodium_la-curve25519_ref10.Plo
2208
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/curve25519/ref10/curve25519_ref10.c' object='crypto_core/curve25519/ref10/libsodium_la-curve25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
2260
+ crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo: crypto_core/ed25519/ref10/ed25519_ref10.c
2261
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo -MD -MP -MF crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Tpo -c -o crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo `test -f 'crypto_core/ed25519/ref10/ed25519_ref10.c' || echo '$(srcdir)/'`crypto_core/ed25519/ref10/ed25519_ref10.c
2262
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Tpo crypto_core/ed25519/ref10/$(DEPDIR)/libsodium_la-ed25519_ref10.Plo
2263
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/ed25519/ref10/ed25519_ref10.c' object='crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
2209
2264
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2210
- @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/curve25519/ref10/libsodium_la-curve25519_ref10.lo `test -f 'crypto_core/curve25519/ref10/curve25519_ref10.c' || echo '$(srcdir)/'`crypto_core/curve25519/ref10/curve25519_ref10.c
2265
+ @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/ed25519/ref10/libsodium_la-ed25519_ref10.lo `test -f 'crypto_core/ed25519/ref10/ed25519_ref10.c' || echo '$(srcdir)/'`crypto_core/ed25519/ref10/ed25519_ref10.c
2211
2266
 
2212
2267
  crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: crypto_core/hchacha20/core_hchacha20.c
2213
2268
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/hchacha20/libsodium_la-core_hchacha20.lo -MD -MP -MF crypto_core/hchacha20/$(DEPDIR)/libsodium_la-core_hchacha20.Tpo -c -o crypto_core/hchacha20/libsodium_la-core_hchacha20.lo `test -f 'crypto_core/hchacha20/core_hchacha20.c' || echo '$(srcdir)/'`crypto_core/hchacha20/core_hchacha20.c
@@ -2412,6 +2467,13 @@ crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: crypto_scalarmult/crypto_sc
2412
2467
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2413
2468
  @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
2414
2469
 
2470
+ crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2471
+ @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-x25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2472
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Plo
2473
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/x25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
2474
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2475
+ @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-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2476
+
2415
2477
  crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: crypto_scalarmult/curve25519/scalarmult_curve25519.c
2416
2478
  @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
2417
2479
  @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
@@ -2587,41 +2649,6 @@ sodium/libsodium_la-version.lo: sodium/version.c
2587
2649
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2588
2650
  @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 sodium/libsodium_la-version.lo `test -f 'sodium/version.c' || echo '$(srcdir)/'`sodium/version.c
2589
2651
 
2590
- randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo: randombytes/salsa20/randombytes_salsa20_random.c
2591
- @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 randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo -MD -MP -MF randombytes/salsa20/$(DEPDIR)/libsodium_la-randombytes_salsa20_random.Tpo -c -o randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo `test -f 'randombytes/salsa20/randombytes_salsa20_random.c' || echo '$(srcdir)/'`randombytes/salsa20/randombytes_salsa20_random.c
2592
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/salsa20/$(DEPDIR)/libsodium_la-randombytes_salsa20_random.Tpo randombytes/salsa20/$(DEPDIR)/libsodium_la-randombytes_salsa20_random.Plo
2593
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/salsa20/randombytes_salsa20_random.c' object='randombytes/salsa20/libsodium_la-randombytes_salsa20_random.lo' libtool=yes @AMDEPBACKSLASH@
2594
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2595
- @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/salsa20/libsodium_la-randombytes_salsa20_random.lo `test -f 'randombytes/salsa20/randombytes_salsa20_random.c' || echo '$(srcdir)/'`randombytes/salsa20/randombytes_salsa20_random.c
2596
-
2597
- randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo: randombytes/nativeclient/randombytes_nativeclient.c
2598
- @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 randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo -MD -MP -MF randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Tpo -c -o randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo `test -f 'randombytes/nativeclient/randombytes_nativeclient.c' || echo '$(srcdir)/'`randombytes/nativeclient/randombytes_nativeclient.c
2599
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Tpo randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Plo
2600
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/nativeclient/randombytes_nativeclient.c' object='randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo' libtool=yes @AMDEPBACKSLASH@
2601
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2602
- @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/nativeclient/libsodium_la-randombytes_nativeclient.lo `test -f 'randombytes/nativeclient/randombytes_nativeclient.c' || echo '$(srcdir)/'`randombytes/nativeclient/randombytes_nativeclient.c
2603
-
2604
- randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: randombytes/sysrandom/randombytes_sysrandom.c
2605
- @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 randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo -MD -MP -MF randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo -c -o randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo `test -f 'randombytes/sysrandom/randombytes_sysrandom.c' || echo '$(srcdir)/'`randombytes/sysrandom/randombytes_sysrandom.c
2606
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
2607
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/sysrandom/randombytes_sysrandom.c' object='randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo' libtool=yes @AMDEPBACKSLASH@
2608
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2609
- @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
2610
-
2611
- crypto_scalarmult/curve25519/donna_c64/libsodium_la-curve25519_donna_c64.lo: crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c
2612
- @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
2613
- @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
2614
- @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@
2615
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2616
- @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
2617
-
2618
- crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2619
- @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-x25519_ref10.lo -MD -MP -MF crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo -c -o crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2620
- @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Tpo crypto_scalarmult/curve25519/ref10/$(DEPDIR)/libsodium_la-x25519_ref10.Plo
2621
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/curve25519/ref10/x25519_ref10.c' object='crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
2622
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2623
- @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-x25519_ref10.lo `test -f 'crypto_scalarmult/curve25519/ref10/x25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/curve25519/ref10/x25519_ref10.c
2624
-
2625
2652
  crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo: crypto_stream/salsa20/xmm6/salsa20_xmm6.c
2626
2653
  @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/xmm6/libsodium_la-salsa20_xmm6.lo -MD -MP -MF crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Tpo -c -o crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo `test -f 'crypto_stream/salsa20/xmm6/salsa20_xmm6.c' || echo '$(srcdir)/'`crypto_stream/salsa20/xmm6/salsa20_xmm6.c
2627
2654
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Tpo crypto_stream/salsa20/xmm6/$(DEPDIR)/libsodium_la-salsa20_xmm6.Plo
@@ -2671,6 +2698,13 @@ crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20
2671
2698
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2672
2699
  @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_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20poly1305.lo `test -f 'crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_box/curve25519xchacha20poly1305/box_seal_curve25519xchacha20poly1305.c
2673
2700
 
2701
+ crypto_core/ed25519/libsodium_la-core_ed25519.lo: crypto_core/ed25519/core_ed25519.c
2702
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/ed25519/libsodium_la-core_ed25519.lo -MD -MP -MF crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Tpo -c -o crypto_core/ed25519/libsodium_la-core_ed25519.lo `test -f 'crypto_core/ed25519/core_ed25519.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ed25519.c
2703
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Tpo crypto_core/ed25519/$(DEPDIR)/libsodium_la-core_ed25519.Plo
2704
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/ed25519/core_ed25519.c' object='crypto_core/ed25519/libsodium_la-core_ed25519.lo' libtool=yes @AMDEPBACKSLASH@
2705
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2706
+ @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/ed25519/libsodium_la-core_ed25519.lo `test -f 'crypto_core/ed25519/core_ed25519.c' || echo '$(srcdir)/'`crypto_core/ed25519/core_ed25519.c
2707
+
2674
2708
  crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2675
2709
  @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo -MD -MP -MF crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo -c -o crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
2676
2710
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Tpo crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/libsodium_la-crypto_scrypt-common.Plo
@@ -2706,6 +2740,13 @@ crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha25
2706
2740
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2707
2741
  @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo `test -f 'crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c' || echo '$(srcdir)/'`crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c
2708
2742
 
2743
+ crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo: crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c
2744
+ @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/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo -MD -MP -MF crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Tpo -c -o crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo `test -f 'crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c
2745
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Tpo crypto_scalarmult/ed25519/ref10/$(DEPDIR)/libsodium_la-scalarmult_ed25519_ref10.Plo
2746
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' object='crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo' libtool=yes @AMDEPBACKSLASH@
2747
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2748
+ @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/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo `test -f 'crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c' || echo '$(srcdir)/'`crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c
2749
+
2709
2750
  crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo: crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c
2710
2751
  @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/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo -MD -MP -MF crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Tpo -c -o crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo `test -f 'crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c
2711
2752
  @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Tpo crypto_secretbox/xchacha20poly1305/$(DEPDIR)/libsodium_la-secretbox_xchacha20poly1305.Plo
@@ -2769,6 +2810,20 @@ crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo: crypto_stream/xchacha2
2769
2810
  @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2770
2811
  @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/xchacha20/libsodium_la-stream_xchacha20.lo `test -f 'crypto_stream/xchacha20/stream_xchacha20.c' || echo '$(srcdir)/'`crypto_stream/xchacha20/stream_xchacha20.c
2771
2812
 
2813
+ randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo: randombytes/nativeclient/randombytes_nativeclient.c
2814
+ @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 randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo -MD -MP -MF randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Tpo -c -o randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo `test -f 'randombytes/nativeclient/randombytes_nativeclient.c' || echo '$(srcdir)/'`randombytes/nativeclient/randombytes_nativeclient.c
2815
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Tpo randombytes/nativeclient/$(DEPDIR)/libsodium_la-randombytes_nativeclient.Plo
2816
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/nativeclient/randombytes_nativeclient.c' object='randombytes/nativeclient/libsodium_la-randombytes_nativeclient.lo' libtool=yes @AMDEPBACKSLASH@
2817
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2818
+ @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/nativeclient/libsodium_la-randombytes_nativeclient.lo `test -f 'randombytes/nativeclient/randombytes_nativeclient.c' || echo '$(srcdir)/'`randombytes/nativeclient/randombytes_nativeclient.c
2819
+
2820
+ randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: randombytes/sysrandom/randombytes_sysrandom.c
2821
+ @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 randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo -MD -MP -MF randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo -c -o randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo `test -f 'randombytes/sysrandom/randombytes_sysrandom.c' || echo '$(srcdir)/'`randombytes/sysrandom/randombytes_sysrandom.c
2822
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Tpo randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
2823
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randombytes/sysrandom/randombytes_sysrandom.c' object='randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo' libtool=yes @AMDEPBACKSLASH@
2824
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2825
+ @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
2826
+
2772
2827
  crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c
2773
2828
  @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
2774
2829
  @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
@@ -2833,7 +2888,8 @@ clean-libtool:
2833
2888
  -rm -rf crypto_box/.libs crypto_box/_libs
2834
2889
  -rm -rf crypto_box/curve25519xchacha20poly1305/.libs crypto_box/curve25519xchacha20poly1305/_libs
2835
2890
  -rm -rf crypto_box/curve25519xsalsa20poly1305/.libs crypto_box/curve25519xsalsa20poly1305/_libs
2836
- -rm -rf crypto_core/curve25519/ref10/.libs crypto_core/curve25519/ref10/_libs
2891
+ -rm -rf crypto_core/ed25519/.libs crypto_core/ed25519/_libs
2892
+ -rm -rf crypto_core/ed25519/ref10/.libs crypto_core/ed25519/ref10/_libs
2837
2893
  -rm -rf crypto_core/hchacha20/.libs crypto_core/hchacha20/_libs
2838
2894
  -rm -rf crypto_core/hsalsa20/.libs crypto_core/hsalsa20/_libs
2839
2895
  -rm -rf crypto_core/hsalsa20/ref2/.libs crypto_core/hsalsa20/ref2/_libs
@@ -2860,9 +2916,9 @@ clean-libtool:
2860
2916
  -rm -rf crypto_pwhash/scryptsalsa208sha256/sse/.libs crypto_pwhash/scryptsalsa208sha256/sse/_libs
2861
2917
  -rm -rf crypto_scalarmult/.libs crypto_scalarmult/_libs
2862
2918
  -rm -rf crypto_scalarmult/curve25519/.libs crypto_scalarmult/curve25519/_libs
2863
- -rm -rf crypto_scalarmult/curve25519/donna_c64/.libs crypto_scalarmult/curve25519/donna_c64/_libs
2864
2919
  -rm -rf crypto_scalarmult/curve25519/ref10/.libs crypto_scalarmult/curve25519/ref10/_libs
2865
2920
  -rm -rf crypto_scalarmult/curve25519/sandy2x/.libs crypto_scalarmult/curve25519/sandy2x/_libs
2921
+ -rm -rf crypto_scalarmult/ed25519/ref10/.libs crypto_scalarmult/ed25519/ref10/_libs
2866
2922
  -rm -rf crypto_secretbox/.libs crypto_secretbox/_libs
2867
2923
  -rm -rf crypto_secretbox/xchacha20poly1305/.libs crypto_secretbox/xchacha20poly1305/_libs
2868
2924
  -rm -rf crypto_secretbox/xsalsa20poly1305/.libs crypto_secretbox/xsalsa20poly1305/_libs
@@ -3124,8 +3180,10 @@ distclean-generic:
3124
3180
  -rm -f crypto_box/curve25519xchacha20poly1305/$(am__dirstamp)
3125
3181
  -rm -f crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp)
3126
3182
  -rm -f crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp)
3127
- -rm -f crypto_core/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
3128
- -rm -f crypto_core/curve25519/ref10/$(am__dirstamp)
3183
+ -rm -f crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp)
3184
+ -rm -f crypto_core/ed25519/$(am__dirstamp)
3185
+ -rm -f crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
3186
+ -rm -f crypto_core/ed25519/ref10/$(am__dirstamp)
3129
3187
  -rm -f crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp)
3130
3188
  -rm -f crypto_core/hchacha20/$(am__dirstamp)
3131
3189
  -rm -f crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp)
@@ -3178,12 +3236,12 @@ distclean-generic:
3178
3236
  -rm -f crypto_scalarmult/$(am__dirstamp)
3179
3237
  -rm -f crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp)
3180
3238
  -rm -f crypto_scalarmult/curve25519/$(am__dirstamp)
3181
- -rm -f crypto_scalarmult/curve25519/donna_c64/$(DEPDIR)/$(am__dirstamp)
3182
- -rm -f crypto_scalarmult/curve25519/donna_c64/$(am__dirstamp)
3183
3239
  -rm -f crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp)
3184
3240
  -rm -f crypto_scalarmult/curve25519/ref10/$(am__dirstamp)
3185
3241
  -rm -f crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp)
3186
3242
  -rm -f crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp)
3243
+ -rm -f crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp)
3244
+ -rm -f crypto_scalarmult/ed25519/ref10/$(am__dirstamp)
3187
3245
  -rm -f crypto_secretbox/$(DEPDIR)/$(am__dirstamp)
3188
3246
  -rm -f crypto_secretbox/$(am__dirstamp)
3189
3247
  -rm -f crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp)
@@ -3254,7 +3312,7 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
3254
3312
  clean-noinstLTLIBRARIES mostlyclean-am
3255
3313
 
3256
3314
  distclean: distclean-recursive
3257
- -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(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/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3315
+ -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/ed25519/$(DEPDIR) crypto_core/ed25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_scalarmult/ed25519/ref10/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(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/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3258
3316
  -rm -f Makefile
3259
3317
  distclean-am: clean-am distclean-compile distclean-generic \
3260
3318
  distclean-tags
@@ -3300,7 +3358,7 @@ install-ps-am:
3300
3358
  installcheck-am:
3301
3359
 
3302
3360
  maintainer-clean: maintainer-clean-recursive
3303
- -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/curve25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/donna_c64/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(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/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3361
+ -rm -rf crypto_aead/aes256gcm/aesni/$(DEPDIR) crypto_aead/chacha20poly1305/sodium/$(DEPDIR) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR) crypto_auth/$(DEPDIR) crypto_auth/hmacsha256/$(DEPDIR) crypto_auth/hmacsha512/$(DEPDIR) crypto_auth/hmacsha512256/$(DEPDIR) crypto_box/$(DEPDIR) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) crypto_core/ed25519/$(DEPDIR) crypto_core/ed25519/ref10/$(DEPDIR) crypto_core/hchacha20/$(DEPDIR) crypto_core/hsalsa20/$(DEPDIR) crypto_core/hsalsa20/ref2/$(DEPDIR) crypto_core/salsa/ref/$(DEPDIR) crypto_generichash/$(DEPDIR) crypto_generichash/blake2b/$(DEPDIR) crypto_generichash/blake2b/ref/$(DEPDIR) crypto_hash/$(DEPDIR) crypto_hash/sha256/$(DEPDIR) crypto_hash/sha256/cp/$(DEPDIR) crypto_hash/sha512/$(DEPDIR) crypto_hash/sha512/cp/$(DEPDIR) crypto_kdf/$(DEPDIR) crypto_kdf/blake2b/$(DEPDIR) crypto_kx/$(DEPDIR) crypto_onetimeauth/$(DEPDIR) crypto_onetimeauth/poly1305/$(DEPDIR) crypto_onetimeauth/poly1305/donna/$(DEPDIR) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) crypto_pwhash/$(DEPDIR) crypto_pwhash/argon2/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) crypto_scalarmult/$(DEPDIR) crypto_scalarmult/curve25519/$(DEPDIR) crypto_scalarmult/curve25519/ref10/$(DEPDIR) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) crypto_scalarmult/ed25519/ref10/$(DEPDIR) crypto_secretbox/$(DEPDIR) crypto_secretbox/xchacha20poly1305/$(DEPDIR) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) crypto_secretstream/xchacha20poly1305/$(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/chacha20/$(DEPDIR) crypto_stream/chacha20/dolbeau/$(DEPDIR) crypto_stream/chacha20/ref/$(DEPDIR) crypto_stream/salsa20/$(DEPDIR) crypto_stream/salsa20/ref/$(DEPDIR) crypto_stream/salsa20/xmm6/$(DEPDIR) crypto_stream/salsa20/xmm6int/$(DEPDIR) crypto_stream/salsa2012/$(DEPDIR) crypto_stream/salsa2012/ref/$(DEPDIR) crypto_stream/salsa208/$(DEPDIR) crypto_stream/salsa208/ref/$(DEPDIR) crypto_stream/xchacha20/$(DEPDIR) crypto_stream/xsalsa20/$(DEPDIR) crypto_verify/sodium/$(DEPDIR) randombytes/$(DEPDIR) randombytes/nativeclient/$(DEPDIR) randombytes/salsa20/$(DEPDIR) randombytes/sysrandom/$(DEPDIR) sodium/$(DEPDIR)
3304
3362
  -rm -f Makefile
3305
3363
  maintainer-clean-am: distclean-am maintainer-clean-generic
3306
3364