rbnacl-libsodium 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/lib/rbnacl/libsodium/version.rb +1 -1
  4. data/vendor/libsodium/AUTHORS +10 -3
  5. data/vendor/libsodium/ChangeLog +19 -1
  6. data/vendor/libsodium/Makefile.in +1 -0
  7. data/vendor/libsodium/README.markdown +1 -1
  8. data/vendor/libsodium/THANKS +1 -0
  9. data/vendor/libsodium/autogen.sh +24 -4
  10. data/vendor/libsodium/autom4te.cache/output.1 +208 -24
  11. data/vendor/libsodium/autom4te.cache/output.5 +208 -24
  12. data/vendor/libsodium/autom4te.cache/requests +869 -869
  13. data/vendor/libsodium/autom4te.cache/traces.1 +426 -406
  14. data/vendor/libsodium/autom4te.cache/traces.5 +255 -245
  15. data/vendor/libsodium/builds/msvc/version.h +2 -2
  16. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +14 -44
  17. data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +36 -132
  18. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +14 -44
  19. data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +36 -132
  20. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +14 -44
  21. data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +36 -132
  22. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +14 -44
  23. data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +62 -158
  24. data/vendor/libsodium/configure +208 -24
  25. data/vendor/libsodium/configure.ac +70 -15
  26. data/vendor/libsodium/dist-build/Makefile.in +1 -0
  27. data/vendor/libsodium/dist-build/emscripten.sh +52 -19
  28. data/vendor/libsodium/dist-build/ios.sh +8 -8
  29. data/vendor/libsodium/dist-build/msys2-win32.sh +2 -1
  30. data/vendor/libsodium/dist-build/msys2-win64.sh +2 -1
  31. data/vendor/libsodium/dist-build/osx.sh +2 -2
  32. data/vendor/libsodium/examples/box.c +3 -1
  33. data/vendor/libsodium/examples/box_detached.c +4 -2
  34. data/vendor/libsodium/examples/utils.h +3 -1
  35. data/vendor/libsodium/libsodium.vcxproj +13 -13
  36. data/vendor/libsodium/libsodium.vcxproj.filters +31 -35
  37. data/vendor/libsodium/msvc-scripts/Makefile.in +1 -0
  38. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  39. data/vendor/libsodium/src/Makefile.in +1 -0
  40. data/vendor/libsodium/src/libsodium/Makefile.am +43 -45
  41. data/vendor/libsodium/src/libsodium/Makefile.in +250 -249
  42. data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +28 -22
  43. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c +3 -4
  44. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c +3 -3
  45. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha512.c +3 -4
  46. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/verify_hmacsha512.c +4 -4
  47. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c +4 -4
  48. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c +6 -4
  49. data/vendor/libsodium/src/libsodium/crypto_box/crypto_box_easy.c +6 -2
  50. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c +3 -3
  51. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +5 -3
  52. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c +13 -9
  53. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +3 -3
  54. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +2 -2
  55. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +2 -2
  56. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +2 -2
  57. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +2 -2
  58. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +2 -2
  59. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +36 -26
  60. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +1 -1
  61. data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +1 -2
  62. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +2 -3
  63. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +2 -3
  64. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/{auth_poly1305_donna.c → poly1305_donna.c} +18 -11
  65. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +1 -5
  66. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +10 -9
  67. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +17 -9
  68. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +10 -1
  69. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +708 -0
  70. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h +31 -0
  71. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +1 -0
  72. data/vendor/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c +11 -12
  73. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/{smult_curve25519_donna_c64.c → curve25519_donna_c64.c} +32 -15
  74. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +9 -0
  75. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.c +73 -0
  76. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.h +9 -0
  77. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_frombytes_curve25519_ref10.c +1 -0
  78. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S +25 -0
  79. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts_namespace.h +20 -0
  80. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +114 -0
  81. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h +9 -0
  82. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe.h +25 -0
  83. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51.h +33 -0
  84. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +57 -0
  85. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S +189 -0
  86. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h +16 -0
  87. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S +165 -0
  88. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S +219 -0
  89. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +76 -0
  90. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S +1432 -0
  91. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.h +18 -0
  92. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S +1287 -0
  93. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.h +18 -0
  94. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h +8 -0
  95. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h +8 -0
  96. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S +17 -0
  97. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c +67 -0
  98. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.h +11 -0
  99. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c +3 -3
  100. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +3 -2
  101. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge.h +2 -0
  102. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c +42 -0
  103. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +7 -7
  104. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +113 -0
  105. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +10 -7
  106. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +10 -10
  107. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +2 -2
  108. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c +2 -2
  109. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c +10 -9
  110. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +2 -3
  111. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +72 -68
  112. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/{api.h → stream_chacha20_ref.h} +5 -0
  113. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/{stream_chacha20_api.c → stream_chacha20.c} +27 -7
  114. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.h +22 -0
  115. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.c +329 -0
  116. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.h +27 -0
  117. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S +1 -1
  118. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +2 -2
  119. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +1 -1
  120. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +2 -2
  121. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +2 -2
  122. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +2 -2
  123. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +2 -2
  124. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +2 -2
  125. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +4 -4
  126. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/verify_16.c +14 -21
  127. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/verify_32.c +14 -37
  128. data/vendor/libsodium/src/libsodium/crypto_verify/64/ref/verify_64.c +14 -69
  129. data/vendor/libsodium/src/libsodium/include/Makefile.in +1 -0
  130. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +8 -4
  131. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +4 -2
  132. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +2 -2
  133. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +2 -3
  134. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +2 -1
  135. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h +6 -1
  136. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_chacha20.h +5 -0
  137. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_nativeclient.h +6 -20
  138. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +1 -28
  139. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_sysrandom.h +1 -27
  140. data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
  141. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +6 -0
  142. data/vendor/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c +3 -3
  143. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +58 -51
  144. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +23 -18
  145. data/vendor/libsodium/src/libsodium/sodium/core.c +4 -0
  146. data/vendor/libsodium/src/libsodium/sodium/runtime.c +34 -15
  147. data/vendor/libsodium/src/libsodium/sodium/utils.c +104 -14
  148. data/vendor/libsodium/test/Makefile.in +1 -0
  149. data/vendor/libsodium/test/default/Makefile.in +1 -0
  150. data/vendor/libsodium/test/default/auth.c +5 -5
  151. data/vendor/libsodium/test/default/auth2.c +3 -3
  152. data/vendor/libsodium/test/default/auth3.c +3 -3
  153. data/vendor/libsodium/test/default/auth5.c +4 -4
  154. data/vendor/libsodium/test/default/auth6.c +3 -3
  155. data/vendor/libsodium/test/default/auth7.c +4 -4
  156. data/vendor/libsodium/test/default/box.c +13 -9
  157. data/vendor/libsodium/test/default/box2.c +11 -8
  158. data/vendor/libsodium/test/default/box7.c +11 -9
  159. data/vendor/libsodium/test/default/box8.c +32 -19
  160. data/vendor/libsodium/test/default/box_easy.c +31 -10
  161. data/vendor/libsodium/test/default/box_easy.exp +3 -19
  162. data/vendor/libsodium/test/default/box_easy2.c +30 -15
  163. data/vendor/libsodium/test/default/box_seed.c +1 -1
  164. data/vendor/libsodium/test/default/cmptest.h +22 -1
  165. data/vendor/libsodium/test/default/core1.c +6 -5
  166. data/vendor/libsodium/test/default/core2.c +6 -5
  167. data/vendor/libsodium/test/default/core3.c +8 -7
  168. data/vendor/libsodium/test/default/core4.c +11 -8
  169. data/vendor/libsodium/test/default/core5.c +7 -5
  170. data/vendor/libsodium/test/default/core6.c +8 -6
  171. data/vendor/libsodium/test/default/generichash.c +0 -15
  172. data/vendor/libsodium/test/default/generichash.exp +0 -1
  173. data/vendor/libsodium/test/default/generichash3.c +1 -21
  174. data/vendor/libsodium/test/default/generichash3.exp +1 -1
  175. data/vendor/libsodium/test/default/hash.c +3 -3
  176. data/vendor/libsodium/test/default/hash3.c +2 -2
  177. data/vendor/libsodium/test/default/index.html.tpl +84 -0
  178. data/vendor/libsodium/test/default/onetimeauth.c +3 -3
  179. data/vendor/libsodium/test/default/onetimeauth2.c +5 -4
  180. data/vendor/libsodium/test/default/onetimeauth7.c +4 -4
  181. data/vendor/libsodium/test/default/pre.js.inc +14 -6
  182. data/vendor/libsodium/test/default/randombytes.c +2 -2
  183. data/vendor/libsodium/test/default/scalarmult.c +19 -6
  184. data/vendor/libsodium/test/default/scalarmult.exp +1 -0
  185. data/vendor/libsodium/test/default/scalarmult2.c +2 -2
  186. data/vendor/libsodium/test/default/scalarmult5.c +6 -4
  187. data/vendor/libsodium/test/default/scalarmult6.c +5 -3
  188. data/vendor/libsodium/test/default/scalarmult7.c +11 -7
  189. data/vendor/libsodium/test/default/secretbox.c +7 -6
  190. data/vendor/libsodium/test/default/secretbox2.c +7 -6
  191. data/vendor/libsodium/test/default/secretbox7.c +5 -5
  192. data/vendor/libsodium/test/default/secretbox8.c +5 -5
  193. data/vendor/libsodium/test/default/secretbox_easy.c +27 -17
  194. data/vendor/libsodium/test/default/secretbox_easy.exp +7 -95
  195. data/vendor/libsodium/test/default/secretbox_easy2.c +22 -10
  196. data/vendor/libsodium/test/default/sign.c +5 -0
  197. data/vendor/libsodium/test/default/sodium_utils.c +73 -0
  198. data/vendor/libsodium/test/default/sodium_utils.exp +6 -0
  199. data/vendor/libsodium/test/default/stream.c +7 -6
  200. data/vendor/libsodium/test/default/stream2.c +4 -4
  201. data/vendor/libsodium/test/default/stream3.c +6 -5
  202. data/vendor/libsodium/test/default/stream4.c +7 -6
  203. data/vendor/libsodium/test/default/verify1.c +61 -18
  204. data/vendor/libsodium/test/default/verify1.exp +2 -6
  205. metadata +37 -44
  206. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/api.h +0 -9
  207. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/api.h +0 -9
  208. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/api.h +0 -9
  209. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h +0 -20
  210. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/api.h +0 -10
  211. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/api.h +0 -10
  212. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/api.h +0 -10
  213. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/api.h +0 -10
  214. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/api.h +0 -2
  215. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/api.h +0 -10
  216. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/api.h +0 -10
  217. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +0 -6
  218. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c +0 -13
  219. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/api.h +0 -5
  220. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c +0 -14
  221. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c +0 -54
  222. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c +0 -14
  223. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h +0 -11
  224. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/api.h +0 -7
  225. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/api.h +0 -15
  226. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h +0 -12
  227. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h +0 -54
  228. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c +0 -348
  229. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h +0 -34
  230. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c +0 -230
  231. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h +0 -51
  232. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c +0 -150
  233. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c +0 -106
  234. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c +0 -16
  235. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/api.h +0 -13
  236. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h +0 -1
  237. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/api.h +0 -5
  238. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/api.h +0 -10
  239. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/api.h +0 -9
  240. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/api.h +0 -11
  241. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/api.h +0 -2
  242. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/api.h +0 -2
  243. data/vendor/libsodium/src/libsodium/crypto_verify/64/ref/api.h +0 -2
@@ -16,3 +16,9 @@ dt5: 11
16
16
  010100000000000000000000000000000000000000000000
17
17
  020000000000000000000000000000000000000000000000
18
18
  0001ff000000000000000000000000000000000000000000
19
+ 000000000000fffefefefefefefefefefefefefefefefefe
20
+ 00000000000000000000fffefefefefefefefefefefefefe
21
+ 00000000000000000000000000000000000000000000fffe
22
+ fcfffffffffffbfdfefefefefefefefefefefefefefefefe
23
+ fcfffffffffffffffffffbfdfefefefefefefefefefefefe
24
+ fcfffffffffffffffffffffffffffffffffffffffffffbfd
@@ -2,18 +2,19 @@
2
2
  #define TEST_NAME "stream"
3
3
  #include "cmptest.h"
4
4
 
5
- unsigned char firstkey[32]
5
+ static unsigned char firstkey[32]
6
6
  = { 0x1b, 0x27, 0x55, 0x64, 0x73, 0xe9, 0x85, 0xd4, 0x62, 0xcd, 0x51,
7
7
  0x19, 0x7a, 0x9a, 0x46, 0xc7, 0x60, 0x09, 0x54, 0x9e, 0xac, 0x64,
8
8
  0x74, 0xf2, 0x06, 0xc4, 0xee, 0x08, 0x44, 0xf6, 0x83, 0x89 };
9
9
 
10
- unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
11
- 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
12
- 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
10
+ static unsigned char nonce[24]
11
+ = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
12
+ 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
13
+ 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
13
14
 
14
- unsigned char output[4194304];
15
+ static unsigned char output[4194304];
15
16
 
16
- unsigned char h[32];
17
+ static unsigned char h[32];
17
18
 
18
19
  int main(void)
19
20
  {
@@ -2,17 +2,17 @@
2
2
  #define TEST_NAME "stream2"
3
3
  #include "cmptest.h"
4
4
 
5
- unsigned char secondkey[32]
5
+ static unsigned char secondkey[32]
6
6
  = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, 0xa9, 0x53, 0x62, 0x9b,
7
7
  0x73, 0x38, 0x20, 0x77, 0x88, 0x80, 0xf3, 0xce, 0xb4, 0x21, 0xbb,
8
8
  0x61, 0xb9, 0x1c, 0xbd, 0x4c, 0x3e, 0x66, 0x25, 0x6c, 0xe4 };
9
9
 
10
- unsigned char noncesuffix[8]
10
+ static unsigned char noncesuffix[8]
11
11
  = { 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
12
12
 
13
- unsigned char output[4194304];
13
+ static unsigned char output[4194304];
14
14
 
15
- unsigned char h[32];
15
+ static unsigned char h[32];
16
16
 
17
17
  int main(void)
18
18
  {
@@ -2,16 +2,17 @@
2
2
  #define TEST_NAME "stream3"
3
3
  #include "cmptest.h"
4
4
 
5
- unsigned char firstkey[32]
5
+ static unsigned char firstkey[32]
6
6
  = { 0x1b, 0x27, 0x55, 0x64, 0x73, 0xe9, 0x85, 0xd4, 0x62, 0xcd, 0x51,
7
7
  0x19, 0x7a, 0x9a, 0x46, 0xc7, 0x60, 0x09, 0x54, 0x9e, 0xac, 0x64,
8
8
  0x74, 0xf2, 0x06, 0xc4, 0xee, 0x08, 0x44, 0xf6, 0x83, 0x89 };
9
9
 
10
- unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
11
- 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
12
- 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
10
+ static unsigned char nonce[24]
11
+ = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
12
+ 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
13
+ 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
13
14
 
14
- unsigned char rs[32];
15
+ static unsigned char rs[32];
15
16
 
16
17
  int main(void)
17
18
  {
@@ -2,16 +2,17 @@
2
2
  #define TEST_NAME "stream4"
3
3
  #include "cmptest.h"
4
4
 
5
- unsigned char firstkey[32]
5
+ static unsigned char firstkey[32]
6
6
  = { 0x1b, 0x27, 0x55, 0x64, 0x73, 0xe9, 0x85, 0xd4, 0x62, 0xcd, 0x51,
7
7
  0x19, 0x7a, 0x9a, 0x46, 0xc7, 0x60, 0x09, 0x54, 0x9e, 0xac, 0x64,
8
8
  0x74, 0xf2, 0x06, 0xc4, 0xee, 0x08, 0x44, 0xf6, 0x83, 0x89 };
9
9
 
10
- unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
11
- 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
12
- 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
10
+ static unsigned char nonce[24]
11
+ = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, 0x2b, 0x73,
12
+ 0xcd, 0x62, 0xbd, 0xa8, 0x75, 0xfc, 0x73, 0xd6,
13
+ 0x82, 0x19, 0xe0, 0x03, 0x6b, 0x7a, 0x0b, 0x37 };
13
14
 
14
- unsigned char m[163]
15
+ static unsigned char m[163]
15
16
  = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
16
17
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
17
18
  0, 0, 0, 0, 0, 0, 0, 0, 0xbe, 0x07, 0x5f, 0xc5,
@@ -27,7 +28,7 @@ unsigned char m[163]
27
28
  0xf0, 0xa0, 0x89, 0xbc, 0x76, 0x89, 0x70, 0x40, 0xe0, 0x82, 0xf9, 0x37,
28
29
  0x76, 0x38, 0x48, 0x64, 0x5e, 0x07, 0x05 };
29
30
 
30
- unsigned char c[163];
31
+ static unsigned char c[163];
31
32
 
32
33
  int main(void)
33
34
  {
@@ -2,35 +2,78 @@
2
2
  #define TEST_NAME "verify1"
3
3
  #include "cmptest.h"
4
4
 
5
- unsigned char v16[16], v16x[16];
6
- unsigned char v32[32], v32x[32];
7
- unsigned char v64[64], v64x[64];
5
+ static unsigned char v16[16], v16x[16];
6
+ static unsigned char v32[32], v32x[32];
7
+ static unsigned char v64[64], v64x[64];
8
8
 
9
9
  int main(void)
10
10
  {
11
- randombytes_buf(v16, sizeof v16);
12
- randombytes_buf(v32, sizeof v32);
13
- randombytes_buf(v64, sizeof v64);
11
+ unsigned char *v16, *v16x;
12
+ unsigned char *v32, *v32x;
13
+ unsigned char *v64, *v64x;
14
+ uint32_t r;
15
+ uint8_t o;
16
+ int i;
14
17
 
15
- memcpy(v16x, v16, sizeof v16);
16
- memcpy(v32x, v32, sizeof v32);
17
- memcpy(v64x, v64, sizeof v64);
18
+ v16 = (unsigned char *) sodium_malloc(16);
19
+ v16x = (unsigned char *) sodium_malloc(16);
20
+ v32 = (unsigned char *) sodium_malloc(32);
21
+ v32x = (unsigned char *) sodium_malloc(32);
22
+ v64 = (unsigned char *) sodium_malloc(64);
23
+ v64x = (unsigned char *) sodium_malloc(64);
24
+ for (i = 0; i < 100000; i++) {
25
+ randombytes_buf(v16, 16);
26
+ randombytes_buf(v32, 32);
27
+ randombytes_buf(v64, 64);
18
28
 
19
- printf("%d\n", crypto_verify_16(v16, v16x));
20
- printf("%d\n", crypto_verify_32(v32, v32x));
21
- printf("%d\n", crypto_verify_64(v64, v64x));
29
+ memcpy(v16x, v16, 16);
30
+ memcpy(v32x, v32, 32);
31
+ memcpy(v64x, v64, 64);
22
32
 
23
- v16x[randombytes_random() & 15U]++;
24
- v32x[randombytes_random() & 31U]++;
25
- v64x[randombytes_random() & 63U]++;
33
+ if (crypto_verify_16(v16, v16x) != 0 ||
34
+ crypto_verify_32(v32, v32x) != 0 ||
35
+ crypto_verify_64(v64, v64x) != 0 ||
36
+ sodium_memcmp(v16, v16x, 16) != 0 ||
37
+ sodium_memcmp(v32, v32x, 32) != 0 ||
38
+ sodium_memcmp(v64, v64x, 64) != 0) {
39
+ printf("Failed\n");
40
+ }
41
+ }
42
+ printf("OK\n");
26
43
 
27
- printf("%d\n", crypto_verify_16(v16, v16x));
28
- printf("%d\n", crypto_verify_32(v32, v32x));
29
- printf("%d\n", crypto_verify_64(v64, v64x));
44
+ for (i = 0; i < 100000; i++) {
45
+ r = randombytes_random();
46
+ o = (uint8_t) randombytes_random();
47
+ if (o == 0) {
48
+ continue;
49
+ }
50
+ v16x[r & 15U] ^= o;
51
+ v32x[r & 31U] ^= o;
52
+ v64x[r & 63U] ^= o;
53
+ if (crypto_verify_16(v16, v16x) != -1 ||
54
+ crypto_verify_32(v32, v32x) != -1 ||
55
+ crypto_verify_64(v64, v64x) != -1 ||
56
+ sodium_memcmp(v16, v16x, 16) != -1 ||
57
+ sodium_memcmp(v32, v32x, 32) != -1 ||
58
+ sodium_memcmp(v64, v64x, 64) != -1) {
59
+ printf("Failed\n");
60
+ }
61
+ v16x[r & 15U] ^= o;
62
+ v32x[r & 31U] ^= o;
63
+ v64x[r & 63U] ^= o;
64
+ }
65
+ printf("OK\n");
30
66
 
31
67
  assert(crypto_verify_16_bytes() == 16U);
32
68
  assert(crypto_verify_32_bytes() == 32U);
33
69
  assert(crypto_verify_64_bytes() == 64U);
34
70
 
71
+ sodium_free(v16);
72
+ sodium_free(v16x);
73
+ sodium_free(v32);
74
+ sodium_free(v32x);
75
+ sodium_free(v64);
76
+ sodium_free(v64x);
77
+
35
78
  return 0;
36
79
  }
@@ -1,6 +1,2 @@
1
- 0
2
- 0
3
- 0
4
- -1
5
- -1
6
- -1
1
+ OK
2
+ OK
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbnacl-libsodium
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artiom Di
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-01 00:00:00.000000000 Z
11
+ date: 2015-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbnacl
@@ -247,15 +247,12 @@ files:
247
247
  - vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
248
248
  - vendor/libsodium/src/libsodium/crypto_auth/crypto_auth.c
249
249
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c
250
- - vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/api.h
251
250
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c
252
251
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/cp/verify_hmacsha256.c
253
252
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512_api.c
254
- - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/api.h
255
253
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha512.c
256
254
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512/cp/verify_hmacsha512.c
257
255
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c
258
- - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/api.h
259
256
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c
260
257
  - vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c
261
258
  - vendor/libsodium/src/libsodium/crypto_box/crypto_box.c
@@ -263,24 +260,18 @@ files:
263
260
  - vendor/libsodium/src/libsodium/crypto_box/crypto_box_seal.c
264
261
  - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c
265
262
  - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c
266
- - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h
267
263
  - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c
268
264
  - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c
269
265
  - vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c
270
266
  - vendor/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c
271
- - vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/api.h
272
267
  - vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c
273
268
  - vendor/libsodium/src/libsodium/crypto_core/salsa20/core_salsa20_api.c
274
- - vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/api.h
275
269
  - vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c
276
270
  - vendor/libsodium/src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c
277
- - vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/api.h
278
271
  - vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c
279
272
  - vendor/libsodium/src/libsodium/crypto_core/salsa208/core_salsa208_api.c
280
- - vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/api.h
281
273
  - vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c
282
274
  - vendor/libsodium/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c
283
- - vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/api.h
284
275
  - vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h
285
276
  - vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h
286
277
  - vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-compress-ref.c
@@ -293,19 +284,19 @@ files:
293
284
  - vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c
294
285
  - vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c
295
286
  - vendor/libsodium/src/libsodium/crypto_hash/crypto_hash.c
296
- - vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/api.h
297
287
  - vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c
298
288
  - vendor/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256_api.c
299
- - vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/api.h
300
289
  - vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c
301
290
  - vendor/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512_api.c
302
291
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c
303
- - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c
292
+ - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c
304
293
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h
305
294
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h
306
295
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h
307
296
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c
308
297
  - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.h
298
+ - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c
299
+ - vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.h
309
300
  - vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c
310
301
  - vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h
311
302
  - vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c
@@ -316,11 +307,10 @@ files:
316
307
  - vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c
317
308
  - vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sysendian.h
318
309
  - vendor/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c
319
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h
320
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c
321
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c
322
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/api.h
323
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/base_curve25519_ref10.c
310
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c
311
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h
312
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.c
313
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.h
324
314
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe.h
325
315
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c
326
316
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_1_curve25519_ref10.c
@@ -336,20 +326,36 @@ files:
336
326
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c
337
327
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/montgomery.h
338
328
  - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/pow225521.h
339
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/scalarmult_curve25519_ref10.c
340
- - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c
329
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S
330
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts_namespace.h
331
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c
332
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.h
333
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe.h
334
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51.h
335
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c
336
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S
337
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_namespace.h
338
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S
339
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S
340
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c
341
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S
342
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.h
343
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S
344
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.h
345
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base_namespace.h
346
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_namespace.h
347
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S
348
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c
349
+ - vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.h
341
350
  - vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c
342
351
  - vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c
343
- - vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h
344
352
  - vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c
345
353
  - vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c
346
354
  - vendor/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c
347
- - vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/api.h
348
355
  - vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c
349
356
  - vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c
350
357
  - vendor/libsodium/src/libsodium/crypto_sign/crypto_sign.c
351
358
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/description
352
- - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/api.h
353
359
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base.h
354
360
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base2.h
355
361
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d.h
@@ -396,6 +402,7 @@ files:
396
402
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h
397
403
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c
398
404
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c
405
+ - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c
399
406
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c
400
407
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow22523.h
401
408
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow225521.h
@@ -405,17 +412,7 @@ files:
405
412
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c
406
413
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h
407
414
  - vendor/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c
408
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h
409
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h
410
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c
411
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h
412
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c
413
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h
414
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c
415
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c
416
- - vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c
417
415
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c
418
- - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/api.h
419
416
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c
420
417
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common.h
421
418
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c
@@ -427,35 +424,30 @@ files:
427
424
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/types.h
428
425
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c
429
426
  - vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c
430
- - vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/api.h
431
427
  - vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c
432
- - vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c
428
+ - vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.h
429
+ - vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c
430
+ - vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.h
431
+ - vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.c
432
+ - vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.h
433
433
  - vendor/libsodium/src/libsodium/crypto_stream/crypto_stream.c
434
- - vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h
435
434
  - vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S
436
- - vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/api.h
437
435
  - vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c
438
436
  - vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c
439
437
  - vendor/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c
440
- - vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/api.h
441
438
  - vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c
442
439
  - vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c
443
440
  - vendor/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c
444
- - vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/api.h
445
441
  - vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c
446
442
  - vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c
447
443
  - vendor/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c
448
- - vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/api.h
449
444
  - vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c
450
445
  - vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c
451
446
  - vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20_api.c
452
- - vendor/libsodium/src/libsodium/crypto_verify/16/ref/api.h
453
447
  - vendor/libsodium/src/libsodium/crypto_verify/16/ref/verify_16.c
454
448
  - vendor/libsodium/src/libsodium/crypto_verify/16/verify_16_api.c
455
- - vendor/libsodium/src/libsodium/crypto_verify/32/ref/api.h
456
449
  - vendor/libsodium/src/libsodium/crypto_verify/32/ref/verify_32.c
457
450
  - vendor/libsodium/src/libsodium/crypto_verify/32/verify_32_api.c
458
- - vendor/libsodium/src/libsodium/crypto_verify/64/ref/api.h
459
451
  - vendor/libsodium/src/libsodium/crypto_verify/64/ref/verify_64.c
460
452
  - vendor/libsodium/src/libsodium/crypto_verify/64/verify_64_api.c
461
453
  - vendor/libsodium/src/libsodium/include/Makefile.am
@@ -588,6 +580,7 @@ files:
588
580
  - vendor/libsodium/test/default/hash2.exp
589
581
  - vendor/libsodium/test/default/hash3.c
590
582
  - vendor/libsodium/test/default/hash3.exp
583
+ - vendor/libsodium/test/default/index.html.tpl
591
584
  - vendor/libsodium/test/default/nacl-test-wrapper.sh
592
585
  - vendor/libsodium/test/default/onetimeauth.c
593
586
  - vendor/libsodium/test/default/onetimeauth.exp
@@ -1,9 +0,0 @@
1
-
2
- #include "crypto_auth_hmacsha256.h"
3
-
4
- #define crypto_auth crypto_auth_hmacsha256
5
- #define crypto_auth_verify crypto_auth_hmacsha256_verify
6
- #define crypto_auth_BYTES crypto_auth_hmacsha256_BYTES
7
- #define crypto_auth_KEYBYTES crypto_auth_hmacsha256_KEYBYTES
8
- #define crypto_auth_IMPLEMENTATION crypto_auth_hmacsha256_IMPLEMENTATION
9
- #define crypto_auth_VERSION crypto_auth_hmacsha256_VERSION
@@ -1,9 +0,0 @@
1
-
2
- #include "crypto_auth_hmacsha512.h"
3
-
4
- #define crypto_auth crypto_auth_hmacsha512
5
- #define crypto_auth_verify crypto_auth_hmacsha512_verify
6
- #define crypto_auth_BYTES crypto_auth_hmacsha512_BYTES
7
- #define crypto_auth_KEYBYTES crypto_auth_hmacsha512_KEYBYTES
8
- #define crypto_auth_IMPLEMENTATION crypto_auth_hmacsha512_IMPLEMENTATION
9
- #define crypto_auth_VERSION crypto_auth_hmacsha512_VERSION