├── .gitignore ├── LICENSE.md ├── README.md ├── dist └── armv7 │ ├── include │ ├── sodium.h │ └── sodium │ │ ├── core.h │ │ ├── crypto_auth.h │ │ ├── crypto_auth_hmacsha256.h │ │ ├── crypto_auth_hmacsha512256.h │ │ ├── crypto_box.h │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ ├── crypto_core_hsalsa20.h │ │ ├── crypto_core_salsa20.h │ │ ├── crypto_core_salsa2012.h │ │ ├── crypto_core_salsa208.h │ │ ├── crypto_generichash.h │ │ ├── crypto_generichash_blake2b.h │ │ ├── crypto_hash.h │ │ ├── crypto_hash_sha256.h │ │ ├── crypto_hash_sha512.h │ │ ├── crypto_hashblocks_sha256.h │ │ ├── crypto_hashblocks_sha512.h │ │ ├── crypto_int32.h │ │ ├── crypto_int64.h │ │ ├── crypto_onetimeauth.h │ │ ├── crypto_onetimeauth_poly1305.h │ │ ├── crypto_onetimeauth_poly1305_53.h │ │ ├── crypto_onetimeauth_poly1305_donna.h │ │ ├── crypto_scalarmult.h │ │ ├── crypto_scalarmult_curve25519.h │ │ ├── crypto_secretbox.h │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ ├── crypto_shorthash.h │ │ ├── crypto_shorthash_siphash24.h │ │ ├── crypto_sign.h │ │ ├── crypto_sign_ed25519.h │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ ├── crypto_stream.h │ │ ├── crypto_stream_aes128ctr.h │ │ ├── crypto_stream_aes256estream.h │ │ ├── crypto_stream_salsa20.h │ │ ├── crypto_stream_salsa2012.h │ │ ├── crypto_stream_salsa208.h │ │ ├── crypto_stream_xsalsa20.h │ │ ├── crypto_uint16.h │ │ ├── crypto_uint32.h │ │ ├── crypto_uint64.h │ │ ├── crypto_uint8.h │ │ ├── crypto_verify_16.h │ │ ├── crypto_verify_32.h │ │ ├── export.h │ │ ├── randombytes.h │ │ ├── randombytes_salsa20_random.h │ │ ├── randombytes_sysrandom.h │ │ ├── utils.h │ │ └── version.h │ └── lib │ ├── libsodium.a │ └── pkgconfig │ └── libsodium.pc └── src └── libsodium ├── crypto_auth ├── .dirstamp ├── crypto_auth.c ├── hmacsha256 │ ├── .dirstamp │ ├── auth_hmacsha256_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── hmac_hmacsha256.c │ │ └── verify_hmacsha256.c └── hmacsha512256 │ ├── .dirstamp │ ├── auth_hmacsha512256_api.c │ └── ref │ ├── .dirstamp │ ├── api.h │ ├── hmac_hmacsha512256.c │ └── verify_hmacsha512256.c ├── crypto_box ├── .dirstamp ├── crypto_box.c └── curve25519xsalsa20poly1305 │ ├── .dirstamp │ ├── box_curve25519xsalsa20poly1305_api.c │ └── ref │ ├── .dirstamp │ ├── after_curve25519xsalsa20poly1305.c │ ├── api.h │ ├── before_curve25519xsalsa20poly1305.c │ ├── box_curve25519xsalsa20poly1305.c │ └── keypair_curve25519xsalsa20poly1305.c ├── crypto_core ├── hsalsa20 │ ├── .dirstamp │ ├── core_hsalsa20_api.c │ └── ref2 │ │ ├── .dirstamp │ │ ├── api.h │ │ └── core_hsalsa20.c ├── salsa20 │ ├── .dirstamp │ ├── core_salsa20_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ └── core_salsa20.c ├── salsa2012 │ ├── .dirstamp │ ├── core_salsa2012_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ └── core_salsa2012.c └── salsa208 │ ├── .dirstamp │ ├── core_salsa208_api.c │ └── ref │ ├── .dirstamp │ ├── api.h │ └── core_salsa208.c ├── crypto_generichash ├── .dirstamp ├── blake2 │ ├── .dirstamp │ ├── generichash_blake2_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ ├── blake2b-ref.c │ │ └── generichash_blake2b.c └── crypto_generichash.c ├── crypto_hash ├── .dirstamp ├── crypto_hash.c ├── sha256 │ ├── .dirstamp │ ├── hash_sha256_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ └── hash_sha256.c └── sha512 │ ├── .dirstamp │ ├── hash_sha512_api.c │ └── ref │ ├── .dirstamp │ ├── api.h │ └── hash_sha512.c ├── crypto_hashblocks ├── sha256 │ ├── .dirstamp │ ├── hashblocks_sha256_api.c │ └── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ └── blocks_sha256.c └── sha512 │ ├── .dirstamp │ ├── hashblocks_sha512_api.c │ └── ref │ ├── .dirstamp │ ├── api.h │ └── blocks_sha512.c ├── crypto_onetimeauth ├── .dirstamp ├── crypto_onetimeauth.c └── poly1305 │ ├── 53 │ ├── .dirstamp │ ├── api.h │ ├── auth_poly1305_53.c │ └── verify_poly1305_53.c │ ├── .dirstamp │ ├── donna │ ├── .dirstamp │ ├── api.h │ ├── auth_poly1305_donna.c │ ├── portable-jane.h │ └── verify_poly1305_donna.c │ ├── onetimeauth_poly1305.c │ ├── onetimeauth_poly1305_api.c │ └── onetimeauth_poly1305_try.c ├── crypto_scalarmult ├── .dirstamp ├── crypto_scalarmult.c └── curve25519 │ ├── donna_c64 │ ├── api.h │ ├── base_curve25519_donna_c64.c │ └── smult_curve25519_donna_c64.c │ ├── ref │ ├── .dirstamp │ ├── api.h │ ├── base_curve25519_ref.c │ └── smult_curve25519_ref.c │ └── scalarmult_curve25519_api.c ├── crypto_secretbox ├── .dirstamp ├── crypto_secretbox.c └── xsalsa20poly1305 │ ├── .dirstamp │ ├── ref │ ├── .dirstamp │ ├── api.h │ └── box_xsalsa20poly1305.c │ └── secretbox_xsalsa20poly1305_api.c ├── crypto_shorthash ├── .dirstamp ├── crypto_shorthash.c └── siphash24 │ ├── .dirstamp │ ├── ref │ ├── .dirstamp │ ├── api.h │ └── shorthash_siphash24.c │ └── shorthash_siphash24_api.c ├── crypto_sign ├── .dirstamp ├── crypto_sign.c ├── ed25519 │ ├── .dirstamp │ ├── ref10 │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── base.h │ │ ├── base2.h │ │ ├── d.h │ │ ├── d2.h │ │ ├── fe.h │ │ ├── fe_0.c │ │ ├── fe_1.c │ │ ├── fe_add.c │ │ ├── fe_cmov.c │ │ ├── fe_copy.c │ │ ├── fe_frombytes.c │ │ ├── fe_invert.c │ │ ├── fe_isnegative.c │ │ ├── fe_isnonzero.c │ │ ├── fe_mul.c │ │ ├── fe_neg.c │ │ ├── fe_pow22523.c │ │ ├── fe_sq.c │ │ ├── fe_sq2.c │ │ ├── fe_sub.c │ │ ├── fe_tobytes.c │ │ ├── ge.h │ │ ├── ge_add.c │ │ ├── ge_add.h │ │ ├── ge_double_scalarmult.c │ │ ├── ge_frombytes.c │ │ ├── ge_madd.c │ │ ├── ge_madd.h │ │ ├── ge_msub.c │ │ ├── ge_msub.h │ │ ├── ge_p1p1_to_p2.c │ │ ├── ge_p1p1_to_p3.c │ │ ├── ge_p2_0.c │ │ ├── ge_p2_dbl.c │ │ ├── ge_p2_dbl.h │ │ ├── ge_p3_0.c │ │ ├── ge_p3_dbl.c │ │ ├── ge_p3_to_cached.c │ │ ├── ge_p3_to_p2.c │ │ ├── ge_p3_tobytes.c │ │ ├── ge_precomp_0.c │ │ ├── ge_scalarmult_base.c │ │ ├── ge_sub.c │ │ ├── ge_sub.h │ │ ├── ge_tobytes.c │ │ ├── keypair.c │ │ ├── open.c │ │ ├── pow22523.h │ │ ├── pow225521.h │ │ ├── sc.h │ │ ├── sc_muladd.c │ │ ├── sc_reduce.c │ │ ├── sign.c │ │ └── sqrtm1.h │ └── sign_ed25519_api.c └── edwards25519sha512batch │ ├── .dirstamp │ ├── ref │ ├── .dirstamp │ ├── api.h │ ├── fe25519.h │ ├── fe25519_edwards25519sha512batch.c │ ├── ge25519.h │ ├── ge25519_edwards25519sha512batch.c │ ├── sc25519.h │ ├── sc25519_edwards25519sha512batch.c │ └── sign_edwards25519sha512batch.c │ └── sign_edwards25519sha512batch_api.c ├── crypto_stream ├── .dirstamp ├── aes128ctr │ ├── .dirstamp │ ├── portable │ │ ├── .dirstamp │ │ ├── afternm_aes128ctr.c │ │ ├── api.h │ │ ├── beforenm_aes128ctr.c │ │ ├── common.h │ │ ├── common_aes128ctr.c │ │ ├── consts.h │ │ ├── consts_aes128ctr.c │ │ ├── int128.h │ │ ├── int128_aes128ctr.c │ │ ├── stream_aes128ctr.c │ │ ├── types.h │ │ └── xor_afternm_aes128ctr.c │ └── stream_aes128ctr_api.c ├── aes256estream │ ├── .dirstamp │ ├── hongjun │ │ ├── .dirstamp │ │ ├── aes-table-be.h │ │ ├── aes-table-le.h │ │ ├── aes-table.h │ │ ├── aes256-ctr.c │ │ ├── aes256.h │ │ ├── api.h │ │ └── ecrypt-sync.h │ └── stream_aes256estream_api.c ├── crypto_stream.c ├── salsa20 │ ├── amd64_xmm6 │ │ ├── api.h │ │ └── stream_salsa20_amd64_xmm6.s │ ├── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── stream_salsa20_ref.c │ │ └── xor_salsa20_ref.c │ └── stream_salsa20_api.c ├── salsa2012 │ ├── .dirstamp │ ├── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── stream_salsa2012.c │ │ └── xor_salsa2012.c │ └── stream_salsa2012_api.c ├── salsa208 │ ├── .dirstamp │ ├── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ ├── stream_salsa208.c │ │ └── xor_salsa208.c │ └── stream_salsa208_api.c └── xsalsa20 │ ├── .dirstamp │ ├── ref │ ├── .dirstamp │ ├── api.h │ ├── stream_xsalsa20.c │ └── xor_xsalsa20.c │ └── stream_xsalsa20_api.c ├── crypto_verify ├── 16 │ ├── .dirstamp │ ├── ref │ │ ├── .dirstamp │ │ ├── api.h │ │ └── verify_16.c │ └── verify_16_api.c └── 32 │ ├── .dirstamp │ ├── ref │ ├── .dirstamp │ ├── api.h │ └── verify_32.c │ └── verify_32_api.c ├── include ├── sodium.h └── sodium │ ├── core.h │ ├── crypto_auth.h │ ├── crypto_auth_hmacsha256.h │ ├── crypto_auth_hmacsha512256.h │ ├── crypto_box.h │ ├── crypto_box_curve25519xsalsa20poly1305.h │ ├── crypto_core_hsalsa20.h │ ├── crypto_core_salsa20.h │ ├── crypto_core_salsa2012.h │ ├── crypto_core_salsa208.h │ ├── crypto_generichash.h │ ├── crypto_generichash_blake2b.h │ ├── crypto_hash.h │ ├── crypto_hash_sha256.h │ ├── crypto_hash_sha512.h │ ├── crypto_hashblocks_sha256.h │ ├── crypto_hashblocks_sha512.h │ ├── crypto_int32.h │ ├── crypto_int64.h │ ├── crypto_onetimeauth.h │ ├── crypto_onetimeauth_poly1305.h │ ├── crypto_onetimeauth_poly1305_53.h │ ├── crypto_onetimeauth_poly1305_donna.h │ ├── crypto_scalarmult.h │ ├── crypto_scalarmult_curve25519.h │ ├── crypto_scalarmult_curve25519.h.in │ ├── crypto_secretbox.h │ ├── crypto_secretbox_xsalsa20poly1305.h │ ├── crypto_shorthash.h │ ├── crypto_shorthash_siphash24.h │ ├── crypto_sign.h │ ├── crypto_sign_ed25519.h │ ├── crypto_sign_edwards25519sha512batch.h │ ├── crypto_stream.h │ ├── crypto_stream_aes128ctr.h │ ├── crypto_stream_aes256estream.h │ ├── crypto_stream_salsa20.h │ ├── crypto_stream_salsa20.h.in │ ├── crypto_stream_salsa2012.h │ ├── crypto_stream_salsa208.h │ ├── crypto_stream_xsalsa20.h │ ├── crypto_uint16.h │ ├── crypto_uint32.h │ ├── crypto_uint64.h │ ├── crypto_uint8.h │ ├── crypto_verify_16.h │ ├── crypto_verify_32.h │ ├── export.h │ ├── randombytes.h │ ├── randombytes_salsa20_random.h │ ├── randombytes_sysrandom.h │ ├── utils.h │ ├── version.h │ └── version.h.in ├── randombytes ├── .dirstamp ├── randombytes.c ├── salsa20 │ ├── .dirstamp │ └── randombytes_salsa20_random.c └── sysrandom │ ├── .dirstamp │ └── randombytes_sysrandom.c └── sodium ├── .dirstamp ├── compat.c ├── core.c ├── utils.c └── version.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/README.md -------------------------------------------------------------------------------- /dist/armv7/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/core.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_hashblocks_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_hashblocks_sha256.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_hashblocks_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_hashblocks_sha512.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_int32.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_int64.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_onetimeauth_poly1305_53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_onetimeauth_poly1305_53.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_onetimeauth_poly1305_donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_onetimeauth_poly1305_donna.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_aes128ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_aes128ctr.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_aes256estream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_aes256estream.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_uint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_uint16.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_uint32.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_uint64.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_uint8.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/export.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/randombytes.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/randombytes_salsa20_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/randombytes_salsa20_random.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/utils.h -------------------------------------------------------------------------------- /dist/armv7/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/include/sodium/version.h -------------------------------------------------------------------------------- /dist/armv7/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/lib/libsodium.a -------------------------------------------------------------------------------- /dist/armv7/lib/pkgconfig/libsodium.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/dist/armv7/lib/pkgconfig/libsodium.pc -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/crypto_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/crypto_auth.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha256/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/ref/hmac_hmacsha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha256/ref/hmac_hmacsha256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha256/ref/verify_hmacsha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha256/ref/verify_hmacsha256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha512256/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_box/crypto_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/crypto_box.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/after_curve25519xsalsa20poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/before_curve25519xsalsa20poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/hsalsa20/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/hsalsa20/ref2/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/hsalsa20/ref2/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/hsalsa20/ref2/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa20/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa20/core_salsa20_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa20/core_salsa20_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa20/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa20/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa20/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa20/ref/core_salsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa2012/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa2012/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa2012/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa2012/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa208/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa208/core_salsa208_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa208/core_salsa208_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa208/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa208/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa208/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_core/salsa208/ref/core_salsa208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/generichash_blake2_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/ref/blake2.h -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c -------------------------------------------------------------------------------- /src/libsodium/crypto_generichash/crypto_generichash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_generichash/crypto_generichash.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/crypto_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/crypto_hash.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha256/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha256/hash_sha256_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha256/hash_sha256_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha256/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha256/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha256/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha256/ref/hash_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha256/ref/hash_sha256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha512/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha512/hash_sha512_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha512/hash_sha512_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha512/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha512/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha512/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_hash/sha512/ref/hash_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hash/sha512/ref/hash_sha512.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha256/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha256/hashblocks_sha256_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha256/hashblocks_sha256_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha256/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha256/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha256/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha256/ref/blocks_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha256/ref/blocks_sha256.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha512/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha512/hashblocks_sha512_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha512/hashblocks_sha512_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha512/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha512/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha512/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_hashblocks/sha512/ref/blocks_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_hashblocks/sha512/ref/blocks_sha512.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/53/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/53/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/53/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/53/auth_poly1305_53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/53/auth_poly1305_53.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/53/verify_poly1305_53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/53/verify_poly1305_53.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/donna/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/donna/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/donna/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/donna/verify_poly1305_donna.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305_try.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/crypto_scalarmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/crypto_scalarmult.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/donna_c64/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/ref/base_curve25519_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/ref/base_curve25519_ref.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/ref/smult_curve25519_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/ref/smult_curve25519_ref.c -------------------------------------------------------------------------------- /src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/crypto_secretbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_secretbox/crypto_secretbox.c -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/xsalsa20poly1305/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_secretbox/xsalsa20poly1305/ref/box_xsalsa20poly1305.c -------------------------------------------------------------------------------- /src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/crypto_shorthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_shorthash/crypto_shorthash.c -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/siphash24/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/siphash24/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/siphash24/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_shorthash/siphash24/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c -------------------------------------------------------------------------------- /src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/crypto_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/crypto_sign.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/base.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/base2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/base2.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/d.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/d2.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_0.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_1.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_add.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_cmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_cmov.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_copy.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_invert.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_isnegative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_isnegative.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_isnonzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_isnonzero.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_neg.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_pow22523.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_pow22523.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_sub.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/fe_tobytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/fe_tobytes.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_add.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_add.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_frombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_frombytes.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_madd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_madd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_msub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_msub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p2.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p3.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p2_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_0.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p3_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_0.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p3_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_dbl.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_cached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_cached.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_p2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_p2.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_p3_tobytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_tobytes.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_precomp_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_precomp_0.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_scalarmult_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_scalarmult_base.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/keypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/keypair.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/open.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/pow22523.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/pow22523.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/pow225521.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/pow225521.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/sc.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/sc_muladd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/sc_muladd.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/sc_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/sc_reduce.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/sign.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/fe25519_edwards25519sha512batch.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/ge25519_edwards25519sha512batch.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519.h -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sc25519_edwards25519sha512batch.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c -------------------------------------------------------------------------------- /src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_sign/edwards25519sha512batch/sign_edwards25519sha512batch_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/common.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/common_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/consts.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/int128.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/types.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-be.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table-le.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/aes-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/aes-table.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/aes256-ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/aes256-ctr.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/aes256.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/hongjun/ecrypt-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/hongjun/ecrypt-sync.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/aes256estream/stream_aes256estream_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/aes256estream/stream_aes256estream_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/crypto_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/crypto_stream.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/amd64_xmm6/api.h: -------------------------------------------------------------------------------- 1 | #include "crypto_stream_salsa20.h" 2 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa20/amd64_xmm6/stream_salsa20_amd64_xmm6.s -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa20/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa2012/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa208/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/xsalsa20/ref/api.h -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/xsalsa20/ref/stream_xsalsa20.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/xsalsa20/ref/xor_xsalsa20.c -------------------------------------------------------------------------------- /src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/16/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/16/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/16/ref/api.h: -------------------------------------------------------------------------------- 1 | 2 | #include "crypto_verify_16.h" 3 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/16/ref/verify_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_verify/16/ref/verify_16.c -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/16/verify_16_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_verify/16/verify_16_api.c -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/32/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/32/ref/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/32/ref/api.h: -------------------------------------------------------------------------------- 1 | 2 | #include "crypto_verify_32.h" 3 | -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/32/ref/verify_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_verify/32/ref/verify_32.c -------------------------------------------------------------------------------- /src/libsodium/crypto_verify/32/verify_32_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/crypto_verify/32/verify_32_api.c -------------------------------------------------------------------------------- /src/libsodium/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/core.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_hashblocks_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_hashblocks_sha256.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_hashblocks_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_hashblocks_sha512.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_int32.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_int64.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_onetimeauth_poly1305_53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_53.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_onetimeauth_poly1305_donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_onetimeauth_poly1305_donna.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_scalarmult_curve25519.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h.in -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_aes128ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_aes128ctr.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_aes256estream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_aes256estream.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_salsa20.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_salsa20.h.in -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_uint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_uint16.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_uint32.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_uint64.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_uint8.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/export.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/randombytes.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/randombytes_salsa20_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/randombytes_salsa20_random.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/utils.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/version.h -------------------------------------------------------------------------------- /src/libsodium/include/sodium/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/include/sodium/version.h.in -------------------------------------------------------------------------------- /src/libsodium/randombytes/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/randombytes/randombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/randombytes/randombytes.c -------------------------------------------------------------------------------- /src/libsodium/randombytes/salsa20/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c -------------------------------------------------------------------------------- /src/libsodium/randombytes/sysrandom/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c -------------------------------------------------------------------------------- /src/libsodium/sodium/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libsodium/sodium/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/sodium/compat.c -------------------------------------------------------------------------------- /src/libsodium/sodium/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/sodium/core.c -------------------------------------------------------------------------------- /src/libsodium/sodium/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/sodium/utils.c -------------------------------------------------------------------------------- /src/libsodium/sodium/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochtu/libsodium-ios/HEAD/src/libsodium/sodium/version.c --------------------------------------------------------------------------------