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,56 @@
|
|
1
|
+
|
2
|
+
#ifndef __AES_TABLE_H__
|
3
|
+
#define __AES_TABLE_H__
|
4
|
+
|
5
|
+
#ifdef NATIVE_LITTLE_ENDIAN
|
6
|
+
# include "aes-table-le.h"
|
7
|
+
#elif defined(NATIVE_BIG_ENDIAN)
|
8
|
+
# include "aes-table-be.h"
|
9
|
+
#else
|
10
|
+
# error Unsupported byte ordering
|
11
|
+
#endif
|
12
|
+
|
13
|
+
static const unsigned char Rcon[31] =
|
14
|
+
{
|
15
|
+
0x0, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20,
|
16
|
+
0x40, 0x80, 0x1b, 0x36, 0x6c, 0xc0,
|
17
|
+
0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc,
|
18
|
+
0x63, 0xc6, 0x97, 0x35, 0x6a, 0xd4,
|
19
|
+
0xb3, 0x7d, 0xfa, 0xef, 0xc5, 0x91
|
20
|
+
};
|
21
|
+
|
22
|
+
|
23
|
+
static const unsigned char Sbox[256] = {
|
24
|
+
0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5,
|
25
|
+
0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
|
26
|
+
0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
|
27
|
+
0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
|
28
|
+
0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc,
|
29
|
+
0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
|
30
|
+
0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a,
|
31
|
+
0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
|
32
|
+
0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
|
33
|
+
0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
|
34
|
+
0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b,
|
35
|
+
0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
|
36
|
+
0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85,
|
37
|
+
0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
|
38
|
+
0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
|
39
|
+
0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
|
40
|
+
0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17,
|
41
|
+
0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
|
42
|
+
0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88,
|
43
|
+
0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
|
44
|
+
0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
|
45
|
+
0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
|
46
|
+
0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9,
|
47
|
+
0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
|
48
|
+
0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6,
|
49
|
+
0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
|
50
|
+
0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
|
51
|
+
0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
|
52
|
+
0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94,
|
53
|
+
0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
|
54
|
+
0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68,
|
55
|
+
0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16};
|
56
|
+
#endif
|
@@ -0,0 +1,238 @@
|
|
1
|
+
/* aes-ctr.c */
|
2
|
+
/* AES in CTR mode. */
|
3
|
+
|
4
|
+
/* Hongjun Wu, January 2007*/
|
5
|
+
|
6
|
+
|
7
|
+
/* ------------------------------------------------------------------------- */
|
8
|
+
|
9
|
+
#include "api.h"
|
10
|
+
#include "aes256.h"
|
11
|
+
|
12
|
+
#include <string.h>
|
13
|
+
|
14
|
+
/* ------------------------------------------------------------------------- */
|
15
|
+
/* key setup for AES-256*/
|
16
|
+
static void
|
17
|
+
ECRYPT_keysetup(ECRYPT_ctx* ctx, const u8* key, u32 keysize, u32 ivsize)
|
18
|
+
{
|
19
|
+
unsigned int w[Nk*(Nr+1)], temp;
|
20
|
+
int i, j;
|
21
|
+
|
22
|
+
(void) keysize;
|
23
|
+
(void) ivsize;
|
24
|
+
(void) sizeof(char[sizeof *ctx == crypto_stream_BEFORENMBYTES ? 1 : -1]);
|
25
|
+
|
26
|
+
for( i = 0; i < Nk; i++ ) {
|
27
|
+
w[i] = key[(i << 2)];
|
28
|
+
w[i] |= key[(i << 2)+1] << 8;
|
29
|
+
w[i] |= key[(i << 2)+2] << 16;
|
30
|
+
w[i] |= key[(i << 2)+3] << 24;
|
31
|
+
}
|
32
|
+
|
33
|
+
i = Nk;
|
34
|
+
|
35
|
+
while( i < Nb*(Nr+1) ) {
|
36
|
+
temp = w[i-1];
|
37
|
+
|
38
|
+
temp = Sbox[ temp & 0xFF] << 24 ^
|
39
|
+
Sbox[(temp >> 8) & 0xFF] ^
|
40
|
+
(Sbox[(temp >> 16) & 0xFF] << 8 ) ^
|
41
|
+
(Sbox[(temp >> 24) & 0xFF] << 16) ^
|
42
|
+
Rcon[i/Nk];
|
43
|
+
w[i] = w[i-Nk] ^ temp;
|
44
|
+
i++;
|
45
|
+
|
46
|
+
temp = w[i-1];
|
47
|
+
w[i] = w[i-Nk] ^ temp;
|
48
|
+
i++;
|
49
|
+
|
50
|
+
temp = w[i-1];
|
51
|
+
w[i] = w[i-Nk] ^ temp;
|
52
|
+
i++;
|
53
|
+
|
54
|
+
temp = w[i-1];
|
55
|
+
w[i] = w[i-Nk] ^ temp;
|
56
|
+
i++;
|
57
|
+
|
58
|
+
temp = w[i-1];
|
59
|
+
temp = Sbox[ temp & 0xFF] ^
|
60
|
+
Sbox[(temp >> 8) & 0xFF] << 8 ^
|
61
|
+
(Sbox[(temp >> 16) & 0xFF] << 16 ) ^
|
62
|
+
(Sbox[(temp >> 24) & 0xFF] << 24);
|
63
|
+
w[i] = w[i-Nk] ^ temp;
|
64
|
+
i++;
|
65
|
+
|
66
|
+
temp = w[i-1];
|
67
|
+
w[i] = w[i-Nk] ^ temp;
|
68
|
+
i++;
|
69
|
+
|
70
|
+
temp = w[i-1];
|
71
|
+
w[i] = w[i-Nk] ^ temp;
|
72
|
+
i++;
|
73
|
+
|
74
|
+
temp = w[i-1];
|
75
|
+
w[i] = w[i-Nk] ^ temp;
|
76
|
+
i++;
|
77
|
+
}
|
78
|
+
|
79
|
+
for (i = 0; i <= Nr; i++) {
|
80
|
+
for (j = 0; j < Nb; j++) {
|
81
|
+
ctx->round_key[i][j] = SWP32(w[(i<<2)+j]);
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
/* ------------------------------------------------------------------------- */
|
87
|
+
|
88
|
+
static void
|
89
|
+
ECRYPT_ivsetup(ECRYPT_ctx* ctx, const u8* iv)
|
90
|
+
{
|
91
|
+
(void) sizeof(char[(sizeof ctx->counter) == crypto_stream_NONCEBYTES ? 1 : -1]);
|
92
|
+
memcpy(ctx->counter, iv, crypto_stream_NONCEBYTES);
|
93
|
+
}
|
94
|
+
|
95
|
+
/* ------------------------------------------------------------------------- */
|
96
|
+
|
97
|
+
/*compute the intermediate values for the first two rounds*/
|
98
|
+
static void
|
99
|
+
partial_precompute_tworounds(ECRYPT_ctx* ctx)
|
100
|
+
{
|
101
|
+
u32 x0,x1,x2,x3,y0,y1,y2,y3;
|
102
|
+
|
103
|
+
x0 = ctx->counter[0] ^ ctx->round_key[0][0];
|
104
|
+
x1 = ctx->counter[1] ^ ctx->round_key[0][1];
|
105
|
+
x2 = ctx->counter[2] ^ ctx->round_key[0][2];
|
106
|
+
x3 = ctx->counter[3] ^ ctx->round_key[0][3];
|
107
|
+
x0 &= SWP32(0xffffff00);
|
108
|
+
round(ctx,x0,x1,x2,x3,y0,y1,y2,y3,1);
|
109
|
+
ctx->first_round_output_x0 = y0 ^ T0[0];
|
110
|
+
y0 = 0;
|
111
|
+
round(ctx,y0,y1,y2,y3,x0,x1,x2,x3,2);
|
112
|
+
ctx->second_round_output[0] = x0 ^ T0[0];
|
113
|
+
ctx->second_round_output[1] = x1 ^ T3[0];
|
114
|
+
ctx->second_round_output[2] = x2 ^ T2[0];
|
115
|
+
ctx->second_round_output[3] = x3 ^ T1[0];
|
116
|
+
}
|
117
|
+
|
118
|
+
/* ------------------------------------------------------------------------- */
|
119
|
+
|
120
|
+
#ifndef CPU_ALIGNED_ACCESS_REQUIRED
|
121
|
+
# define UNALIGNED_U32_READ(P, I) (((const u32 *)(const void *) (P))[(I)])
|
122
|
+
#else
|
123
|
+
static inline uint32_t
|
124
|
+
UNALIGNED_U32_READ(const u8 * const p, const size_t i)
|
125
|
+
{
|
126
|
+
uint32_t t;
|
127
|
+
(void) sizeof(int[sizeof(*p) == sizeof(char) ? 1 : -1]);
|
128
|
+
memcpy(&t, p + i * (sizeof t / sizeof *p), sizeof t);
|
129
|
+
return t;
|
130
|
+
}
|
131
|
+
#endif
|
132
|
+
|
133
|
+
/* ------------------------------------------------------------------------- */
|
134
|
+
|
135
|
+
static void
|
136
|
+
ECRYPT_process_bytes(int action, ECRYPT_ctx* ctx, const u8* input, u8* output,
|
137
|
+
u32 msglen)
|
138
|
+
{
|
139
|
+
__attribute__((aligned(32))) u8 keystream[16];
|
140
|
+
u32 i;
|
141
|
+
|
142
|
+
(void) action;
|
143
|
+
memset(keystream, 0, sizeof keystream);
|
144
|
+
partial_precompute_tworounds(ctx);
|
145
|
+
|
146
|
+
for ( ; msglen >= 16; msglen -= 16, input += 16, output += 16) {
|
147
|
+
aes256_enc_block(ctx->counter, keystream, ctx);
|
148
|
+
|
149
|
+
((u32*)output)[0] = UNALIGNED_U32_READ(input, 0) ^ ((u32*)keystream)[0] ^ ctx->round_key[Nr][0];
|
150
|
+
((u32*)output)[1] = UNALIGNED_U32_READ(input, 1) ^ ((u32*)keystream)[1] ^ ctx->round_key[Nr][1];
|
151
|
+
((u32*)output)[2] = UNALIGNED_U32_READ(input, 2) ^ ((u32*)keystream)[2] ^ ctx->round_key[Nr][2];
|
152
|
+
((u32*)output)[3] = UNALIGNED_U32_READ(input, 3) ^ ((u32*)keystream)[3] ^ ctx->round_key[Nr][3];
|
153
|
+
|
154
|
+
ctx->counter[0] = SWP32(SWP32(ctx->counter[0]) + 1);
|
155
|
+
|
156
|
+
if ((ctx->counter[0] & SWP32(0xff))== 0) {
|
157
|
+
partial_precompute_tworounds(ctx);
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
if (msglen > 0) {
|
162
|
+
aes256_enc_block(ctx->counter, keystream, ctx);
|
163
|
+
((u32*)keystream)[0] ^= ctx->round_key[Nr][0];
|
164
|
+
((u32*)keystream)[1] ^= ctx->round_key[Nr][1];
|
165
|
+
((u32*)keystream)[2] ^= ctx->round_key[Nr][2];
|
166
|
+
((u32*)keystream)[3] ^= ctx->round_key[Nr][3];
|
167
|
+
|
168
|
+
for (i = 0; i < msglen; i ++) {
|
169
|
+
output[i] = input[i] ^ keystream[i];
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
/* ------------------------------------------------------------------------- */
|
175
|
+
|
176
|
+
#include "ecrypt-sync.h"
|
177
|
+
|
178
|
+
int
|
179
|
+
crypto_stream_beforenm(unsigned char *c, const unsigned char *k)
|
180
|
+
{
|
181
|
+
ECRYPT_ctx * const ctx = (ECRYPT_ctx *) c;
|
182
|
+
|
183
|
+
ECRYPT_keysetup(ctx, k, crypto_stream_KEYBYTES * 8,
|
184
|
+
crypto_stream_NONCEBYTES * 8);
|
185
|
+
return 0;
|
186
|
+
}
|
187
|
+
|
188
|
+
int
|
189
|
+
crypto_stream_afternm(unsigned char *outp, unsigned long long len,
|
190
|
+
const unsigned char *noncep, const unsigned char *c)
|
191
|
+
{
|
192
|
+
ECRYPT_ctx * const ctx = (ECRYPT_ctx *) c;
|
193
|
+
unsigned long long i;
|
194
|
+
|
195
|
+
ECRYPT_ivsetup(ctx, noncep);
|
196
|
+
for (i = 0U; i < len; ++i) {
|
197
|
+
outp[i] = 0U;
|
198
|
+
}
|
199
|
+
ECRYPT_encrypt_bytes(ctx, (u8 *) outp, (u8 *) outp, len);
|
200
|
+
|
201
|
+
return 0;
|
202
|
+
}
|
203
|
+
|
204
|
+
int
|
205
|
+
crypto_stream_xor_afternm(unsigned char *outp, const unsigned char *inp,
|
206
|
+
unsigned long long len, const unsigned char *noncep,
|
207
|
+
const unsigned char *c)
|
208
|
+
{
|
209
|
+
ECRYPT_ctx * const ctx = (ECRYPT_ctx *) c;
|
210
|
+
|
211
|
+
ECRYPT_ivsetup(ctx, noncep);
|
212
|
+
ECRYPT_encrypt_bytes(ctx, (const u8 *) inp, (u8 *) outp, len);
|
213
|
+
|
214
|
+
return 0;
|
215
|
+
}
|
216
|
+
|
217
|
+
int
|
218
|
+
crypto_stream(unsigned char *out, unsigned long long outlen,
|
219
|
+
const unsigned char *n, const unsigned char *k)
|
220
|
+
{
|
221
|
+
unsigned char d[crypto_stream_BEFORENMBYTES];
|
222
|
+
crypto_stream_beforenm(d, k);
|
223
|
+
crypto_stream_afternm(out, outlen, n, d);
|
224
|
+
|
225
|
+
return 0;
|
226
|
+
}
|
227
|
+
|
228
|
+
int crypto_stream_xor(unsigned char *out, const unsigned char *in,
|
229
|
+
unsigned long long inlen, const unsigned char *n,
|
230
|
+
const unsigned char *k)
|
231
|
+
{
|
232
|
+
unsigned char d[crypto_stream_BEFORENMBYTES];
|
233
|
+
|
234
|
+
crypto_stream_beforenm(d, k);
|
235
|
+
crypto_stream_xor_afternm(out, in, inlen, n, d);
|
236
|
+
|
237
|
+
return 0;
|
238
|
+
}
|
@@ -0,0 +1,171 @@
|
|
1
|
+
/* aes256.h */
|
2
|
+
/* Hongjun Wu, January 2007*/
|
3
|
+
|
4
|
+
|
5
|
+
#include "ecrypt-sync.h"
|
6
|
+
#include "aes-table.h"
|
7
|
+
|
8
|
+
#include <stdio.h>
|
9
|
+
|
10
|
+
#ifdef NATIVE_LITTLE_ENDIAN
|
11
|
+
# define LEROT(X, S) ((uint8_t) ((uint32_t)(X) >> (S)))
|
12
|
+
# define SWP32(X) (X)
|
13
|
+
#elif defined(NATIVE_BIG_ENDIAN)
|
14
|
+
# define LEROT(X, S) ((uint8_t) ((uint32_t)(X) >> (24 - (S))))
|
15
|
+
# define SWP32(X) ((uint32_t)((((uint32_t)(X) & 0xff000000) >> 24) | \
|
16
|
+
(((uint32_t)(X) & 0x00ff0000) >> 8) | \
|
17
|
+
(((uint32_t)(X) & 0x0000ff00) << 8) | \
|
18
|
+
(((uint32_t)(X) & 0x000000ff) << 24)))
|
19
|
+
#else
|
20
|
+
# error Unsupported byte ordering
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#define first_round(ctx,x0,y0) { \
|
24
|
+
u32 z0,t0,tem0; \
|
25
|
+
z0 = (x0) ^ ctx->round_key[0][0]; \
|
26
|
+
t0 = LEROT(z0, 0); \
|
27
|
+
tem0 = T0[t0]; \
|
28
|
+
(y0) = tem0 ^ ctx->first_round_output_x0; \
|
29
|
+
}
|
30
|
+
|
31
|
+
#define second_round(ctx,x0,y0,y1,y2,y3) { \
|
32
|
+
u32 t0,t7,t10,t13; \
|
33
|
+
u32 tem0,tem7,tem10,tem13; \
|
34
|
+
t0 = LEROT(x0, 0); \
|
35
|
+
tem0 = T0[t0]; \
|
36
|
+
(y0) = tem0 ^ ctx->second_round_output[0]; \
|
37
|
+
t7 = LEROT(x0, 24); \
|
38
|
+
tem7 = T3[t7]; \
|
39
|
+
(y1) = tem7 ^ ctx->second_round_output[1]; \
|
40
|
+
t10 = LEROT(x0, 16); \
|
41
|
+
tem10 = T2[t10]; \
|
42
|
+
(y2) = tem10 ^ ctx->second_round_output[2]; \
|
43
|
+
t13 = LEROT(x0, 8); \
|
44
|
+
tem13 = T1[t13];\
|
45
|
+
(y3) = tem13 ^ ctx->second_round_output[3]; \
|
46
|
+
}
|
47
|
+
|
48
|
+
#define round(ctx,x0,x1,x2,x3,y0,y1,y2,y3,r) { \
|
49
|
+
u32 t0,t1,t2,t3; \
|
50
|
+
u32 t4,t5,t6,t7; \
|
51
|
+
u32 t8,t9,t10,t11; \
|
52
|
+
u32 t12,t13,t14,t15;\
|
53
|
+
u32 tem0,tem1,tem2,tem3; \
|
54
|
+
u32 tem4,tem5,tem6,tem7; \
|
55
|
+
u32 tem8,tem9,tem10,tem11; \
|
56
|
+
u32 tem12,tem13,tem14,tem15;\
|
57
|
+
\
|
58
|
+
t0 = LEROT(x0, 0); \
|
59
|
+
tem0 = T0[t0]; \
|
60
|
+
t1 = LEROT(x1, 8); \
|
61
|
+
tem1 = tem0 ^ T1[t1]; \
|
62
|
+
t2 = LEROT(x2, 16); \
|
63
|
+
tem2 = tem1 ^ T2[t2]; \
|
64
|
+
t3 = LEROT(x3, 24); \
|
65
|
+
tem3 = tem2 ^ T3[t3]; \
|
66
|
+
(y0) = tem3 ^ ctx->round_key[r][0]; \
|
67
|
+
\
|
68
|
+
t4 = LEROT(x1, 0); \
|
69
|
+
tem4 = T0[t4]; \
|
70
|
+
t5 = LEROT(x2, 8); \
|
71
|
+
tem5 = tem4 ^ T1[t5]; \
|
72
|
+
t6 = LEROT(x3, 16); \
|
73
|
+
tem6 = tem5 ^ T2[t6]; \
|
74
|
+
t7 = LEROT(x0, 24); \
|
75
|
+
tem7 = tem6 ^ T3[t7]; \
|
76
|
+
(y1) = tem7 ^ ctx->round_key[r][1]; \
|
77
|
+
\
|
78
|
+
t8 = LEROT(x2, 0); \
|
79
|
+
tem8 = T0[t8]; \
|
80
|
+
t9 = LEROT(x3, 8); \
|
81
|
+
tem9 = tem8 ^ T1[t9]; \
|
82
|
+
t10 = LEROT(x0, 16); \
|
83
|
+
tem10 = tem9 ^ T2[t10]; \
|
84
|
+
t11 = LEROT(x1, 24); \
|
85
|
+
tem11 = tem10 ^ T3[t11];\
|
86
|
+
(y2) = tem11 ^ ctx->round_key[r][2]; \
|
87
|
+
\
|
88
|
+
t12 = LEROT(x3, 0); \
|
89
|
+
tem12 = T0[t12]; \
|
90
|
+
t13 = LEROT(x0, 8); \
|
91
|
+
tem13 = tem12 ^ T1[t13];\
|
92
|
+
t14 = LEROT(x1, 16); \
|
93
|
+
tem14 = tem13 ^ T2[t14];\
|
94
|
+
t15 = LEROT(x2, 24); \
|
95
|
+
tem15 = tem14 ^ T3[t15];\
|
96
|
+
(y3) = tem15 ^ ctx->round_key[r][3]; \
|
97
|
+
}
|
98
|
+
|
99
|
+
/* 22.14 cycles/byte*/
|
100
|
+
#define last_round(ctx,x0,x1,x2,x3,output,r) { \
|
101
|
+
u32 t0,t1,t2,t3; \
|
102
|
+
u32 t4,t5,t6,t7; \
|
103
|
+
u32 t8,t9,t10,t11; \
|
104
|
+
u32 t12,t13,t14,t15;\
|
105
|
+
\
|
106
|
+
t0 = LEROT(x0, 0); \
|
107
|
+
output[0] = Sbox[t0]; \
|
108
|
+
t7 = LEROT(x0, 24); \
|
109
|
+
output[7] = Sbox[t7]; \
|
110
|
+
t10 = LEROT(x0, 16); \
|
111
|
+
output[10] = Sbox[t10]; \
|
112
|
+
t13 = LEROT(x0, 8); \
|
113
|
+
output[13] = Sbox[t13]; \
|
114
|
+
\
|
115
|
+
t1 = LEROT(x1, 8); \
|
116
|
+
output[1] = Sbox[t1]; \
|
117
|
+
t4 = LEROT(x1, 0); \
|
118
|
+
output[4] = Sbox[t4]; \
|
119
|
+
t11 = LEROT(x1, 24); \
|
120
|
+
output[11] = Sbox[t11]; \
|
121
|
+
t14 = LEROT(x1, 16); \
|
122
|
+
output[14] = Sbox[t14]; \
|
123
|
+
\
|
124
|
+
t2 = LEROT(x2, 16); \
|
125
|
+
output[2] = Sbox[t2]; \
|
126
|
+
t5 = LEROT(x2, 8); \
|
127
|
+
output[5] = Sbox[t5]; \
|
128
|
+
t8 = LEROT(x2, 0); \
|
129
|
+
output[8] = Sbox[t8]; \
|
130
|
+
t15 = LEROT(x2, 24); \
|
131
|
+
output[15] = Sbox[t15]; \
|
132
|
+
\
|
133
|
+
t3 = LEROT(x3, 24); \
|
134
|
+
output[3] = Sbox[t3]; \
|
135
|
+
t6 = LEROT(x3, 16); \
|
136
|
+
output[6] = Sbox[t6]; \
|
137
|
+
t9 = LEROT(x3, 8); \
|
138
|
+
output[9] = Sbox[t9]; \
|
139
|
+
t12 = LEROT(x3, 0); \
|
140
|
+
output[12] = Sbox[t12]; \
|
141
|
+
}
|
142
|
+
|
143
|
+
#define aes256_enc_block(x,output,ctx) {\
|
144
|
+
u32 y0;\
|
145
|
+
u32 z0,z1,z2,z3;\
|
146
|
+
u32 a0,a1,a2,a3;\
|
147
|
+
u32 b0,b1,b2,b3;\
|
148
|
+
u32 c0,c1,c2,c3;\
|
149
|
+
u32 d0,d1,d2,d3;\
|
150
|
+
u32 e0,e1,e2,e3;\
|
151
|
+
u32 f0,f1,f2,f3;\
|
152
|
+
u32 g0,g1,g2,g3;\
|
153
|
+
u32 h0,h1,h2,h3;\
|
154
|
+
u32 i0,i1,i2,i3;\
|
155
|
+
u32 j0,j1,j2,j3;\
|
156
|
+
u32 k0,k1,k2,k3;\
|
157
|
+
first_round(ctx,x[0],y0);\
|
158
|
+
second_round(ctx,y0,z0,z1,z2,z3);\
|
159
|
+
round(ctx,z0,z1,z2,z3,a0,a1,a2,a3,3);\
|
160
|
+
round(ctx,a0,a1,a2,a3,b0,b1,b2,b3,4);\
|
161
|
+
round(ctx,b0,b1,b2,b3,c0,c1,c2,c3,5);\
|
162
|
+
round(ctx,c0,c1,c2,c3,d0,d1,d2,d3,6);\
|
163
|
+
round(ctx,d0,d1,d2,d3,e0,e1,e2,e3,7);\
|
164
|
+
round(ctx,e0,e1,e2,e3,f0,f1,f2,f3,8);\
|
165
|
+
round(ctx,f0,f1,f2,f3,g0,g1,g2,g3,9);\
|
166
|
+
round(ctx,g0,g1,g2,g3,h0,h1,h2,h3,10);\
|
167
|
+
round(ctx,h0,h1,h2,h3,i0,i1,i2,i3,11);\
|
168
|
+
round(ctx,i0,i1,i2,i3,j0,j1,j2,j3,12);\
|
169
|
+
round(ctx,j0,j1,j2,j3,k0,k1,k2,k3,13);\
|
170
|
+
last_round(ctx,k0,k1,k2,k3,(output),14);\
|
171
|
+
}
|