rbnacl-libsodium 0.4.5a

Sign up to get free protection for your applications and to get access to all the features.
Files changed (409) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGES.md +3 -0
  5. data/Gemfile +6 -0
  6. data/LICENSE +21 -0
  7. data/README.md +23 -0
  8. data/Rakefile +1 -0
  9. data/ext/rbnacl/extconf.rb +30 -0
  10. data/lib/rbnacl/libsodium.rb +11 -0
  11. data/lib/rbnacl/libsodium/version.rb +5 -0
  12. data/rbnacl-libsodium.gemspec +25 -0
  13. data/vendor/libsodium/AUTHORS +101 -0
  14. data/vendor/libsodium/ChangeLog +68 -0
  15. data/vendor/libsodium/LICENSE +16 -0
  16. data/vendor/libsodium/Makefile.am +20 -0
  17. data/vendor/libsodium/README +1 -0
  18. data/vendor/libsodium/README.markdown +246 -0
  19. data/vendor/libsodium/THANKS +17 -0
  20. data/vendor/libsodium/autogen.sh +16 -0
  21. data/vendor/libsodium/configure.ac +405 -0
  22. data/vendor/libsodium/dist-build/android.sh +48 -0
  23. data/vendor/libsodium/dist-build/iphone.sh +16 -0
  24. data/vendor/libsodium/dist-build/msys.sh +9 -0
  25. data/vendor/libsodium/libsodium.pc.in +11 -0
  26. data/vendor/libsodium/libsodium.sln +38 -0
  27. data/vendor/libsodium/libsodium.vcxproj +508 -0
  28. data/vendor/libsodium/libsodium.vcxproj.filters +569 -0
  29. data/vendor/libsodium/logo.png +0 -0
  30. data/vendor/libsodium/m4/ax_check_compile_flag.m4 +73 -0
  31. data/vendor/libsodium/m4/ax_check_gnu_make.m4 +78 -0
  32. data/vendor/libsodium/m4/ax_check_link_flag.m4 +72 -0
  33. data/vendor/libsodium/m4/ld-output-def.m4 +29 -0
  34. data/vendor/libsodium/m4/pkg.m4 +214 -0
  35. data/vendor/libsodium/msvc-scripts/Makefile.am +4 -0
  36. data/vendor/libsodium/msvc-scripts/process.bat +8 -0
  37. data/vendor/libsodium/msvc-scripts/rep.vbs +12 -0
  38. data/vendor/libsodium/msvc-scripts/sodium.props +25 -0
  39. data/vendor/libsodium/src/Makefile.am +3 -0
  40. data/vendor/libsodium/src/libsodium/Makefile.am +232 -0
  41. data/vendor/libsodium/src/libsodium/crypto_auth/crypto_auth.c +34 -0
  42. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c +16 -0
  43. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/checksum +1 -0
  44. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/api.h +10 -0
  45. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/hmac_hmacsha256.c +83 -0
  46. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/verify_hmacsha256.c +9 -0
  47. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c +16 -0
  48. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/checksum +1 -0
  49. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/api.h +10 -0
  50. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c +86 -0
  51. data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c +9 -0
  52. data/vendor/libsodium/src/libsodium/crypto_auth/try.c +119 -0
  53. data/vendor/libsodium/src/libsodium/crypto_box/crypto_box.c +95 -0
  54. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c +41 -0
  55. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/checksum +1 -0
  56. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c +22 -0
  57. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h +19 -0
  58. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +19 -0
  59. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c +27 -0
  60. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +12 -0
  61. data/vendor/libsodium/src/libsodium/crypto_box/try.c +195 -0
  62. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/checksum +1 -0
  63. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c +26 -0
  64. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/api.h +11 -0
  65. data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +108 -0
  66. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/checksum +1 -0
  67. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/core_salsa20_api.c +26 -0
  68. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/api.h +11 -0
  69. data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +134 -0
  70. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/checksum +1 -0
  71. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c +26 -0
  72. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/api.h +11 -0
  73. data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +134 -0
  74. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/checksum +1 -0
  75. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/core_salsa208_api.c +26 -0
  76. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/api.h +11 -0
  77. data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +134 -0
  78. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c +31 -0
  79. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/api.h +4 -0
  80. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +132 -0
  81. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +169 -0
  82. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +364 -0
  83. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2s-ref.c +355 -0
  84. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +61 -0
  85. data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +84 -0
  86. data/vendor/libsodium/src/libsodium/crypto_hash/crypto_hash.c +9 -0
  87. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/checksum +1 -0
  88. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256_api.c +11 -0
  89. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/ref/api.h +8 -0
  90. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/ref/hash_sha256.c +69 -0
  91. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/checksum +1 -0
  92. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512_api.c +11 -0
  93. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/ref/api.h +8 -0
  94. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/ref/hash_sha512.c +71 -0
  95. data/vendor/libsodium/src/libsodium/crypto_hash/try.c +76 -0
  96. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/checksum +1 -0
  97. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/hashblocks_sha256_api.c +16 -0
  98. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/ref/api.h +9 -0
  99. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/ref/blocks_sha256.c +212 -0
  100. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/checksum +1 -0
  101. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/hashblocks_sha512_api.c +16 -0
  102. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/ref/api.h +9 -0
  103. data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/ref/blocks_sha512.c +239 -0
  104. data/vendor/libsodium/src/libsodium/crypto_hashblocks/try.c +78 -0
  105. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c +34 -0
  106. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/api.h +8 -0
  107. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/auth_poly1305_53.c +1661 -0
  108. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/verify_poly1305_53.c +10 -0
  109. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/api.h +8 -0
  110. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +151 -0
  111. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h +772 -0
  112. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c +10 -0
  113. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +36 -0
  114. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c +16 -0
  115. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c +152 -0
  116. data/vendor/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c +34 -0
  117. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/checksum +1 -0
  118. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +9 -0
  119. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c +13 -0
  120. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c +426 -0
  121. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/api.h +8 -0
  122. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/base_curve25519_ref.c +20 -0
  123. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/smult_curve25519_ref.c +268 -0
  124. data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c +14 -0
  125. data/vendor/libsodium/src/libsodium/crypto_scalarmult/try.c +125 -0
  126. data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c +48 -0
  127. data/vendor/libsodium/src/libsodium/crypto_secretbox/try.c +129 -0
  128. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/checksum +1 -0
  129. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h +12 -0
  130. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c +35 -0
  131. data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c +26 -0
  132. data/vendor/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c +27 -0
  133. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/api.h +8 -0
  134. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +91 -0
  135. data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c +11 -0
  136. data/vendor/libsodium/src/libsodium/crypto_sign/crypto_sign.c +61 -0
  137. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/description +1 -0
  138. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/api.h +14 -0
  139. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base.h +1344 -0
  140. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base2.h +40 -0
  141. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d.h +1 -0
  142. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d2.h +1 -0
  143. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe.h +56 -0
  144. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_0.c +19 -0
  145. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_1.c +19 -0
  146. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_add.c +57 -0
  147. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_cmov.c +63 -0
  148. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_copy.c +29 -0
  149. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c +73 -0
  150. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_invert.c +14 -0
  151. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnegative.c +16 -0
  152. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnonzero.c +19 -0
  153. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c +253 -0
  154. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_neg.c +45 -0
  155. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_pow22523.c +13 -0
  156. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c +149 -0
  157. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c +160 -0
  158. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sub.c +57 -0
  159. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_tobytes.c +119 -0
  160. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge.h +95 -0
  161. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.c +11 -0
  162. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.h +97 -0
  163. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c +96 -0
  164. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_frombytes.c +50 -0
  165. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.c +11 -0
  166. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.h +88 -0
  167. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.c +11 -0
  168. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.h +88 -0
  169. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p2.c +12 -0
  170. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p3.c +13 -0
  171. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_0.c +8 -0
  172. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.c +11 -0
  173. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.h +73 -0
  174. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_0.c +9 -0
  175. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_dbl.c +12 -0
  176. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_cached.c +17 -0
  177. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_p2.c +12 -0
  178. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_tobytes.c +14 -0
  179. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_precomp_0.c +8 -0
  180. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_scalarmult_base.c +105 -0
  181. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.c +11 -0
  182. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h +97 -0
  183. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c +14 -0
  184. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +31 -0
  185. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +40 -0
  186. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow22523.h +160 -0
  187. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow225521.h +160 -0
  188. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc.h +15 -0
  189. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_muladd.c +368 -0
  190. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_reduce.c +275 -0
  191. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +38 -0
  192. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h +1 -0
  193. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c +26 -0
  194. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h +13 -0
  195. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h +54 -0
  196. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c +348 -0
  197. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h +34 -0
  198. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c +230 -0
  199. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h +51 -0
  200. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c +146 -0
  201. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c +102 -0
  202. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c +21 -0
  203. data/vendor/libsodium/src/libsodium/crypto_sign/try.c +87 -0
  204. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/checksum +1 -0
  205. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +159 -0
  206. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/api.h +14 -0
  207. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c +59 -0
  208. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common.h +788 -0
  209. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c +64 -0
  210. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/consts.h +28 -0
  211. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c +14 -0
  212. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128.h +47 -0
  213. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c +131 -0
  214. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c +28 -0
  215. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/types.h +10 -0
  216. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +181 -0
  217. data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c +21 -0
  218. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-be.h +274 -0
  219. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-le.h +274 -0
  220. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table.h +56 -0
  221. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes256-ctr.c +238 -0
  222. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes256.h +171 -0
  223. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/api.h +14 -0
  224. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/ecrypt-sync.h +27 -0
  225. data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/stream_aes256estream_api.c +21 -0
  226. data/vendor/libsodium/src/libsodium/crypto_stream/crypto_stream.c +36 -0
  227. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h +1 -0
  228. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S +950 -0
  229. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/checksum +1 -0
  230. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/api.h +8 -0
  231. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +55 -0
  232. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +58 -0
  233. data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c +16 -0
  234. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/checksum +1 -0
  235. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/api.h +11 -0
  236. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +51 -0
  237. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +54 -0
  238. data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c +16 -0
  239. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/checksum +1 -0
  240. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/api.h +10 -0
  241. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +51 -0
  242. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +54 -0
  243. data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c +16 -0
  244. data/vendor/libsodium/src/libsodium/crypto_stream/try.c +122 -0
  245. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/checksum +1 -0
  246. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/api.h +11 -0
  247. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +24 -0
  248. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +25 -0
  249. data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20_api.c +16 -0
  250. data/vendor/libsodium/src/libsodium/crypto_verify/16/checksum +1 -0
  251. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/api.h +2 -0
  252. data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/verify_16.c +24 -0
  253. data/vendor/libsodium/src/libsodium/crypto_verify/16/verify_16_api.c +6 -0
  254. data/vendor/libsodium/src/libsodium/crypto_verify/32/checksum +1 -0
  255. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/api.h +2 -0
  256. data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/verify_32.c +40 -0
  257. data/vendor/libsodium/src/libsodium/crypto_verify/32/verify_32_api.c +6 -0
  258. data/vendor/libsodium/src/libsodium/crypto_verify/try.c +76 -0
  259. data/vendor/libsodium/src/libsodium/include/Makefile.am +63 -0
  260. data/vendor/libsodium/src/libsodium/include/sodium.h +48 -0
  261. data/vendor/libsodium/src/libsodium/include/sodium/core.h +18 -0
  262. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth.h +36 -0
  263. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha256.h +36 -0
  264. data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512256.h +36 -0
  265. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +83 -0
  266. data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +72 -0
  267. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_hsalsa20.h +40 -0
  268. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa20.h +40 -0
  269. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa2012.h +40 -0
  270. data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa208.h +40 -0
  271. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash.h +70 -0
  272. data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +87 -0
  273. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash.h +23 -0
  274. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha256.h +29 -0
  275. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha512.h +29 -0
  276. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hashblocks_sha256.h +32 -0
  277. data/vendor/libsodium/src/libsodium/include/sodium/crypto_hashblocks_sha512.h +32 -0
  278. data/vendor/libsodium/src/libsodium/include/sodium/crypto_int32.h +8 -0
  279. data/vendor/libsodium/src/libsodium/include/sodium/crypto_int64.h +8 -0
  280. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth.h +37 -0
  281. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +65 -0
  282. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_53.h +34 -0
  283. data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_donna.h +34 -0
  284. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +36 -0
  285. data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h.in +44 -0
  286. data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox.h +47 -0
  287. data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h +44 -0
  288. data/vendor/libsodium/src/libsodium/include/sodium/crypto_shorthash.h +33 -0
  289. data/vendor/libsodium/src/libsodium/include/sodium/crypto_shorthash_siphash24.h +29 -0
  290. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign.h +61 -0
  291. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_ed25519.h +52 -0
  292. data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +44 -0
  293. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream.h +46 -0
  294. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_aes128ctr.h +60 -0
  295. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_aes256estream.h +61 -0
  296. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa20.h.in +54 -0
  297. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa2012.h +43 -0
  298. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa208.h +43 -0
  299. data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_xsalsa20.h +44 -0
  300. data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint16.h +8 -0
  301. data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint32.h +8 -0
  302. data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint64.h +8 -0
  303. data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint8.h +8 -0
  304. data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_16.h +25 -0
  305. data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_32.h +25 -0
  306. data/vendor/libsodium/src/libsodium/include/sodium/export.h +32 -0
  307. data/vendor/libsodium/src/libsodium/include/sodium/randombytes.h +53 -0
  308. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +45 -0
  309. data/vendor/libsodium/src/libsodium/include/sodium/randombytes_sysrandom.h +45 -0
  310. data/vendor/libsodium/src/libsodium/include/sodium/utils.h +36 -0
  311. data/vendor/libsodium/src/libsodium/include/sodium/version.h.in +29 -0
  312. data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +63 -0
  313. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +317 -0
  314. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +212 -0
  315. data/vendor/libsodium/src/libsodium/sodium/compat.c +248 -0
  316. data/vendor/libsodium/src/libsodium/sodium/core.c +21 -0
  317. data/vendor/libsodium/src/libsodium/sodium/utils.c +94 -0
  318. data/vendor/libsodium/src/libsodium/sodium/version.c +20 -0
  319. data/vendor/libsodium/test/Makefile.am +5 -0
  320. data/vendor/libsodium/test/default/Makefile.am +277 -0
  321. data/vendor/libsodium/test/default/auth.c +21 -0
  322. data/vendor/libsodium/test/default/auth.exp +4 -0
  323. data/vendor/libsodium/test/default/auth2.c +36 -0
  324. data/vendor/libsodium/test/default/auth2.exp +4 -0
  325. data/vendor/libsodium/test/default/auth3.c +36 -0
  326. data/vendor/libsodium/test/default/auth3.exp +1 -0
  327. data/vendor/libsodium/test/default/auth5.c +37 -0
  328. data/vendor/libsodium/test/default/auth5.exp +0 -0
  329. data/vendor/libsodium/test/default/box.c +65 -0
  330. data/vendor/libsodium/test/default/box.exp +19 -0
  331. data/vendor/libsodium/test/default/box2.c +66 -0
  332. data/vendor/libsodium/test/default/box2.exp +17 -0
  333. data/vendor/libsodium/test/default/box7.c +37 -0
  334. data/vendor/libsodium/test/default/box7.exp +0 -0
  335. data/vendor/libsodium/test/default/box8.c +44 -0
  336. data/vendor/libsodium/test/default/box8.exp +0 -0
  337. data/vendor/libsodium/test/default/cmptest.h +51 -0
  338. data/vendor/libsodium/test/default/core1.c +32 -0
  339. data/vendor/libsodium/test/default/core1.exp +4 -0
  340. data/vendor/libsodium/test/default/core2.c +35 -0
  341. data/vendor/libsodium/test/default/core2.exp +4 -0
  342. data/vendor/libsodium/test/default/core3.c +42 -0
  343. data/vendor/libsodium/test/default/core3.exp +1 -0
  344. data/vendor/libsodium/test/default/core4.c +35 -0
  345. data/vendor/libsodium/test/default/core4.exp +8 -0
  346. data/vendor/libsodium/test/default/core5.c +34 -0
  347. data/vendor/libsodium/test/default/core5.exp +4 -0
  348. data/vendor/libsodium/test/default/core6.c +49 -0
  349. data/vendor/libsodium/test/default/core6.exp +4 -0
  350. data/vendor/libsodium/test/default/generichash.c +27 -0
  351. data/vendor/libsodium/test/default/generichash.exp +64 -0
  352. data/vendor/libsodium/test/default/generichash2.c +31 -0
  353. data/vendor/libsodium/test/default/generichash2.exp +64 -0
  354. data/vendor/libsodium/test/default/hash.c +16 -0
  355. data/vendor/libsodium/test/default/hash.exp +1 -0
  356. data/vendor/libsodium/test/default/hash2.exp +1 -0
  357. data/vendor/libsodium/test/default/hash3.c +16 -0
  358. data/vendor/libsodium/test/default/hash3.exp +1 -0
  359. data/vendor/libsodium/test/default/onetimeauth.c +44 -0
  360. data/vendor/libsodium/test/default/onetimeauth.exp +2 -0
  361. data/vendor/libsodium/test/default/onetimeauth2.c +42 -0
  362. data/vendor/libsodium/test/default/onetimeauth2.exp +1 -0
  363. data/vendor/libsodium/test/default/onetimeauth7.c +37 -0
  364. data/vendor/libsodium/test/default/onetimeauth7.exp +0 -0
  365. data/vendor/libsodium/test/default/pre.js +33 -0
  366. data/vendor/libsodium/test/default/randombytes.c +16 -0
  367. data/vendor/libsodium/test/default/scalarmult.c +25 -0
  368. data/vendor/libsodium/test/default/scalarmult.exp +4 -0
  369. data/vendor/libsodium/test/default/scalarmult2.c +25 -0
  370. data/vendor/libsodium/test/default/scalarmult2.exp +4 -0
  371. data/vendor/libsodium/test/default/scalarmult5.c +32 -0
  372. data/vendor/libsodium/test/default/scalarmult5.exp +4 -0
  373. data/vendor/libsodium/test/default/scalarmult6.c +32 -0
  374. data/vendor/libsodium/test/default/scalarmult6.exp +4 -0
  375. data/vendor/libsodium/test/default/scalarmult7.c +34 -0
  376. data/vendor/libsodium/test/default/scalarmult7.exp +1 -0
  377. data/vendor/libsodium/test/default/scalarmult8.c +34 -0
  378. data/vendor/libsodium/test/default/scalarmult8.exp +1 -0
  379. data/vendor/libsodium/test/default/secretbox.c +58 -0
  380. data/vendor/libsodium/test/default/secretbox.exp +19 -0
  381. data/vendor/libsodium/test/default/secretbox2.c +59 -0
  382. data/vendor/libsodium/test/default/secretbox2.exp +17 -0
  383. data/vendor/libsodium/test/default/secretbox7.c +33 -0
  384. data/vendor/libsodium/test/default/secretbox7.exp +0 -0
  385. data/vendor/libsodium/test/default/secretbox8.c +40 -0
  386. data/vendor/libsodium/test/default/secretbox8.exp +0 -0
  387. data/vendor/libsodium/test/default/shorthash.c +23 -0
  388. data/vendor/libsodium/test/default/shorthash.exp +64 -0
  389. data/vendor/libsodium/test/default/sodium_core.c +11 -0
  390. data/vendor/libsodium/test/default/sodium_core.exp +1 -0
  391. data/vendor/libsodium/test/default/sodium_utils.c +27 -0
  392. data/vendor/libsodium/test/default/sodium_utils.exp +6 -0
  393. data/vendor/libsodium/test/default/sodium_version.c +13 -0
  394. data/vendor/libsodium/test/default/sodium_version.exp +3 -0
  395. data/vendor/libsodium/test/default/stream.c +30 -0
  396. data/vendor/libsodium/test/default/stream.exp +1 -0
  397. data/vendor/libsodium/test/default/stream2.c +28 -0
  398. data/vendor/libsodium/test/default/stream2.exp +1 -0
  399. data/vendor/libsodium/test/default/stream3.c +30 -0
  400. data/vendor/libsodium/test/default/stream3.exp +4 -0
  401. data/vendor/libsodium/test/default/stream4.c +55 -0
  402. data/vendor/libsodium/test/default/stream4.exp +17 -0
  403. data/vendor/libsodium/test/default/stream5.c +29 -0
  404. data/vendor/libsodium/test/default/stream5.exp +1 -0
  405. data/vendor/libsodium/test/default/stream6.c +54 -0
  406. data/vendor/libsodium/test/default/stream6.exp +17 -0
  407. data/vendor/libsodium/test/default/wintest.bat +56 -0
  408. data/vendor/libsodium/test/quirks/windows/windows-quirks.h +18 -0
  409. metadata +500 -0
@@ -0,0 +1,40 @@
1
+ {
2
+ { 25967493,-14356035,29566456,3660896,-12694345,4014787,27544626,-11754271,-6079156,2047605 },
3
+ { -12545711,934262,-2722910,3049990,-727428,9406986,12720692,5043384,19500929,-15469378 },
4
+ { -8738181,4489570,9688441,-14785194,10184609,-12363380,29287919,11864899,-24514362,-4438546 },
5
+ },
6
+ {
7
+ { 15636291,-9688557,24204773,-7912398,616977,-16685262,27787600,-14772189,28944400,-1550024 },
8
+ { 16568933,4717097,-11556148,-1102322,15682896,-11807043,16354577,-11775962,7689662,11199574 },
9
+ { 30464156,-5976125,-11779434,-15670865,23220365,15915852,7512774,10017326,-17749093,-9920357 },
10
+ },
11
+ {
12
+ { 10861363,11473154,27284546,1981175,-30064349,12577861,32867885,14515107,-15438304,10819380 },
13
+ { 4708026,6336745,20377586,9066809,-11272109,6594696,-25653668,12483688,-12668491,5581306 },
14
+ { 19563160,16186464,-29386857,4097519,10237984,-4348115,28542350,13850243,-23678021,-15815942 },
15
+ },
16
+ {
17
+ { 5153746,9909285,1723747,-2777874,30523605,5516873,19480852,5230134,-23952439,-15175766 },
18
+ { -30269007,-3463509,7665486,10083793,28475525,1649722,20654025,16520125,30598449,7715701 },
19
+ { 28881845,14381568,9657904,3680757,-20181635,7843316,-31400660,1370708,29794553,-1409300 },
20
+ },
21
+ {
22
+ { -22518993,-6692182,14201702,-8745502,-23510406,8844726,18474211,-1361450,-13062696,13821877 },
23
+ { -6455177,-7839871,3374702,-4740862,-27098617,-10571707,31655028,-7212327,18853322,-14220951 },
24
+ { 4566830,-12963868,-28974889,-12240689,-7602672,-2830569,-8514358,-10431137,2207753,-3209784 },
25
+ },
26
+ {
27
+ { -25154831,-4185821,29681144,7868801,-6854661,-9423865,-12437364,-663000,-31111463,-16132436 },
28
+ { 25576264,-2703214,7349804,-11814844,16472782,9300885,3844789,15725684,171356,6466918 },
29
+ { 23103977,13316479,9739013,-16149481,817875,-15038942,8965339,-14088058,-30714912,16193877 },
30
+ },
31
+ {
32
+ { -33521811,3180713,-2394130,14003687,-16903474,-16270840,17238398,4729455,-18074513,9256800 },
33
+ { -25182317,-4174131,32336398,5036987,-21236817,11360617,22616405,9761698,-19827198,630305 },
34
+ { -13720693,2639453,-24237460,-7406481,9494427,-5774029,-6554551,-15960994,-2449256,-14291300 },
35
+ },
36
+ {
37
+ { -3151181,-5046075,9282714,6866145,-31907062,-863023,-18940575,15033784,25105118,-7894876 },
38
+ { -24326370,15950226,-31801215,-14592823,-11662737,-5090925,1573892,-2625887,2198790,-15804619 },
39
+ { -3099351,10324967,-2241613,7453183,-5446979,-2735503,-13812022,-16236442,-32461234,-12290683 },
40
+ },
@@ -0,0 +1 @@
1
+ -10913610,13857413,-15372611,6949391,114729,-8787816,-6275908,-3247719,-18696448,-12055116
@@ -0,0 +1 @@
1
+ -21827239,-5839606,-30745221,13898782,229458,15978800,-12551817,-6495438,29715968,9444199
@@ -0,0 +1,56 @@
1
+ #ifndef FE_H
2
+ #define FE_H
3
+
4
+ #include "crypto_int32.h"
5
+
6
+ typedef crypto_int32 fe[10];
7
+
8
+ /*
9
+ fe means field element.
10
+ Here the field is \Z/(2^255-19).
11
+ An element t, entries t[0]...t[9], represents the integer
12
+ t[0]+2^26 t[1]+2^51 t[2]+2^77 t[3]+2^102 t[4]+...+2^230 t[9].
13
+ Bounds on each t[i] vary depending on context.
14
+ */
15
+
16
+ #define fe_frombytes crypto_sign_ed25519_ref10_fe_frombytes
17
+ #define fe_tobytes crypto_sign_ed25519_ref10_fe_tobytes
18
+ #define fe_copy crypto_sign_ed25519_ref10_fe_copy
19
+ #define fe_isnonzero crypto_sign_ed25519_ref10_fe_isnonzero
20
+ #define fe_isnegative crypto_sign_ed25519_ref10_fe_isnegative
21
+ #define fe_0 crypto_sign_ed25519_ref10_fe_0
22
+ #define fe_1 crypto_sign_ed25519_ref10_fe_1
23
+ #define fe_cswap crypto_sign_ed25519_ref10_fe_cswap
24
+ #define fe_cmov crypto_sign_ed25519_ref10_fe_cmov
25
+ #define fe_add crypto_sign_ed25519_ref10_fe_add
26
+ #define fe_sub crypto_sign_ed25519_ref10_fe_sub
27
+ #define fe_neg crypto_sign_ed25519_ref10_fe_neg
28
+ #define fe_mul crypto_sign_ed25519_ref10_fe_mul
29
+ #define fe_sq crypto_sign_ed25519_ref10_fe_sq
30
+ #define fe_sq2 crypto_sign_ed25519_ref10_fe_sq2
31
+ #define fe_mul121666 crypto_sign_ed25519_ref10_fe_mul121666
32
+ #define fe_invert crypto_sign_ed25519_ref10_fe_invert
33
+ #define fe_pow22523 crypto_sign_ed25519_ref10_fe_pow22523
34
+
35
+ extern void fe_frombytes(fe,const unsigned char *);
36
+ extern void fe_tobytes(unsigned char *,const fe);
37
+
38
+ extern void fe_copy(fe,const fe);
39
+ extern int fe_isnonzero(const fe);
40
+ extern int fe_isnegative(const fe);
41
+ extern void fe_0(fe);
42
+ extern void fe_1(fe);
43
+ extern void fe_cswap(fe,fe,unsigned int);
44
+ extern void fe_cmov(fe,const fe,unsigned int);
45
+
46
+ extern void fe_add(fe,const fe,const fe);
47
+ extern void fe_sub(fe,const fe,const fe);
48
+ extern void fe_neg(fe,const fe);
49
+ extern void fe_mul(fe,const fe,const fe);
50
+ extern void fe_sq(fe,const fe);
51
+ extern void fe_sq2(fe,const fe);
52
+ extern void fe_mul121666(fe,const fe);
53
+ extern void fe_invert(fe,const fe);
54
+ extern void fe_pow22523(fe,const fe);
55
+
56
+ #endif
@@ -0,0 +1,19 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ h = 0
5
+ */
6
+
7
+ void fe_0(fe h)
8
+ {
9
+ h[0] = 0;
10
+ h[1] = 0;
11
+ h[2] = 0;
12
+ h[3] = 0;
13
+ h[4] = 0;
14
+ h[5] = 0;
15
+ h[6] = 0;
16
+ h[7] = 0;
17
+ h[8] = 0;
18
+ h[9] = 0;
19
+ }
@@ -0,0 +1,19 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ h = 1
5
+ */
6
+
7
+ void fe_1(fe h)
8
+ {
9
+ h[0] = 1;
10
+ h[1] = 0;
11
+ h[2] = 0;
12
+ h[3] = 0;
13
+ h[4] = 0;
14
+ h[5] = 0;
15
+ h[6] = 0;
16
+ h[7] = 0;
17
+ h[8] = 0;
18
+ h[9] = 0;
19
+ }
@@ -0,0 +1,57 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ h = f + g
5
+ Can overlap h with f or g.
6
+
7
+ Preconditions:
8
+ |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
9
+ |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
10
+
11
+ Postconditions:
12
+ |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
13
+ */
14
+
15
+ void fe_add(fe h,const fe f,const fe g)
16
+ {
17
+ crypto_int32 f0 = f[0];
18
+ crypto_int32 f1 = f[1];
19
+ crypto_int32 f2 = f[2];
20
+ crypto_int32 f3 = f[3];
21
+ crypto_int32 f4 = f[4];
22
+ crypto_int32 f5 = f[5];
23
+ crypto_int32 f6 = f[6];
24
+ crypto_int32 f7 = f[7];
25
+ crypto_int32 f8 = f[8];
26
+ crypto_int32 f9 = f[9];
27
+ crypto_int32 g0 = g[0];
28
+ crypto_int32 g1 = g[1];
29
+ crypto_int32 g2 = g[2];
30
+ crypto_int32 g3 = g[3];
31
+ crypto_int32 g4 = g[4];
32
+ crypto_int32 g5 = g[5];
33
+ crypto_int32 g6 = g[6];
34
+ crypto_int32 g7 = g[7];
35
+ crypto_int32 g8 = g[8];
36
+ crypto_int32 g9 = g[9];
37
+ crypto_int32 h0 = f0 + g0;
38
+ crypto_int32 h1 = f1 + g1;
39
+ crypto_int32 h2 = f2 + g2;
40
+ crypto_int32 h3 = f3 + g3;
41
+ crypto_int32 h4 = f4 + g4;
42
+ crypto_int32 h5 = f5 + g5;
43
+ crypto_int32 h6 = f6 + g6;
44
+ crypto_int32 h7 = f7 + g7;
45
+ crypto_int32 h8 = f8 + g8;
46
+ crypto_int32 h9 = f9 + g9;
47
+ h[0] = h0;
48
+ h[1] = h1;
49
+ h[2] = h2;
50
+ h[3] = h3;
51
+ h[4] = h4;
52
+ h[5] = h5;
53
+ h[6] = h6;
54
+ h[7] = h7;
55
+ h[8] = h8;
56
+ h[9] = h9;
57
+ }
@@ -0,0 +1,63 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ Replace (f,g) with (g,g) if b == 1;
5
+ replace (f,g) with (f,g) if b == 0.
6
+
7
+ Preconditions: b in {0,1}.
8
+ */
9
+
10
+ void fe_cmov(fe f,const fe g,unsigned int b)
11
+ {
12
+ crypto_int32 f0 = f[0];
13
+ crypto_int32 f1 = f[1];
14
+ crypto_int32 f2 = f[2];
15
+ crypto_int32 f3 = f[3];
16
+ crypto_int32 f4 = f[4];
17
+ crypto_int32 f5 = f[5];
18
+ crypto_int32 f6 = f[6];
19
+ crypto_int32 f7 = f[7];
20
+ crypto_int32 f8 = f[8];
21
+ crypto_int32 f9 = f[9];
22
+ crypto_int32 g0 = g[0];
23
+ crypto_int32 g1 = g[1];
24
+ crypto_int32 g2 = g[2];
25
+ crypto_int32 g3 = g[3];
26
+ crypto_int32 g4 = g[4];
27
+ crypto_int32 g5 = g[5];
28
+ crypto_int32 g6 = g[6];
29
+ crypto_int32 g7 = g[7];
30
+ crypto_int32 g8 = g[8];
31
+ crypto_int32 g9 = g[9];
32
+ crypto_int32 x0 = f0 ^ g0;
33
+ crypto_int32 x1 = f1 ^ g1;
34
+ crypto_int32 x2 = f2 ^ g2;
35
+ crypto_int32 x3 = f3 ^ g3;
36
+ crypto_int32 x4 = f4 ^ g4;
37
+ crypto_int32 x5 = f5 ^ g5;
38
+ crypto_int32 x6 = f6 ^ g6;
39
+ crypto_int32 x7 = f7 ^ g7;
40
+ crypto_int32 x8 = f8 ^ g8;
41
+ crypto_int32 x9 = f9 ^ g9;
42
+ b = -b;
43
+ x0 &= b;
44
+ x1 &= b;
45
+ x2 &= b;
46
+ x3 &= b;
47
+ x4 &= b;
48
+ x5 &= b;
49
+ x6 &= b;
50
+ x7 &= b;
51
+ x8 &= b;
52
+ x9 &= b;
53
+ f[0] = f0 ^ x0;
54
+ f[1] = f1 ^ x1;
55
+ f[2] = f2 ^ x2;
56
+ f[3] = f3 ^ x3;
57
+ f[4] = f4 ^ x4;
58
+ f[5] = f5 ^ x5;
59
+ f[6] = f6 ^ x6;
60
+ f[7] = f7 ^ x7;
61
+ f[8] = f8 ^ x8;
62
+ f[9] = f9 ^ x9;
63
+ }
@@ -0,0 +1,29 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ h = f
5
+ */
6
+
7
+ void fe_copy(fe h,const fe f)
8
+ {
9
+ crypto_int32 f0 = f[0];
10
+ crypto_int32 f1 = f[1];
11
+ crypto_int32 f2 = f[2];
12
+ crypto_int32 f3 = f[3];
13
+ crypto_int32 f4 = f[4];
14
+ crypto_int32 f5 = f[5];
15
+ crypto_int32 f6 = f[6];
16
+ crypto_int32 f7 = f[7];
17
+ crypto_int32 f8 = f[8];
18
+ crypto_int32 f9 = f[9];
19
+ h[0] = f0;
20
+ h[1] = f1;
21
+ h[2] = f2;
22
+ h[3] = f3;
23
+ h[4] = f4;
24
+ h[5] = f5;
25
+ h[6] = f6;
26
+ h[7] = f7;
27
+ h[8] = f8;
28
+ h[9] = f9;
29
+ }
@@ -0,0 +1,73 @@
1
+ #include "fe.h"
2
+ #include "crypto_int64.h"
3
+ #include "crypto_uint64.h"
4
+
5
+ static crypto_uint64 load_3(const unsigned char *in)
6
+ {
7
+ crypto_uint64 result;
8
+ result = (crypto_uint64) in[0];
9
+ result |= ((crypto_uint64) in[1]) << 8;
10
+ result |= ((crypto_uint64) in[2]) << 16;
11
+ return result;
12
+ }
13
+
14
+ static crypto_uint64 load_4(const unsigned char *in)
15
+ {
16
+ crypto_uint64 result;
17
+ result = (crypto_uint64) in[0];
18
+ result |= ((crypto_uint64) in[1]) << 8;
19
+ result |= ((crypto_uint64) in[2]) << 16;
20
+ result |= ((crypto_uint64) in[3]) << 24;
21
+ return result;
22
+ }
23
+
24
+ /*
25
+ Ignores top bit of h.
26
+ */
27
+
28
+ void fe_frombytes(fe h,const unsigned char *s)
29
+ {
30
+ crypto_int64 h0 = load_4(s);
31
+ crypto_int64 h1 = load_3(s + 4) << 6;
32
+ crypto_int64 h2 = load_3(s + 7) << 5;
33
+ crypto_int64 h3 = load_3(s + 10) << 3;
34
+ crypto_int64 h4 = load_3(s + 13) << 2;
35
+ crypto_int64 h5 = load_4(s + 16);
36
+ crypto_int64 h6 = load_3(s + 20) << 7;
37
+ crypto_int64 h7 = load_3(s + 23) << 5;
38
+ crypto_int64 h8 = load_3(s + 26) << 4;
39
+ crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2;
40
+ crypto_int64 carry0;
41
+ crypto_int64 carry1;
42
+ crypto_int64 carry2;
43
+ crypto_int64 carry3;
44
+ crypto_int64 carry4;
45
+ crypto_int64 carry5;
46
+ crypto_int64 carry6;
47
+ crypto_int64 carry7;
48
+ crypto_int64 carry8;
49
+ crypto_int64 carry9;
50
+
51
+ carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25;
52
+ carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25;
53
+ carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
54
+ carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
55
+ carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25;
56
+
57
+ carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
58
+ carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26;
59
+ carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
60
+ carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26;
61
+ carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26;
62
+
63
+ h[0] = h0;
64
+ h[1] = h1;
65
+ h[2] = h2;
66
+ h[3] = h3;
67
+ h[4] = h4;
68
+ h[5] = h5;
69
+ h[6] = h6;
70
+ h[7] = h7;
71
+ h[8] = h8;
72
+ h[9] = h9;
73
+ }
@@ -0,0 +1,14 @@
1
+ #include "fe.h"
2
+
3
+ void fe_invert(fe out,const fe z)
4
+ {
5
+ fe t0;
6
+ fe t1;
7
+ fe t2;
8
+ fe t3;
9
+ int i;
10
+
11
+ #include "pow225521.h"
12
+
13
+ return;
14
+ }
@@ -0,0 +1,16 @@
1
+ #include "fe.h"
2
+
3
+ /*
4
+ return 1 if f is in {1,3,5,...,q-2}
5
+ return 0 if f is in {0,2,4,...,q-1}
6
+
7
+ Preconditions:
8
+ |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
9
+ */
10
+
11
+ int fe_isnegative(const fe f)
12
+ {
13
+ unsigned char s[32];
14
+ fe_tobytes(s,f);
15
+ return s[0] & 1;
16
+ }
@@ -0,0 +1,19 @@
1
+ #include "fe.h"
2
+ #include "crypto_verify_32.h"
3
+
4
+ /*
5
+ return 1 if f == 0
6
+ return 0 if f != 0
7
+
8
+ Preconditions:
9
+ |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
10
+ */
11
+
12
+ static unsigned char zero[32];
13
+
14
+ int fe_isnonzero(const fe f)
15
+ {
16
+ unsigned char s[32];
17
+ fe_tobytes(s,f);
18
+ return crypto_verify_32(s,zero);
19
+ }
@@ -0,0 +1,253 @@
1
+ #include "fe.h"
2
+ #include "crypto_int64.h"
3
+
4
+ /*
5
+ h = f * g
6
+ Can overlap h with f or g.
7
+
8
+ Preconditions:
9
+ |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc.
10
+ |g| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc.
11
+
12
+ Postconditions:
13
+ |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc.
14
+ */
15
+
16
+ /*
17
+ Notes on implementation strategy:
18
+
19
+ Using schoolbook multiplication.
20
+ Karatsuba would save a little in some cost models.
21
+
22
+ Most multiplications by 2 and 19 are 32-bit precomputations;
23
+ cheaper than 64-bit postcomputations.
24
+
25
+ There is one remaining multiplication by 19 in the carry chain;
26
+ one *19 precomputation can be merged into this,
27
+ but the resulting data flow is considerably less clean.
28
+
29
+ There are 12 carries below.
30
+ 10 of them are 2-way parallelizable and vectorizable.
31
+ Can get away with 11 carries, but then data flow is much deeper.
32
+
33
+ With tighter constraints on inputs can squeeze carries into int32.
34
+ */
35
+
36
+ void fe_mul(fe h,const fe f,const fe g)
37
+ {
38
+ crypto_int32 f0 = f[0];
39
+ crypto_int32 f1 = f[1];
40
+ crypto_int32 f2 = f[2];
41
+ crypto_int32 f3 = f[3];
42
+ crypto_int32 f4 = f[4];
43
+ crypto_int32 f5 = f[5];
44
+ crypto_int32 f6 = f[6];
45
+ crypto_int32 f7 = f[7];
46
+ crypto_int32 f8 = f[8];
47
+ crypto_int32 f9 = f[9];
48
+ crypto_int32 g0 = g[0];
49
+ crypto_int32 g1 = g[1];
50
+ crypto_int32 g2 = g[2];
51
+ crypto_int32 g3 = g[3];
52
+ crypto_int32 g4 = g[4];
53
+ crypto_int32 g5 = g[5];
54
+ crypto_int32 g6 = g[6];
55
+ crypto_int32 g7 = g[7];
56
+ crypto_int32 g8 = g[8];
57
+ crypto_int32 g9 = g[9];
58
+ crypto_int32 g1_19 = 19 * g1; /* 1.959375*2^29 */
59
+ crypto_int32 g2_19 = 19 * g2; /* 1.959375*2^30; still ok */
60
+ crypto_int32 g3_19 = 19 * g3;
61
+ crypto_int32 g4_19 = 19 * g4;
62
+ crypto_int32 g5_19 = 19 * g5;
63
+ crypto_int32 g6_19 = 19 * g6;
64
+ crypto_int32 g7_19 = 19 * g7;
65
+ crypto_int32 g8_19 = 19 * g8;
66
+ crypto_int32 g9_19 = 19 * g9;
67
+ crypto_int32 f1_2 = 2 * f1;
68
+ crypto_int32 f3_2 = 2 * f3;
69
+ crypto_int32 f5_2 = 2 * f5;
70
+ crypto_int32 f7_2 = 2 * f7;
71
+ crypto_int32 f9_2 = 2 * f9;
72
+ crypto_int64 f0g0 = f0 * (crypto_int64) g0;
73
+ crypto_int64 f0g1 = f0 * (crypto_int64) g1;
74
+ crypto_int64 f0g2 = f0 * (crypto_int64) g2;
75
+ crypto_int64 f0g3 = f0 * (crypto_int64) g3;
76
+ crypto_int64 f0g4 = f0 * (crypto_int64) g4;
77
+ crypto_int64 f0g5 = f0 * (crypto_int64) g5;
78
+ crypto_int64 f0g6 = f0 * (crypto_int64) g6;
79
+ crypto_int64 f0g7 = f0 * (crypto_int64) g7;
80
+ crypto_int64 f0g8 = f0 * (crypto_int64) g8;
81
+ crypto_int64 f0g9 = f0 * (crypto_int64) g9;
82
+ crypto_int64 f1g0 = f1 * (crypto_int64) g0;
83
+ crypto_int64 f1g1_2 = f1_2 * (crypto_int64) g1;
84
+ crypto_int64 f1g2 = f1 * (crypto_int64) g2;
85
+ crypto_int64 f1g3_2 = f1_2 * (crypto_int64) g3;
86
+ crypto_int64 f1g4 = f1 * (crypto_int64) g4;
87
+ crypto_int64 f1g5_2 = f1_2 * (crypto_int64) g5;
88
+ crypto_int64 f1g6 = f1 * (crypto_int64) g6;
89
+ crypto_int64 f1g7_2 = f1_2 * (crypto_int64) g7;
90
+ crypto_int64 f1g8 = f1 * (crypto_int64) g8;
91
+ crypto_int64 f1g9_38 = f1_2 * (crypto_int64) g9_19;
92
+ crypto_int64 f2g0 = f2 * (crypto_int64) g0;
93
+ crypto_int64 f2g1 = f2 * (crypto_int64) g1;
94
+ crypto_int64 f2g2 = f2 * (crypto_int64) g2;
95
+ crypto_int64 f2g3 = f2 * (crypto_int64) g3;
96
+ crypto_int64 f2g4 = f2 * (crypto_int64) g4;
97
+ crypto_int64 f2g5 = f2 * (crypto_int64) g5;
98
+ crypto_int64 f2g6 = f2 * (crypto_int64) g6;
99
+ crypto_int64 f2g7 = f2 * (crypto_int64) g7;
100
+ crypto_int64 f2g8_19 = f2 * (crypto_int64) g8_19;
101
+ crypto_int64 f2g9_19 = f2 * (crypto_int64) g9_19;
102
+ crypto_int64 f3g0 = f3 * (crypto_int64) g0;
103
+ crypto_int64 f3g1_2 = f3_2 * (crypto_int64) g1;
104
+ crypto_int64 f3g2 = f3 * (crypto_int64) g2;
105
+ crypto_int64 f3g3_2 = f3_2 * (crypto_int64) g3;
106
+ crypto_int64 f3g4 = f3 * (crypto_int64) g4;
107
+ crypto_int64 f3g5_2 = f3_2 * (crypto_int64) g5;
108
+ crypto_int64 f3g6 = f3 * (crypto_int64) g6;
109
+ crypto_int64 f3g7_38 = f3_2 * (crypto_int64) g7_19;
110
+ crypto_int64 f3g8_19 = f3 * (crypto_int64) g8_19;
111
+ crypto_int64 f3g9_38 = f3_2 * (crypto_int64) g9_19;
112
+ crypto_int64 f4g0 = f4 * (crypto_int64) g0;
113
+ crypto_int64 f4g1 = f4 * (crypto_int64) g1;
114
+ crypto_int64 f4g2 = f4 * (crypto_int64) g2;
115
+ crypto_int64 f4g3 = f4 * (crypto_int64) g3;
116
+ crypto_int64 f4g4 = f4 * (crypto_int64) g4;
117
+ crypto_int64 f4g5 = f4 * (crypto_int64) g5;
118
+ crypto_int64 f4g6_19 = f4 * (crypto_int64) g6_19;
119
+ crypto_int64 f4g7_19 = f4 * (crypto_int64) g7_19;
120
+ crypto_int64 f4g8_19 = f4 * (crypto_int64) g8_19;
121
+ crypto_int64 f4g9_19 = f4 * (crypto_int64) g9_19;
122
+ crypto_int64 f5g0 = f5 * (crypto_int64) g0;
123
+ crypto_int64 f5g1_2 = f5_2 * (crypto_int64) g1;
124
+ crypto_int64 f5g2 = f5 * (crypto_int64) g2;
125
+ crypto_int64 f5g3_2 = f5_2 * (crypto_int64) g3;
126
+ crypto_int64 f5g4 = f5 * (crypto_int64) g4;
127
+ crypto_int64 f5g5_38 = f5_2 * (crypto_int64) g5_19;
128
+ crypto_int64 f5g6_19 = f5 * (crypto_int64) g6_19;
129
+ crypto_int64 f5g7_38 = f5_2 * (crypto_int64) g7_19;
130
+ crypto_int64 f5g8_19 = f5 * (crypto_int64) g8_19;
131
+ crypto_int64 f5g9_38 = f5_2 * (crypto_int64) g9_19;
132
+ crypto_int64 f6g0 = f6 * (crypto_int64) g0;
133
+ crypto_int64 f6g1 = f6 * (crypto_int64) g1;
134
+ crypto_int64 f6g2 = f6 * (crypto_int64) g2;
135
+ crypto_int64 f6g3 = f6 * (crypto_int64) g3;
136
+ crypto_int64 f6g4_19 = f6 * (crypto_int64) g4_19;
137
+ crypto_int64 f6g5_19 = f6 * (crypto_int64) g5_19;
138
+ crypto_int64 f6g6_19 = f6 * (crypto_int64) g6_19;
139
+ crypto_int64 f6g7_19 = f6 * (crypto_int64) g7_19;
140
+ crypto_int64 f6g8_19 = f6 * (crypto_int64) g8_19;
141
+ crypto_int64 f6g9_19 = f6 * (crypto_int64) g9_19;
142
+ crypto_int64 f7g0 = f7 * (crypto_int64) g0;
143
+ crypto_int64 f7g1_2 = f7_2 * (crypto_int64) g1;
144
+ crypto_int64 f7g2 = f7 * (crypto_int64) g2;
145
+ crypto_int64 f7g3_38 = f7_2 * (crypto_int64) g3_19;
146
+ crypto_int64 f7g4_19 = f7 * (crypto_int64) g4_19;
147
+ crypto_int64 f7g5_38 = f7_2 * (crypto_int64) g5_19;
148
+ crypto_int64 f7g6_19 = f7 * (crypto_int64) g6_19;
149
+ crypto_int64 f7g7_38 = f7_2 * (crypto_int64) g7_19;
150
+ crypto_int64 f7g8_19 = f7 * (crypto_int64) g8_19;
151
+ crypto_int64 f7g9_38 = f7_2 * (crypto_int64) g9_19;
152
+ crypto_int64 f8g0 = f8 * (crypto_int64) g0;
153
+ crypto_int64 f8g1 = f8 * (crypto_int64) g1;
154
+ crypto_int64 f8g2_19 = f8 * (crypto_int64) g2_19;
155
+ crypto_int64 f8g3_19 = f8 * (crypto_int64) g3_19;
156
+ crypto_int64 f8g4_19 = f8 * (crypto_int64) g4_19;
157
+ crypto_int64 f8g5_19 = f8 * (crypto_int64) g5_19;
158
+ crypto_int64 f8g6_19 = f8 * (crypto_int64) g6_19;
159
+ crypto_int64 f8g7_19 = f8 * (crypto_int64) g7_19;
160
+ crypto_int64 f8g8_19 = f8 * (crypto_int64) g8_19;
161
+ crypto_int64 f8g9_19 = f8 * (crypto_int64) g9_19;
162
+ crypto_int64 f9g0 = f9 * (crypto_int64) g0;
163
+ crypto_int64 f9g1_38 = f9_2 * (crypto_int64) g1_19;
164
+ crypto_int64 f9g2_19 = f9 * (crypto_int64) g2_19;
165
+ crypto_int64 f9g3_38 = f9_2 * (crypto_int64) g3_19;
166
+ crypto_int64 f9g4_19 = f9 * (crypto_int64) g4_19;
167
+ crypto_int64 f9g5_38 = f9_2 * (crypto_int64) g5_19;
168
+ crypto_int64 f9g6_19 = f9 * (crypto_int64) g6_19;
169
+ crypto_int64 f9g7_38 = f9_2 * (crypto_int64) g7_19;
170
+ crypto_int64 f9g8_19 = f9 * (crypto_int64) g8_19;
171
+ crypto_int64 f9g9_38 = f9_2 * (crypto_int64) g9_19;
172
+ crypto_int64 h0 = f0g0+f1g9_38+f2g8_19+f3g7_38+f4g6_19+f5g5_38+f6g4_19+f7g3_38+f8g2_19+f9g1_38;
173
+ crypto_int64 h1 = f0g1+f1g0 +f2g9_19+f3g8_19+f4g7_19+f5g6_19+f6g5_19+f7g4_19+f8g3_19+f9g2_19;
174
+ crypto_int64 h2 = f0g2+f1g1_2 +f2g0 +f3g9_38+f4g8_19+f5g7_38+f6g6_19+f7g5_38+f8g4_19+f9g3_38;
175
+ crypto_int64 h3 = f0g3+f1g2 +f2g1 +f3g0 +f4g9_19+f5g8_19+f6g7_19+f7g6_19+f8g5_19+f9g4_19;
176
+ crypto_int64 h4 = f0g4+f1g3_2 +f2g2 +f3g1_2 +f4g0 +f5g9_38+f6g8_19+f7g7_38+f8g6_19+f9g5_38;
177
+ crypto_int64 h5 = f0g5+f1g4 +f2g3 +f3g2 +f4g1 +f5g0 +f6g9_19+f7g8_19+f8g7_19+f9g6_19;
178
+ crypto_int64 h6 = f0g6+f1g5_2 +f2g4 +f3g3_2 +f4g2 +f5g1_2 +f6g0 +f7g9_38+f8g8_19+f9g7_38;
179
+ crypto_int64 h7 = f0g7+f1g6 +f2g5 +f3g4 +f4g3 +f5g2 +f6g1 +f7g0 +f8g9_19+f9g8_19;
180
+ crypto_int64 h8 = f0g8+f1g7_2 +f2g6 +f3g5_2 +f4g4 +f5g3_2 +f6g2 +f7g1_2 +f8g0 +f9g9_38;
181
+ crypto_int64 h9 = f0g9+f1g8 +f2g7 +f3g6 +f4g5 +f5g4 +f6g3 +f7g2 +f8g1 +f9g0 ;
182
+ crypto_int64 carry0;
183
+ crypto_int64 carry1;
184
+ crypto_int64 carry2;
185
+ crypto_int64 carry3;
186
+ crypto_int64 carry4;
187
+ crypto_int64 carry5;
188
+ crypto_int64 carry6;
189
+ crypto_int64 carry7;
190
+ crypto_int64 carry8;
191
+ crypto_int64 carry9;
192
+
193
+ /*
194
+ |h0| <= (1.65*1.65*2^52*(1+19+19+19+19)+1.65*1.65*2^50*(38+38+38+38+38))
195
+ i.e. |h0| <= 1.4*2^60; narrower ranges for h2, h4, h6, h8
196
+ |h1| <= (1.65*1.65*2^51*(1+1+19+19+19+19+19+19+19+19))
197
+ i.e. |h1| <= 1.7*2^59; narrower ranges for h3, h5, h7, h9
198
+ */
199
+
200
+ carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
201
+ carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
202
+ /* |h0| <= 2^25 */
203
+ /* |h4| <= 2^25 */
204
+ /* |h1| <= 1.71*2^59 */
205
+ /* |h5| <= 1.71*2^59 */
206
+
207
+ carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25;
208
+ carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
209
+ /* |h1| <= 2^24; from now on fits into int32 */
210
+ /* |h5| <= 2^24; from now on fits into int32 */
211
+ /* |h2| <= 1.41*2^60 */
212
+ /* |h6| <= 1.41*2^60 */
213
+
214
+ carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26;
215
+ carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26;
216
+ /* |h2| <= 2^25; from now on fits into int32 unchanged */
217
+ /* |h6| <= 2^25; from now on fits into int32 unchanged */
218
+ /* |h3| <= 1.71*2^59 */
219
+ /* |h7| <= 1.71*2^59 */
220
+
221
+ carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
222
+ carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25;
223
+ /* |h3| <= 2^24; from now on fits into int32 unchanged */
224
+ /* |h7| <= 2^24; from now on fits into int32 unchanged */
225
+ /* |h4| <= 1.72*2^34 */
226
+ /* |h8| <= 1.41*2^60 */
227
+
228
+ carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
229
+ carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26;
230
+ /* |h4| <= 2^25; from now on fits into int32 unchanged */
231
+ /* |h8| <= 2^25; from now on fits into int32 unchanged */
232
+ /* |h5| <= 1.01*2^24 */
233
+ /* |h9| <= 1.71*2^59 */
234
+
235
+ carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25;
236
+ /* |h9| <= 2^24; from now on fits into int32 unchanged */
237
+ /* |h0| <= 1.1*2^39 */
238
+
239
+ carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
240
+ /* |h0| <= 2^25; from now on fits into int32 unchanged */
241
+ /* |h1| <= 1.01*2^24 */
242
+
243
+ h[0] = h0;
244
+ h[1] = h1;
245
+ h[2] = h2;
246
+ h[3] = h3;
247
+ h[4] = h4;
248
+ h[5] = h5;
249
+ h[6] = h6;
250
+ h[7] = h7;
251
+ h[8] = h8;
252
+ h[9] = h9;
253
+ }