rbnacl-libsodium 0.4.5a
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.gitmodules +3 -0
- data/CHANGES.md +3 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.md +23 -0
- data/Rakefile +1 -0
- data/ext/rbnacl/extconf.rb +30 -0
- data/lib/rbnacl/libsodium.rb +11 -0
- data/lib/rbnacl/libsodium/version.rb +5 -0
- data/rbnacl-libsodium.gemspec +25 -0
- data/vendor/libsodium/AUTHORS +101 -0
- data/vendor/libsodium/ChangeLog +68 -0
- data/vendor/libsodium/LICENSE +16 -0
- data/vendor/libsodium/Makefile.am +20 -0
- data/vendor/libsodium/README +1 -0
- data/vendor/libsodium/README.markdown +246 -0
- data/vendor/libsodium/THANKS +17 -0
- data/vendor/libsodium/autogen.sh +16 -0
- data/vendor/libsodium/configure.ac +405 -0
- data/vendor/libsodium/dist-build/android.sh +48 -0
- data/vendor/libsodium/dist-build/iphone.sh +16 -0
- data/vendor/libsodium/dist-build/msys.sh +9 -0
- data/vendor/libsodium/libsodium.pc.in +11 -0
- data/vendor/libsodium/libsodium.sln +38 -0
- data/vendor/libsodium/libsodium.vcxproj +508 -0
- data/vendor/libsodium/libsodium.vcxproj.filters +569 -0
- data/vendor/libsodium/logo.png +0 -0
- data/vendor/libsodium/m4/ax_check_compile_flag.m4 +73 -0
- data/vendor/libsodium/m4/ax_check_gnu_make.m4 +78 -0
- data/vendor/libsodium/m4/ax_check_link_flag.m4 +72 -0
- data/vendor/libsodium/m4/ld-output-def.m4 +29 -0
- data/vendor/libsodium/m4/pkg.m4 +214 -0
- data/vendor/libsodium/msvc-scripts/Makefile.am +4 -0
- data/vendor/libsodium/msvc-scripts/process.bat +8 -0
- data/vendor/libsodium/msvc-scripts/rep.vbs +12 -0
- data/vendor/libsodium/msvc-scripts/sodium.props +25 -0
- data/vendor/libsodium/src/Makefile.am +3 -0
- data/vendor/libsodium/src/libsodium/Makefile.am +232 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/crypto_auth.c +34 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/api.h +10 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/hmac_hmacsha256.c +83 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha256/ref/verify_hmacsha256.c +9 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/api.h +10 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c +86 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c +9 -0
- data/vendor/libsodium/src/libsodium/crypto_auth/try.c +119 -0
- data/vendor/libsodium/src/libsodium/crypto_box/crypto_box.c +95 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c +41 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c +22 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h +19 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c +19 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c +27 -0
- data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +12 -0
- data/vendor/libsodium/src/libsodium/crypto_box/try.c +195 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c +108 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/core_salsa20_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c +134 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c +134 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/core_salsa208_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c +134 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c +31 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/api.h +4 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +132 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +169 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +364 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2s-ref.c +355 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +61 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c +84 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/crypto_hash.c +9 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256_api.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/ref/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/ref/hash_sha256.c +69 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512_api.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/ref/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/ref/hash_sha512.c +71 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/try.c +76 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/hashblocks_sha256_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/ref/api.h +9 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha256/ref/blocks_sha256.c +212 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/hashblocks_sha512_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/ref/api.h +9 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/sha512/ref/blocks_sha512.c +239 -0
- data/vendor/libsodium/src/libsodium/crypto_hashblocks/try.c +78 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c +34 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/auth_poly1305_53.c +1661 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/53/verify_poly1305_53.c +10 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +151 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h +772 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c +10 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +36 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c +152 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c +34 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h +9 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c +13 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c +426 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/base_curve25519_ref.c +20 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref/smult_curve25519_ref.c +268 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c +14 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/try.c +125 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c +48 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/try.c +129 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h +12 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c +35 -0
- data/vendor/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c +27 -0
- data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c +91 -0
- data/vendor/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/crypto_sign.c +61 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/description +1 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/api.h +14 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base.h +1344 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/base2.h +40 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d2.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe.h +56 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_0.c +19 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_1.c +19 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_add.c +57 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_cmov.c +63 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_copy.c +29 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c +73 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_invert.c +14 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnegative.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnonzero.c +19 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c +253 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_neg.c +45 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_pow22523.c +13 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c +149 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c +160 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sub.c +57 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_tobytes.c +119 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge.h +95 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.h +97 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c +96 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_frombytes.c +50 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.h +88 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.h +88 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p2.c +12 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p3.c +13 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_0.c +8 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.h +73 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_0.c +9 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_dbl.c +12 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_cached.c +17 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_p2.c +12 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_tobytes.c +14 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_precomp_0.c +8 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_scalarmult_base.c +105 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.c +11 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h +97 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c +14 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +31 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +40 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow22523.h +160 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow225521.h +160 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc.h +15 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_muladd.c +368 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_reduce.c +275 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +38 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c +26 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h +13 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h +54 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c +348 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h +34 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c +230 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h +51 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c +146 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c +102 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c +21 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/try.c +87 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c +159 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/api.h +14 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c +59 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common.h +788 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c +64 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/consts.h +28 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c +14 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128.h +47 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c +131 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c +28 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/types.h +10 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c +181 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c +21 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-be.h +274 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-le.h +274 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table.h +56 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes256-ctr.c +238 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/aes256.h +171 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/api.h +14 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/hongjun/ecrypt-sync.h +27 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/aes256estream/stream_aes256estream_api.c +21 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/crypto_stream.c +36 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.S +950 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/api.h +8 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +55 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +58 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +51 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +54 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/api.h +10 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +51 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +54 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/try.c +122 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/api.h +11 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c +24 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c +25 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20_api.c +16 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/16/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/api.h +2 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/16/ref/verify_16.c +24 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/16/verify_16_api.c +6 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/32/checksum +1 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/api.h +2 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/32/ref/verify_32.c +40 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/32/verify_32_api.c +6 -0
- data/vendor/libsodium/src/libsodium/crypto_verify/try.c +76 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.am +63 -0
- data/vendor/libsodium/src/libsodium/include/sodium.h +48 -0
- data/vendor/libsodium/src/libsodium/include/sodium/core.h +18 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth.h +36 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha256.h +36 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_auth_hmacsha512256.h +36 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_box.h +83 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h +72 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_hsalsa20.h +40 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa20.h +40 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa2012.h +40 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_salsa208.h +40 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash.h +70 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_generichash_blake2b.h +87 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash.h +23 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha256.h +29 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hash_sha512.h +29 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hashblocks_sha256.h +32 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_hashblocks_sha512.h +32 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_int32.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_int64.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth.h +37 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h +65 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_53.h +34 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_donna.h +34 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +36 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h.in +44 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox.h +47 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h +44 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_shorthash.h +33 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_shorthash_siphash24.h +29 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign.h +61 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_ed25519.h +52 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h +44 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream.h +46 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_aes128ctr.h +60 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_aes256estream.h +61 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa20.h.in +54 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa2012.h +43 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_salsa208.h +43 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_stream_xsalsa20.h +44 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint16.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint32.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint64.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_uint8.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_16.h +25 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_verify_32.h +25 -0
- data/vendor/libsodium/src/libsodium/include/sodium/export.h +32 -0
- data/vendor/libsodium/src/libsodium/include/sodium/randombytes.h +53 -0
- data/vendor/libsodium/src/libsodium/include/sodium/randombytes_salsa20_random.h +45 -0
- data/vendor/libsodium/src/libsodium/include/sodium/randombytes_sysrandom.h +45 -0
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +36 -0
- data/vendor/libsodium/src/libsodium/include/sodium/version.h.in +29 -0
- data/vendor/libsodium/src/libsodium/randombytes/randombytes.c +63 -0
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +317 -0
- data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +212 -0
- data/vendor/libsodium/src/libsodium/sodium/compat.c +248 -0
- data/vendor/libsodium/src/libsodium/sodium/core.c +21 -0
- data/vendor/libsodium/src/libsodium/sodium/utils.c +94 -0
- data/vendor/libsodium/src/libsodium/sodium/version.c +20 -0
- data/vendor/libsodium/test/Makefile.am +5 -0
- data/vendor/libsodium/test/default/Makefile.am +277 -0
- data/vendor/libsodium/test/default/auth.c +21 -0
- data/vendor/libsodium/test/default/auth.exp +4 -0
- data/vendor/libsodium/test/default/auth2.c +36 -0
- data/vendor/libsodium/test/default/auth2.exp +4 -0
- data/vendor/libsodium/test/default/auth3.c +36 -0
- data/vendor/libsodium/test/default/auth3.exp +1 -0
- data/vendor/libsodium/test/default/auth5.c +37 -0
- data/vendor/libsodium/test/default/auth5.exp +0 -0
- data/vendor/libsodium/test/default/box.c +65 -0
- data/vendor/libsodium/test/default/box.exp +19 -0
- data/vendor/libsodium/test/default/box2.c +66 -0
- data/vendor/libsodium/test/default/box2.exp +17 -0
- data/vendor/libsodium/test/default/box7.c +37 -0
- data/vendor/libsodium/test/default/box7.exp +0 -0
- data/vendor/libsodium/test/default/box8.c +44 -0
- data/vendor/libsodium/test/default/box8.exp +0 -0
- data/vendor/libsodium/test/default/cmptest.h +51 -0
- data/vendor/libsodium/test/default/core1.c +32 -0
- data/vendor/libsodium/test/default/core1.exp +4 -0
- data/vendor/libsodium/test/default/core2.c +35 -0
- data/vendor/libsodium/test/default/core2.exp +4 -0
- data/vendor/libsodium/test/default/core3.c +42 -0
- data/vendor/libsodium/test/default/core3.exp +1 -0
- data/vendor/libsodium/test/default/core4.c +35 -0
- data/vendor/libsodium/test/default/core4.exp +8 -0
- data/vendor/libsodium/test/default/core5.c +34 -0
- data/vendor/libsodium/test/default/core5.exp +4 -0
- data/vendor/libsodium/test/default/core6.c +49 -0
- data/vendor/libsodium/test/default/core6.exp +4 -0
- data/vendor/libsodium/test/default/generichash.c +27 -0
- data/vendor/libsodium/test/default/generichash.exp +64 -0
- data/vendor/libsodium/test/default/generichash2.c +31 -0
- data/vendor/libsodium/test/default/generichash2.exp +64 -0
- data/vendor/libsodium/test/default/hash.c +16 -0
- data/vendor/libsodium/test/default/hash.exp +1 -0
- data/vendor/libsodium/test/default/hash2.exp +1 -0
- data/vendor/libsodium/test/default/hash3.c +16 -0
- data/vendor/libsodium/test/default/hash3.exp +1 -0
- data/vendor/libsodium/test/default/onetimeauth.c +44 -0
- data/vendor/libsodium/test/default/onetimeauth.exp +2 -0
- data/vendor/libsodium/test/default/onetimeauth2.c +42 -0
- data/vendor/libsodium/test/default/onetimeauth2.exp +1 -0
- data/vendor/libsodium/test/default/onetimeauth7.c +37 -0
- data/vendor/libsodium/test/default/onetimeauth7.exp +0 -0
- data/vendor/libsodium/test/default/pre.js +33 -0
- data/vendor/libsodium/test/default/randombytes.c +16 -0
- data/vendor/libsodium/test/default/scalarmult.c +25 -0
- data/vendor/libsodium/test/default/scalarmult.exp +4 -0
- data/vendor/libsodium/test/default/scalarmult2.c +25 -0
- data/vendor/libsodium/test/default/scalarmult2.exp +4 -0
- data/vendor/libsodium/test/default/scalarmult5.c +32 -0
- data/vendor/libsodium/test/default/scalarmult5.exp +4 -0
- data/vendor/libsodium/test/default/scalarmult6.c +32 -0
- data/vendor/libsodium/test/default/scalarmult6.exp +4 -0
- data/vendor/libsodium/test/default/scalarmult7.c +34 -0
- data/vendor/libsodium/test/default/scalarmult7.exp +1 -0
- data/vendor/libsodium/test/default/scalarmult8.c +34 -0
- data/vendor/libsodium/test/default/scalarmult8.exp +1 -0
- data/vendor/libsodium/test/default/secretbox.c +58 -0
- data/vendor/libsodium/test/default/secretbox.exp +19 -0
- data/vendor/libsodium/test/default/secretbox2.c +59 -0
- data/vendor/libsodium/test/default/secretbox2.exp +17 -0
- data/vendor/libsodium/test/default/secretbox7.c +33 -0
- data/vendor/libsodium/test/default/secretbox7.exp +0 -0
- data/vendor/libsodium/test/default/secretbox8.c +40 -0
- data/vendor/libsodium/test/default/secretbox8.exp +0 -0
- data/vendor/libsodium/test/default/shorthash.c +23 -0
- data/vendor/libsodium/test/default/shorthash.exp +64 -0
- data/vendor/libsodium/test/default/sodium_core.c +11 -0
- data/vendor/libsodium/test/default/sodium_core.exp +1 -0
- data/vendor/libsodium/test/default/sodium_utils.c +27 -0
- data/vendor/libsodium/test/default/sodium_utils.exp +6 -0
- data/vendor/libsodium/test/default/sodium_version.c +13 -0
- data/vendor/libsodium/test/default/sodium_version.exp +3 -0
- data/vendor/libsodium/test/default/stream.c +30 -0
- data/vendor/libsodium/test/default/stream.exp +1 -0
- data/vendor/libsodium/test/default/stream2.c +28 -0
- data/vendor/libsodium/test/default/stream2.exp +1 -0
- data/vendor/libsodium/test/default/stream3.c +30 -0
- data/vendor/libsodium/test/default/stream3.exp +4 -0
- data/vendor/libsodium/test/default/stream4.c +55 -0
- data/vendor/libsodium/test/default/stream4.exp +17 -0
- data/vendor/libsodium/test/default/stream5.c +29 -0
- data/vendor/libsodium/test/default/stream5.exp +1 -0
- data/vendor/libsodium/test/default/stream6.c +54 -0
- data/vendor/libsodium/test/default/stream6.exp +17 -0
- data/vendor/libsodium/test/default/wintest.bat +56 -0
- data/vendor/libsodium/test/quirks/windows/windows-quirks.h +18 -0
- 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,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,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
|
+
}
|