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,63 @@
|
|
1
|
+
|
2
|
+
#include <sys/types.h>
|
3
|
+
|
4
|
+
#include <assert.h>
|
5
|
+
#include <limits.h>
|
6
|
+
#include <stdint.h>
|
7
|
+
|
8
|
+
#include "randombytes.h"
|
9
|
+
#include "randombytes_sysrandom.h"
|
10
|
+
|
11
|
+
static const randombytes_implementation *implementation =
|
12
|
+
&randombytes_sysrandom_implementation;
|
13
|
+
|
14
|
+
int
|
15
|
+
randombytes_set_implementation(randombytes_implementation *impl)
|
16
|
+
{
|
17
|
+
implementation = impl;
|
18
|
+
|
19
|
+
return 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
const char *
|
23
|
+
randombytes_implementation_name(void)
|
24
|
+
{
|
25
|
+
return implementation->implementation_name();
|
26
|
+
}
|
27
|
+
|
28
|
+
uint32_t
|
29
|
+
randombytes_random(void)
|
30
|
+
{
|
31
|
+
return implementation->random();
|
32
|
+
}
|
33
|
+
|
34
|
+
void
|
35
|
+
randombytes_stir(void)
|
36
|
+
{
|
37
|
+
implementation->stir();
|
38
|
+
}
|
39
|
+
|
40
|
+
uint32_t
|
41
|
+
randombytes_uniform(const uint32_t upper_bound)
|
42
|
+
{
|
43
|
+
return implementation->uniform(upper_bound);
|
44
|
+
}
|
45
|
+
|
46
|
+
void
|
47
|
+
randombytes_buf(void * const buf, const size_t size)
|
48
|
+
{
|
49
|
+
implementation->buf(buf, size);
|
50
|
+
}
|
51
|
+
|
52
|
+
int
|
53
|
+
randombytes_close(void)
|
54
|
+
{
|
55
|
+
return implementation->close();
|
56
|
+
}
|
57
|
+
|
58
|
+
void
|
59
|
+
randombytes(unsigned char * const buf, const unsigned long long buf_len)
|
60
|
+
{
|
61
|
+
assert(buf_len <= SIZE_MAX);
|
62
|
+
randombytes_buf(buf, (size_t) buf_len);
|
63
|
+
}
|
@@ -0,0 +1,317 @@
|
|
1
|
+
|
2
|
+
#include <sys/types.h>
|
3
|
+
#ifndef _WIN32
|
4
|
+
# include <sys/time.h>
|
5
|
+
#endif
|
6
|
+
|
7
|
+
#include <assert.h>
|
8
|
+
#include <errno.h>
|
9
|
+
#include <fcntl.h>
|
10
|
+
#include <limits.h>
|
11
|
+
#include <stdint.h>
|
12
|
+
#include <stdlib.h>
|
13
|
+
#include <string.h>
|
14
|
+
#ifndef _MSC_VER
|
15
|
+
# include <unistd.h>
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#include "crypto_core_salsa20.h"
|
19
|
+
#include "crypto_auth_hmacsha512256.h"
|
20
|
+
#include "crypto_stream_salsa20.h"
|
21
|
+
#include "randombytes.h"
|
22
|
+
#include "randombytes_salsa20_random.h"
|
23
|
+
#include "utils.h"
|
24
|
+
|
25
|
+
#ifdef _WIN32
|
26
|
+
# include <windows.h>
|
27
|
+
# include <wincrypt.h>
|
28
|
+
# include <sys/timeb.h>
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#define SALSA20_RANDOM_BLOCK_SIZE crypto_core_salsa20_OUTPUTBYTES
|
32
|
+
#define SHA512_BLOCK_SIZE 128U
|
33
|
+
#define SHA512_MIN_PAD_SIZE (1U + 16U)
|
34
|
+
#define COMPILER_ASSERT(X) (void) sizeof(char[(X) ? 1 : -1])
|
35
|
+
|
36
|
+
typedef struct Salsa20Random_ {
|
37
|
+
unsigned char key[crypto_stream_salsa20_KEYBYTES];
|
38
|
+
unsigned char rnd32[SALSA20_RANDOM_BLOCK_SIZE];
|
39
|
+
uint64_t nonce;
|
40
|
+
size_t rnd32_outleft;
|
41
|
+
#ifndef _MSC_VER
|
42
|
+
pid_t pid;
|
43
|
+
#endif
|
44
|
+
#ifdef _WIN32
|
45
|
+
HCRYPTPROV hcrypt_prov;
|
46
|
+
#endif
|
47
|
+
int random_data_source_fd;
|
48
|
+
int initialized;
|
49
|
+
} Salsa20Random;
|
50
|
+
|
51
|
+
static Salsa20Random stream = {
|
52
|
+
_SODIUM_C99(.random_data_source_fd =) -1,
|
53
|
+
_SODIUM_C99(.rnd32_outleft =) (size_t) 0U,
|
54
|
+
_SODIUM_C99(.initialized =) 0
|
55
|
+
};
|
56
|
+
|
57
|
+
static uint64_t
|
58
|
+
sodium_hrtime(void)
|
59
|
+
{
|
60
|
+
struct timeval tv;
|
61
|
+
uint64_t ts = (uint64_t) 0U;
|
62
|
+
int ret;
|
63
|
+
|
64
|
+
#ifdef _WIN32
|
65
|
+
struct _timeb tb;
|
66
|
+
|
67
|
+
_ftime(&tb);
|
68
|
+
tv.tv_sec = (long) tb.time;
|
69
|
+
tv.tv_usec = ((int) tb.millitm) * 1000;
|
70
|
+
ret = 0;
|
71
|
+
#else
|
72
|
+
ret = gettimeofday(&tv, NULL);
|
73
|
+
#endif
|
74
|
+
assert(ret == 0);
|
75
|
+
if (ret == 0) {
|
76
|
+
ts = (uint64_t) tv.tv_sec * 1000000U + (uint64_t) tv.tv_usec;
|
77
|
+
}
|
78
|
+
return ts;
|
79
|
+
}
|
80
|
+
|
81
|
+
#ifndef _WIN32
|
82
|
+
static ssize_t
|
83
|
+
safe_read(const int fd, void * const buf_, size_t count)
|
84
|
+
{
|
85
|
+
unsigned char *buf = (unsigned char *) buf_;
|
86
|
+
ssize_t readnb;
|
87
|
+
|
88
|
+
do {
|
89
|
+
while ((readnb = read(fd, buf, count)) < (ssize_t) 0 &&
|
90
|
+
errno == EINTR);
|
91
|
+
if (readnb < (ssize_t) 0) {
|
92
|
+
return readnb;
|
93
|
+
}
|
94
|
+
if (readnb == (ssize_t) 0) {
|
95
|
+
break;
|
96
|
+
}
|
97
|
+
count -= (size_t) readnb;
|
98
|
+
buf += readnb;
|
99
|
+
} while (count > (ssize_t) 0);
|
100
|
+
|
101
|
+
return (ssize_t) (buf - (unsigned char *) buf_);
|
102
|
+
}
|
103
|
+
#endif
|
104
|
+
|
105
|
+
#ifndef _WIN32
|
106
|
+
static int
|
107
|
+
randombytes_salsa20_random_random_dev_open(void)
|
108
|
+
{
|
109
|
+
static const char * const devices[] = {
|
110
|
+
# ifndef USE_BLOCKING_RANDOM
|
111
|
+
"/dev/arandom", "/dev/urandom",
|
112
|
+
# endif
|
113
|
+
"/dev/random", NULL
|
114
|
+
};
|
115
|
+
const char * const *device = devices;
|
116
|
+
|
117
|
+
do {
|
118
|
+
if (access(*device, F_OK | R_OK) == 0) {
|
119
|
+
return open(*device, O_RDONLY);
|
120
|
+
}
|
121
|
+
device++;
|
122
|
+
} while (*device != NULL);
|
123
|
+
|
124
|
+
return -1;
|
125
|
+
}
|
126
|
+
|
127
|
+
static void
|
128
|
+
randombytes_salsa20_random_init(void)
|
129
|
+
{
|
130
|
+
stream.nonce = sodium_hrtime();
|
131
|
+
assert(stream.nonce != (uint64_t) 0U);
|
132
|
+
|
133
|
+
if ((stream.random_data_source_fd =
|
134
|
+
randombytes_salsa20_random_random_dev_open()) == -1) {
|
135
|
+
abort();
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
#else /* _WIN32 */
|
140
|
+
|
141
|
+
static void
|
142
|
+
randombytes_salsa20_random_init(void)
|
143
|
+
{
|
144
|
+
stream.nonce = sodium_hrtime();
|
145
|
+
assert(stream.nonce != (uint64_t) 0U);
|
146
|
+
|
147
|
+
if (! CryptAcquireContext(&stream.hcrypt_prov, NULL, NULL,
|
148
|
+
PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) {
|
149
|
+
abort();
|
150
|
+
}
|
151
|
+
}
|
152
|
+
#endif
|
153
|
+
|
154
|
+
void
|
155
|
+
randombytes_salsa20_random_stir(void)
|
156
|
+
{
|
157
|
+
const unsigned char s[crypto_auth_hmacsha512256_KEYBYTES] = {
|
158
|
+
'T', 'h', 'i', 's', 'I', 's', 'J', 'u', 's', 't', 'A', 'T',
|
159
|
+
'h', 'i', 'r', 't', 'y', 'T', 'w', 'o', 'B', 'y', 't', 'e',
|
160
|
+
's', 'S', 'e', 'e', 'd', '.', '.', '.'
|
161
|
+
};
|
162
|
+
unsigned char m0[crypto_auth_hmacsha512256_BYTES +
|
163
|
+
2U * SHA512_BLOCK_SIZE - SHA512_MIN_PAD_SIZE];
|
164
|
+
unsigned char *k0 = m0 + crypto_auth_hmacsha512256_BYTES;
|
165
|
+
size_t i;
|
166
|
+
size_t sizeof_k0 = sizeof m0 - crypto_auth_hmacsha512256_BYTES;
|
167
|
+
|
168
|
+
memset(stream.rnd32, 0, sizeof stream.rnd32);
|
169
|
+
stream.rnd32_outleft = (size_t) 0U;
|
170
|
+
if (stream.initialized == 0) {
|
171
|
+
randombytes_salsa20_random_init();
|
172
|
+
stream.initialized = 1;
|
173
|
+
}
|
174
|
+
#ifndef _WIN32
|
175
|
+
if (safe_read(stream.random_data_source_fd, m0,
|
176
|
+
sizeof m0) != (ssize_t) sizeof m0) {
|
177
|
+
abort();
|
178
|
+
}
|
179
|
+
#else /* _WIN32 */
|
180
|
+
if (! CryptGenRandom(stream.hcrypt_prov, sizeof m0, (BYTE *) m0)) {
|
181
|
+
abort();
|
182
|
+
}
|
183
|
+
#endif
|
184
|
+
COMPILER_ASSERT(sizeof stream.key == crypto_auth_hmacsha512256_BYTES);
|
185
|
+
crypto_auth_hmacsha512256(stream.key, k0, sizeof_k0, s);
|
186
|
+
COMPILER_ASSERT(sizeof stream.key <= sizeof m0);
|
187
|
+
for (i = (size_t) 0U; i < sizeof stream.key; i++) {
|
188
|
+
stream.key[i] ^= m0[i];
|
189
|
+
}
|
190
|
+
sodium_memzero(m0, sizeof m0);
|
191
|
+
}
|
192
|
+
|
193
|
+
static void
|
194
|
+
randombytes_salsa20_random_stir_if_needed(void)
|
195
|
+
{
|
196
|
+
#ifdef _MSC_VER
|
197
|
+
if (stream.initialized == 0) {
|
198
|
+
randombytes_salsa20_random_stir();
|
199
|
+
}
|
200
|
+
#else
|
201
|
+
const pid_t pid = getpid();
|
202
|
+
|
203
|
+
if (stream.initialized == 0 || stream.pid != pid) {
|
204
|
+
stream.pid = pid;
|
205
|
+
randombytes_salsa20_random_stir();
|
206
|
+
}
|
207
|
+
#endif
|
208
|
+
}
|
209
|
+
|
210
|
+
static uint32_t
|
211
|
+
randombytes_salsa20_random_getword(void)
|
212
|
+
{
|
213
|
+
uint32_t val;
|
214
|
+
int ret;
|
215
|
+
|
216
|
+
COMPILER_ASSERT(sizeof stream.rnd32 >= sizeof val);
|
217
|
+
COMPILER_ASSERT(sizeof stream.rnd32 % sizeof val == (size_t) 0U);
|
218
|
+
if (stream.rnd32_outleft <= (size_t) 0U) {
|
219
|
+
randombytes_salsa20_random_stir_if_needed();
|
220
|
+
COMPILER_ASSERT(sizeof stream.nonce == crypto_stream_salsa20_NONCEBYTES);
|
221
|
+
ret = crypto_stream_salsa20((unsigned char *) stream.rnd32,
|
222
|
+
(unsigned long long) sizeof stream.rnd32,
|
223
|
+
(unsigned char *) &stream.nonce,
|
224
|
+
stream.key);
|
225
|
+
assert(ret == 0);
|
226
|
+
stream.nonce++;
|
227
|
+
stream.rnd32_outleft = sizeof stream.rnd32;
|
228
|
+
}
|
229
|
+
stream.rnd32_outleft -= sizeof val;
|
230
|
+
memcpy(&val, &stream.rnd32[stream.rnd32_outleft], sizeof val);
|
231
|
+
|
232
|
+
return val;
|
233
|
+
}
|
234
|
+
|
235
|
+
int
|
236
|
+
randombytes_salsa20_random_close(void)
|
237
|
+
{
|
238
|
+
int ret = -1;
|
239
|
+
|
240
|
+
#ifndef _WIN32
|
241
|
+
if (stream.random_data_source_fd != -1 &&
|
242
|
+
close(stream.random_data_source_fd) == 0) {
|
243
|
+
stream.random_data_source_fd = -1;
|
244
|
+
stream.initialized = 0;
|
245
|
+
ret = 0;
|
246
|
+
}
|
247
|
+
#else /* _WIN32 */
|
248
|
+
if (stream.initialized != 0 &&
|
249
|
+
CryptReleaseContext(stream.hcrypt_prov, 0)) {
|
250
|
+
stream.initialized = 0;
|
251
|
+
ret = 0;
|
252
|
+
}
|
253
|
+
#endif
|
254
|
+
return ret;
|
255
|
+
}
|
256
|
+
|
257
|
+
uint32_t
|
258
|
+
randombytes_salsa20_random(void)
|
259
|
+
{
|
260
|
+
return randombytes_salsa20_random_getword();
|
261
|
+
}
|
262
|
+
|
263
|
+
void
|
264
|
+
randombytes_salsa20_random_buf(void * const buf, const size_t size)
|
265
|
+
{
|
266
|
+
int ret;
|
267
|
+
|
268
|
+
randombytes_salsa20_random_stir_if_needed();
|
269
|
+
COMPILER_ASSERT(sizeof stream.nonce == crypto_stream_salsa20_NONCEBYTES);
|
270
|
+
#ifdef ULONG_LONG_MAX
|
271
|
+
assert(size <= ULONG_LONG_MAX);
|
272
|
+
#endif
|
273
|
+
ret = crypto_stream_salsa20((unsigned char *) buf, (unsigned long long) size,
|
274
|
+
(unsigned char *) &stream.nonce,
|
275
|
+
stream.key);
|
276
|
+
assert(ret == 0);
|
277
|
+
stream.nonce++;
|
278
|
+
}
|
279
|
+
|
280
|
+
/*
|
281
|
+
* randombytes_salsa20_random_uniform() derives from OpenBSD's arc4random_uniform()
|
282
|
+
* Copyright (c) 2008, Damien Miller <djm@openbsd.org>
|
283
|
+
*/
|
284
|
+
|
285
|
+
uint32_t
|
286
|
+
randombytes_salsa20_random_uniform(const uint32_t upper_bound)
|
287
|
+
{
|
288
|
+
uint32_t min;
|
289
|
+
uint32_t r;
|
290
|
+
|
291
|
+
if (upper_bound < 2) {
|
292
|
+
return 0;
|
293
|
+
}
|
294
|
+
min = (uint32_t) (-upper_bound % upper_bound);
|
295
|
+
for (;;) {
|
296
|
+
r = randombytes_salsa20_random();
|
297
|
+
if (r >= min) {
|
298
|
+
break;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
return r % upper_bound;
|
302
|
+
}
|
303
|
+
|
304
|
+
const char *
|
305
|
+
randombytes_salsa20_implementation_name(void)
|
306
|
+
{
|
307
|
+
return "salsa20";
|
308
|
+
}
|
309
|
+
|
310
|
+
struct randombytes_implementation randombytes_salsa20_implementation = {
|
311
|
+
_SODIUM_C99(.implementation_name =) randombytes_salsa20_implementation_name,
|
312
|
+
_SODIUM_C99(.random =) randombytes_salsa20_random,
|
313
|
+
_SODIUM_C99(.stir =) randombytes_salsa20_random_stir,
|
314
|
+
_SODIUM_C99(.uniform =) randombytes_salsa20_random_uniform,
|
315
|
+
_SODIUM_C99(.buf =) randombytes_salsa20_random_buf,
|
316
|
+
_SODIUM_C99(.close =) randombytes_salsa20_random_close
|
317
|
+
};
|
@@ -0,0 +1,212 @@
|
|
1
|
+
|
2
|
+
#include <sys/types.h>
|
3
|
+
#ifndef _WIN32
|
4
|
+
# include <sys/time.h>
|
5
|
+
#endif
|
6
|
+
|
7
|
+
#include <assert.h>
|
8
|
+
#include <errno.h>
|
9
|
+
#include <fcntl.h>
|
10
|
+
#include <limits.h>
|
11
|
+
#include <stdint.h>
|
12
|
+
#include <stdlib.h>
|
13
|
+
#include <string.h>
|
14
|
+
#ifndef _WIN32
|
15
|
+
# include <poll.h>
|
16
|
+
# include <unistd.h>
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#include "randombytes.h"
|
20
|
+
#include "randombytes_sysrandom.h"
|
21
|
+
#include "utils.h"
|
22
|
+
|
23
|
+
#ifdef _WIN32
|
24
|
+
# include <windows.h>
|
25
|
+
# include <wincrypt.h>
|
26
|
+
#endif
|
27
|
+
|
28
|
+
typedef struct SysRandom_ {
|
29
|
+
#ifdef _WIN32
|
30
|
+
HCRYPTPROV hcrypt_prov;
|
31
|
+
#endif
|
32
|
+
int random_data_source_fd;
|
33
|
+
int initialized;
|
34
|
+
} SysRandom;
|
35
|
+
|
36
|
+
static SysRandom stream = {
|
37
|
+
_SODIUM_C99(.random_data_source_fd =) -1,
|
38
|
+
_SODIUM_C99(.initialized =) 0
|
39
|
+
};
|
40
|
+
|
41
|
+
#ifndef _WIN32
|
42
|
+
static ssize_t
|
43
|
+
safe_read(const int fd, void * const buf_, size_t count)
|
44
|
+
{
|
45
|
+
unsigned char *buf = (unsigned char *) buf_;
|
46
|
+
ssize_t readnb;
|
47
|
+
|
48
|
+
do {
|
49
|
+
while ((readnb = read(fd, buf, count)) < (ssize_t) 0 &&
|
50
|
+
errno == EINTR);
|
51
|
+
if (readnb < (ssize_t) 0) {
|
52
|
+
return readnb;
|
53
|
+
}
|
54
|
+
if (readnb == (ssize_t) 0) {
|
55
|
+
break;
|
56
|
+
}
|
57
|
+
count -= (size_t) readnb;
|
58
|
+
buf += readnb;
|
59
|
+
} while (count > (ssize_t) 0);
|
60
|
+
|
61
|
+
return (ssize_t) (buf - (unsigned char *) buf_);
|
62
|
+
}
|
63
|
+
#endif
|
64
|
+
|
65
|
+
#ifndef _WIN32
|
66
|
+
static int
|
67
|
+
randombytes_sysrandom_random_dev_open(void)
|
68
|
+
{
|
69
|
+
static const char * const devices[] = {
|
70
|
+
# ifndef USE_BLOCKING_RANDOM
|
71
|
+
"/dev/arandom", "/dev/urandom",
|
72
|
+
# endif
|
73
|
+
"/dev/random", NULL
|
74
|
+
};
|
75
|
+
const char * const *device = devices;
|
76
|
+
|
77
|
+
do {
|
78
|
+
if (access(*device, F_OK | R_OK) == 0) {
|
79
|
+
return open(*device, O_RDONLY);
|
80
|
+
}
|
81
|
+
device++;
|
82
|
+
} while (*device != NULL);
|
83
|
+
|
84
|
+
return -1;
|
85
|
+
}
|
86
|
+
|
87
|
+
static void
|
88
|
+
randombytes_sysrandom_init(void)
|
89
|
+
{
|
90
|
+
if ((stream.random_data_source_fd =
|
91
|
+
randombytes_sysrandom_random_dev_open()) == -1) {
|
92
|
+
abort();
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
#else /* _WIN32 */
|
97
|
+
|
98
|
+
static void
|
99
|
+
randombytes_sysrandom_init(void)
|
100
|
+
{
|
101
|
+
if (! CryptAcquireContext(&stream.hcrypt_prov, NULL, NULL,
|
102
|
+
PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) {
|
103
|
+
abort();
|
104
|
+
}
|
105
|
+
}
|
106
|
+
#endif
|
107
|
+
|
108
|
+
void
|
109
|
+
randombytes_sysrandom_stir(void)
|
110
|
+
{
|
111
|
+
if (stream.initialized == 0) {
|
112
|
+
randombytes_sysrandom_init();
|
113
|
+
stream.initialized = 1;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
static void
|
118
|
+
randombytes_sysrandom_stir_if_needed(void)
|
119
|
+
{
|
120
|
+
if (stream.initialized == 0) {
|
121
|
+
randombytes_sysrandom_stir();
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
int
|
126
|
+
randombytes_sysrandom_close(void)
|
127
|
+
{
|
128
|
+
int ret = -1;
|
129
|
+
|
130
|
+
#ifndef _WIN32
|
131
|
+
if (stream.random_data_source_fd != -1 &&
|
132
|
+
close(stream.random_data_source_fd) == 0) {
|
133
|
+
stream.random_data_source_fd = -1;
|
134
|
+
stream.initialized = 0;
|
135
|
+
ret = 0;
|
136
|
+
}
|
137
|
+
#else /* _WIN32 */
|
138
|
+
if (stream.initialized != 0 &&
|
139
|
+
CryptReleaseContext(stream.hcrypt_prov, 0)) {
|
140
|
+
stream.initialized = 0;
|
141
|
+
ret = 0;
|
142
|
+
}
|
143
|
+
#endif
|
144
|
+
return ret;
|
145
|
+
}
|
146
|
+
|
147
|
+
uint32_t
|
148
|
+
randombytes_sysrandom(void)
|
149
|
+
{
|
150
|
+
uint32_t r;
|
151
|
+
|
152
|
+
randombytes_sysrandom_buf(&r, sizeof r);
|
153
|
+
|
154
|
+
return r;
|
155
|
+
}
|
156
|
+
|
157
|
+
void
|
158
|
+
randombytes_sysrandom_buf(void * const buf, const size_t size)
|
159
|
+
{
|
160
|
+
randombytes_sysrandom_stir_if_needed();
|
161
|
+
#ifdef ULONG_LONG_MAX
|
162
|
+
assert(size <= ULONG_LONG_MAX);
|
163
|
+
#endif
|
164
|
+
#ifndef _WIN32
|
165
|
+
if (safe_read(stream.random_data_source_fd, buf, size) != (ssize_t) size) {
|
166
|
+
abort();
|
167
|
+
}
|
168
|
+
#else
|
169
|
+
if (! CryptGenRandom(stream.hcrypt_prov, size, (BYTE *) buf)) {
|
170
|
+
abort();
|
171
|
+
}
|
172
|
+
#endif
|
173
|
+
}
|
174
|
+
|
175
|
+
/*
|
176
|
+
* randombytes_sysrandom_uniform() derives from OpenBSD's arc4random_uniform()
|
177
|
+
* Copyright (c) 2008, Damien Miller <djm@openbsd.org>
|
178
|
+
*/
|
179
|
+
|
180
|
+
uint32_t
|
181
|
+
randombytes_sysrandom_uniform(const uint32_t upper_bound)
|
182
|
+
{
|
183
|
+
uint32_t min;
|
184
|
+
uint32_t r;
|
185
|
+
|
186
|
+
if (upper_bound < 2) {
|
187
|
+
return 0;
|
188
|
+
}
|
189
|
+
min = (uint32_t) (-upper_bound % upper_bound);
|
190
|
+
for (;;) {
|
191
|
+
r = randombytes_sysrandom();
|
192
|
+
if (r >= min) {
|
193
|
+
break;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
return r % upper_bound;
|
197
|
+
}
|
198
|
+
|
199
|
+
const char *
|
200
|
+
randombytes_sysrandom_implementation_name(void)
|
201
|
+
{
|
202
|
+
return "sysrandom";
|
203
|
+
}
|
204
|
+
|
205
|
+
struct randombytes_implementation randombytes_sysrandom_implementation = {
|
206
|
+
_SODIUM_C99(.implementation_name =) randombytes_sysrandom_implementation_name,
|
207
|
+
_SODIUM_C99(.random =) randombytes_sysrandom,
|
208
|
+
_SODIUM_C99(.stir =) randombytes_sysrandom_stir,
|
209
|
+
_SODIUM_C99(.uniform =) randombytes_sysrandom_uniform,
|
210
|
+
_SODIUM_C99(.buf =) randombytes_sysrandom_buf,
|
211
|
+
_SODIUM_C99(.close =) randombytes_sysrandom_close
|
212
|
+
};
|