├── .editorconfig ├── .eslintrc.cjs ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml ├── assets │ ├── banner.svg │ ├── iphone13_benchmark.png │ └── sim_benchmark.png └── workflows │ ├── build-example-app.yml │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Clibsodium.xcframework ├── Info.plist ├── ios-arm64_armv7_armv7s │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── ios-arm64_i386_x86_64-simulator │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── ios-arm64_x86_64-maccatalyst │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── macos-arm64_x86_64 │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── tvos-arm64 │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── tvos-arm64_x86_64-simulator │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── watchos-arm64_arm64_32_armv7k │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── watchos-arm64_i386_x86_64-simulator │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── xros-arm64-simulator │ ├── Headers │ │ ├── module.modulemap │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a └── xros-arm64 │ ├── Headers │ ├── module.modulemap │ ├── sodium.h │ └── sodium │ │ ├── core.h │ │ ├── crypto_aead_aegis128l.h │ │ ├── crypto_aead_aegis256.h │ │ ├── crypto_aead_aes256gcm.h │ │ ├── crypto_aead_chacha20poly1305.h │ │ ├── crypto_aead_xchacha20poly1305.h │ │ ├── crypto_auth.h │ │ ├── crypto_auth_hmacsha256.h │ │ ├── crypto_auth_hmacsha512.h │ │ ├── crypto_auth_hmacsha512256.h │ │ ├── crypto_box.h │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ ├── crypto_core_ed25519.h │ │ ├── crypto_core_hchacha20.h │ │ ├── crypto_core_hsalsa20.h │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ ├── crypto_kdf_blake2b.h │ │ ├── crypto_kdf_hkdf_sha256.h │ │ ├── crypto_kdf_hkdf_sha512.h │ │ ├── crypto_kx.h │ │ ├── crypto_onetimeauth.h │ │ ├── crypto_onetimeauth_poly1305.h │ │ ├── crypto_pwhash.h │ │ ├── crypto_pwhash_argon2i.h │ │ ├── crypto_pwhash_argon2id.h │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ ├── crypto_scalarmult.h │ │ ├── crypto_scalarmult_curve25519.h │ │ ├── crypto_scalarmult_ed25519.h │ │ ├── crypto_scalarmult_ristretto255.h │ │ ├── crypto_secretbox.h │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ ├── crypto_shorthash.h │ │ ├── crypto_shorthash_siphash24.h │ │ ├── crypto_sign.h │ │ ├── crypto_sign_ed25519.h │ │ ├── crypto_stream.h │ │ ├── crypto_stream_chacha20.h │ │ ├── crypto_stream_salsa20.h │ │ ├── crypto_stream_salsa2012.h │ │ ├── crypto_stream_salsa208.h │ │ ├── crypto_stream_xchacha20.h │ │ ├── crypto_stream_xsalsa20.h │ │ ├── crypto_verify_16.h │ │ ├── crypto_verify_32.h │ │ ├── crypto_verify_64.h │ │ ├── crypto_vrf.h │ │ ├── crypto_vrf_rfc9381.h │ │ ├── export.h │ │ ├── randombytes.h │ │ ├── randombytes_internal_random.h │ │ ├── randombytes_sysrandom.h │ │ ├── runtime.h │ │ ├── utils.h │ │ └── version.h │ └── libsodium.a ├── LICENSE ├── README.md ├── RNSodium.podspec ├── android ├── CMakeLists.txt ├── build.gradle ├── gradle.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp-adapter.cpp │ └── java │ └── com │ └── sodium │ └── SodiumPackage.java ├── babel.config.js ├── cpp ├── Sodium.cpp └── Sodium.hpp ├── docs └── getting-started.md ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── getrandomvaluesexample │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── File.swift │ ├── GetRandomValuesExample-Bridging-Header.h │ ├── GetRandomValuesExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GetRandomValuesExample.xcscheme │ ├── GetRandomValuesExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── GetRandomValuesExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── GetRandomValuesExampleTests │ │ ├── GetRandomValuesExampleTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ ├── App.tsx │ ├── components │ ├── Benchmark.tsx │ ├── CustomNavigationBar.tsx │ └── Percentage.tsx │ ├── constants │ └── theme.ts │ ├── routers │ ├── BottomTabNavigator.tsx │ ├── RootStackNavigator.tsx │ └── Router.tsx │ ├── screens │ ├── B64.tsx │ ├── JSI.tsx │ └── Results.tsx │ ├── stores │ └── Benchmarks.ts │ ├── styles │ └── common.ts │ ├── types │ └── navigation │ │ ├── BottomTabParamList.ts │ │ └── RootStackParamList.ts │ └── utils │ ├── benchmarks.ts │ ├── helpers.ts │ ├── time.ts │ └── zustand.ts ├── ios └── Sodium.mm ├── libsodium-android ├── arm64-v8a │ ├── include │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── lib │ │ ├── libsodium.a │ │ ├── libsodium.la │ │ ├── libsodium.so │ │ └── pkgconfig │ │ └── libsodium.pc ├── armeabi-v7a │ ├── include │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── lib │ │ ├── libsodium.a │ │ ├── libsodium.la │ │ ├── libsodium.so │ │ └── pkgconfig │ │ └── libsodium.pc ├── x86 │ ├── include │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aegis128l.h │ │ │ ├── crypto_aead_aegis256.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kdf_hkdf_sha256.h │ │ │ ├── crypto_kdf_hkdf_sha512.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── crypto_vrf.h │ │ │ ├── crypto_vrf_rfc9381.h │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── lib │ │ ├── libsodium.a │ │ ├── libsodium.la │ │ ├── libsodium.so │ │ └── pkgconfig │ │ └── libsodium.pc └── x86_64 │ ├── include │ ├── sodium.h │ └── sodium │ │ ├── core.h │ │ ├── crypto_aead_aegis128l.h │ │ ├── crypto_aead_aegis256.h │ │ ├── crypto_aead_aes256gcm.h │ │ ├── crypto_aead_chacha20poly1305.h │ │ ├── crypto_aead_xchacha20poly1305.h │ │ ├── crypto_auth.h │ │ ├── crypto_auth_hmacsha256.h │ │ ├── crypto_auth_hmacsha512.h │ │ ├── crypto_auth_hmacsha512256.h │ │ ├── crypto_box.h │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ ├── crypto_core_ed25519.h │ │ ├── crypto_core_hchacha20.h │ │ ├── crypto_core_hsalsa20.h │ │ ├── crypto_core_ristretto255.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_kdf.h │ │ ├── crypto_kdf_blake2b.h │ │ ├── crypto_kdf_hkdf_sha256.h │ │ ├── crypto_kdf_hkdf_sha512.h │ │ ├── crypto_kx.h │ │ ├── crypto_onetimeauth.h │ │ ├── crypto_onetimeauth_poly1305.h │ │ ├── crypto_pwhash.h │ │ ├── crypto_pwhash_argon2i.h │ │ ├── crypto_pwhash_argon2id.h │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ ├── crypto_scalarmult.h │ │ ├── crypto_scalarmult_curve25519.h │ │ ├── crypto_scalarmult_ed25519.h │ │ ├── crypto_scalarmult_ristretto255.h │ │ ├── crypto_secretbox.h │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ ├── crypto_shorthash.h │ │ ├── crypto_shorthash_siphash24.h │ │ ├── crypto_sign.h │ │ ├── crypto_sign_ed25519.h │ │ ├── crypto_stream.h │ │ ├── crypto_stream_chacha20.h │ │ ├── crypto_stream_salsa20.h │ │ ├── crypto_stream_salsa2012.h │ │ ├── crypto_stream_salsa208.h │ │ ├── crypto_stream_xchacha20.h │ │ ├── crypto_stream_xsalsa20.h │ │ ├── crypto_verify_16.h │ │ ├── crypto_verify_32.h │ │ ├── crypto_verify_64.h │ │ ├── crypto_vrf.h │ │ ├── crypto_vrf_rfc9381.h │ │ ├── export.h │ │ ├── randombytes.h │ │ ├── randombytes_internal_random.h │ │ ├── randombytes_sysrandom.h │ │ ├── runtime.h │ │ ├── utils.h │ │ └── version.h │ └── lib │ ├── libsodium.a │ ├── libsodium.la │ ├── libsodium.so │ └── pkgconfig │ └── libsodium.pc ├── package.json ├── src └── index.ts ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/assets/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/assets/banner.svg -------------------------------------------------------------------------------- /.github/assets/iphone13_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/assets/iphone13_benchmark.png -------------------------------------------------------------------------------- /.github/assets/sim_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/assets/sim_benchmark.png -------------------------------------------------------------------------------- /.github/workflows/build-example-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/workflows/build-example-app.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Clibsodium.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/Info.plist -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_armv7_armv7s/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_armv7_armv7s/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_i386_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/ios-arm64_x86_64-maccatalyst/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_x86_64/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/macos-arm64_x86_64/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/tvos-arm64_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_armv7k/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_i386_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_i386_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_i386_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/watchos-arm64_i386_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/Clibsodium.xcframework/xros-arm64/libsodium.a -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/README.md -------------------------------------------------------------------------------- /RNSodium.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/RNSodium.podspec -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/src/main/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/java/com/sodium/SodiumPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/android/src/main/java/com/sodium/SodiumPackage.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/babel.config.js -------------------------------------------------------------------------------- /cpp/Sodium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/cpp/Sodium.cpp -------------------------------------------------------------------------------- /cpp/Sodium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/cpp/Sodium.hpp -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/getrandomvaluesexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/java/com/getrandomvaluesexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/getrandomvaluesexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/java/com/getrandomvaluesexample/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/Info.plist -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExample/main.m -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExampleTests/GetRandomValuesExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExampleTests/GetRandomValuesExampleTests.m -------------------------------------------------------------------------------- /example/ios/GetRandomValuesExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/GetRandomValuesExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/components/Benchmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/components/Benchmark.tsx -------------------------------------------------------------------------------- /example/src/components/CustomNavigationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/components/CustomNavigationBar.tsx -------------------------------------------------------------------------------- /example/src/components/Percentage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/components/Percentage.tsx -------------------------------------------------------------------------------- /example/src/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/constants/theme.ts -------------------------------------------------------------------------------- /example/src/routers/BottomTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/routers/BottomTabNavigator.tsx -------------------------------------------------------------------------------- /example/src/routers/RootStackNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/routers/RootStackNavigator.tsx -------------------------------------------------------------------------------- /example/src/routers/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/routers/Router.tsx -------------------------------------------------------------------------------- /example/src/screens/B64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/screens/B64.tsx -------------------------------------------------------------------------------- /example/src/screens/JSI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/screens/JSI.tsx -------------------------------------------------------------------------------- /example/src/screens/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/screens/Results.tsx -------------------------------------------------------------------------------- /example/src/stores/Benchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/stores/Benchmarks.ts -------------------------------------------------------------------------------- /example/src/styles/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/styles/common.ts -------------------------------------------------------------------------------- /example/src/types/navigation/BottomTabParamList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/types/navigation/BottomTabParamList.ts -------------------------------------------------------------------------------- /example/src/types/navigation/RootStackParamList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/types/navigation/RootStackParamList.ts -------------------------------------------------------------------------------- /example/src/utils/benchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/utils/benchmarks.ts -------------------------------------------------------------------------------- /example/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/utils/helpers.ts -------------------------------------------------------------------------------- /example/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/utils/time.ts -------------------------------------------------------------------------------- /example/src/utils/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/example/src/utils/zustand.ts -------------------------------------------------------------------------------- /ios/Sodium.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/ios/Sodium.mm -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/core.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_kx.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/export.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/randombytes.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/runtime.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/utils.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/include/sodium/version.h -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/lib/libsodium.a -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/lib/libsodium.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/lib/libsodium.la -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/lib/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/lib/libsodium.so -------------------------------------------------------------------------------- /libsodium-android/arm64-v8a/lib/pkgconfig/libsodium.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/arm64-v8a/lib/pkgconfig/libsodium.pc -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/core.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_kx.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/export.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/randombytes.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/runtime.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/utils.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/include/sodium/version.h -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/lib/libsodium.a -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/lib/libsodium.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/lib/libsodium.la -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/lib/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/lib/libsodium.so -------------------------------------------------------------------------------- /libsodium-android/armeabi-v7a/lib/pkgconfig/libsodium.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/armeabi-v7a/lib/pkgconfig/libsodium.pc -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/core.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_box_curve25519xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_box_curve25519xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_kx.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/export.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/randombytes.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/runtime.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/utils.h -------------------------------------------------------------------------------- /libsodium-android/x86/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/include/sodium/version.h -------------------------------------------------------------------------------- /libsodium-android/x86/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/lib/libsodium.a -------------------------------------------------------------------------------- /libsodium-android/x86/lib/libsodium.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/lib/libsodium.la -------------------------------------------------------------------------------- /libsodium-android/x86/lib/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/lib/libsodium.so -------------------------------------------------------------------------------- /libsodium-android/x86/lib/pkgconfig/libsodium.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86/lib/pkgconfig/libsodium.pc -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/core.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_auth.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_box.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_hash.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_kx.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_sign.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_vrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_vrf.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/crypto_vrf_rfc9381.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/crypto_vrf_rfc9381.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/export.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/randombytes.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/runtime.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/utils.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/include/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/include/sodium/version.h -------------------------------------------------------------------------------- /libsodium-android/x86_64/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/lib/libsodium.a -------------------------------------------------------------------------------- /libsodium-android/x86_64/lib/libsodium.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/lib/libsodium.la -------------------------------------------------------------------------------- /libsodium-android/x86_64/lib/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/lib/libsodium.so -------------------------------------------------------------------------------- /libsodium-android/x86_64/lib/pkgconfig/libsodium.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/libsodium-android/x86_64/lib/pkgconfig/libsodium.pc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kore-koi/react-native-get-random-values/HEAD/yarn.lock --------------------------------------------------------------------------------