├── .editorconfig ├── .github └── workflows │ └── issues.yml ├── .gitignore ├── Clibsodium.xcframework ├── Info.plist ├── ios-arm64_arm64e │ ├── 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_sign_edwards25519sha512batch.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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── ios-arm64_arm64e_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_sign_edwards25519sha512batch.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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── ios-arm64_arm64e_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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── macos-arm64_arm64e_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_sign_edwards25519sha512batch.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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── tvos-arm64_arm64e │ ├── 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_sign_edwards25519sha512batch.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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── tvos-arm64_arm64e_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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── watchos-arm64_arm64_32_arm64e_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_sign_edwards25519sha512batch.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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── watchos-arm64_arm64e_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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a ├── xros-arm64_arm64e-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 │ │ │ ├── export.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_internal_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ └── version.h │ └── libsodium.a └── xros-arm64_arm64e │ ├── 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_sign_edwards25519sha512batch.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 │ │ ├── export.h │ │ ├── randombytes.h │ │ ├── randombytes_internal_random.h │ │ ├── randombytes_sysrandom.h │ │ ├── runtime.h │ │ ├── utils.h │ │ └── version.h │ └── libsodium.a ├── Clibsodium ├── module.modulemap └── shim.h ├── Examples ├── CommonCode │ └── Helpers.swift ├── OSX │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── Info.plist ├── Watch Extension │ ├── Assets.xcassets │ │ └── Contents.json │ ├── ExtensionDelegate.swift │ ├── Info.plist │ └── InterfaceController.swift ├── Watch │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Interface.storyboard │ └── Info.plist ├── iOS │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── tvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── tvOSMain.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sodium.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Sodium.xcscheme │ ├── Sodium_OSX.xcscheme │ ├── Sodium_iOS.xcscheme │ ├── Sodium_tvOS.xcscheme │ └── Sodium_watchOS.xcscheme ├── Sodium ├── Aead.swift ├── Auth.swift ├── Box.swift ├── Bytes.swift ├── ExitCode.swift ├── Generators │ ├── KeyPairGenerator.swift │ ├── KeyPairProtocol.swift │ ├── NonceGenerator.swift │ └── SecretKeyGenerator.swift ├── GenericHash.swift ├── Info.plist ├── KeyDerivation.swift ├── KeyExchange.swift ├── PWHash.swift ├── RandomBytes.swift ├── SecretBox.swift ├── SecretStream.swift ├── ShortHash.swift ├── Sign.swift ├── Sodium.h ├── Sodium.swift ├── Stream.swift ├── Utils.swift ├── Version.swift └── libsodium │ ├── 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_sign_edwards25519sha512batch.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 │ ├── export.h │ ├── randombytes.h │ ├── randombytes_internal_random.h │ ├── randombytes_sysrandom.h │ ├── runtime.h │ ├── sodium_lib.h │ ├── utils.h │ └── version.h └── Tests ├── LinuxMain.swift └── SodiumTests ├── Info.plist ├── ReadmeTests.swift └── SodiumTests.swift /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/.gitignore -------------------------------------------------------------------------------- /Clibsodium.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/Info.plist -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box_curve25519xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box_curve25519xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-maccatalyst/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/ios-arm64_arm64e_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/macos-arm64_arm64e_x86_64/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/macos-arm64_arm64e_x86_64/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box_curve25519xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box_curve25519xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/tvos-arm64_arm64e_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64_32_arm64e_armv7k/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/watchos-arm64_arm64e_i386_x86_64-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e-simulator/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e-simulator/libsodium.a -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/module.modulemap -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/core.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_box.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_kx.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/export.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/runtime.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/utils.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/Headers/sodium/version.h -------------------------------------------------------------------------------- /Clibsodium.xcframework/xros-arm64_arm64e/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium.xcframework/xros-arm64_arm64e/libsodium.a -------------------------------------------------------------------------------- /Clibsodium/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium/module.modulemap -------------------------------------------------------------------------------- /Clibsodium/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Clibsodium/shim.h -------------------------------------------------------------------------------- /Examples/CommonCode/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/CommonCode/Helpers.swift -------------------------------------------------------------------------------- /Examples/OSX/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/OSX/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/OSX/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/OSX/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/OSX/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/OSX/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/OSX/Info.plist -------------------------------------------------------------------------------- /Examples/Watch Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Watch Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Examples/Watch Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch Extension/Info.plist -------------------------------------------------------------------------------- /Examples/Watch Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Examples/Watch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Watch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Watch/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Examples/Watch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/Watch/Info.plist -------------------------------------------------------------------------------- /Examples/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/Info.plist -------------------------------------------------------------------------------- /Examples/iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/iOS/ViewController.swift -------------------------------------------------------------------------------- /Examples/tvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/tvOS/Base.lproj/tvOSMain.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/Base.lproj/tvOSMain.storyboard -------------------------------------------------------------------------------- /Examples/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/Info.plist -------------------------------------------------------------------------------- /Examples/tvOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Examples/tvOS/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/README.md -------------------------------------------------------------------------------- /Sodium.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sodium.xcodeproj/xcshareddata/xcschemes/Sodium.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/xcshareddata/xcschemes/Sodium.xcscheme -------------------------------------------------------------------------------- /Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_OSX.xcscheme -------------------------------------------------------------------------------- /Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_iOS.xcscheme -------------------------------------------------------------------------------- /Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_tvOS.xcscheme -------------------------------------------------------------------------------- /Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium.xcodeproj/xcshareddata/xcschemes/Sodium_watchOS.xcscheme -------------------------------------------------------------------------------- /Sodium/Aead.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Aead.swift -------------------------------------------------------------------------------- /Sodium/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Auth.swift -------------------------------------------------------------------------------- /Sodium/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Box.swift -------------------------------------------------------------------------------- /Sodium/Bytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Bytes.swift -------------------------------------------------------------------------------- /Sodium/ExitCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/ExitCode.swift -------------------------------------------------------------------------------- /Sodium/Generators/KeyPairGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Generators/KeyPairGenerator.swift -------------------------------------------------------------------------------- /Sodium/Generators/KeyPairProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Generators/KeyPairProtocol.swift -------------------------------------------------------------------------------- /Sodium/Generators/NonceGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Generators/NonceGenerator.swift -------------------------------------------------------------------------------- /Sodium/Generators/SecretKeyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Generators/SecretKeyGenerator.swift -------------------------------------------------------------------------------- /Sodium/GenericHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/GenericHash.swift -------------------------------------------------------------------------------- /Sodium/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Info.plist -------------------------------------------------------------------------------- /Sodium/KeyDerivation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/KeyDerivation.swift -------------------------------------------------------------------------------- /Sodium/KeyExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/KeyExchange.swift -------------------------------------------------------------------------------- /Sodium/PWHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/PWHash.swift -------------------------------------------------------------------------------- /Sodium/RandomBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/RandomBytes.swift -------------------------------------------------------------------------------- /Sodium/SecretBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/SecretBox.swift -------------------------------------------------------------------------------- /Sodium/SecretStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/SecretStream.swift -------------------------------------------------------------------------------- /Sodium/ShortHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/ShortHash.swift -------------------------------------------------------------------------------- /Sodium/Sign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Sign.swift -------------------------------------------------------------------------------- /Sodium/Sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Sodium.h -------------------------------------------------------------------------------- /Sodium/Sodium.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Sodium.swift -------------------------------------------------------------------------------- /Sodium/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Stream.swift -------------------------------------------------------------------------------- /Sodium/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Utils.swift -------------------------------------------------------------------------------- /Sodium/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/Version.swift -------------------------------------------------------------------------------- /Sodium/libsodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/core.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_aead_aegis128l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_aead_aegis128l.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_aead_aegis256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_aead_aegis256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_aead_aes256gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_aead_aes256gcm.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_aead_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_aead_xchacha20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_auth.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_box.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_box_curve25519xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_box_curve25519xchacha20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_ed25519.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_hchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_hchacha20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_ristretto255.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_generichash.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_hash.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_kdf.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_kdf_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_kdf_blake2b.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_kdf_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_kdf_hkdf_sha256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_kdf_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_kdf_hkdf_sha512.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_kx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_kx.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_pwhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_pwhash.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_pwhash_argon2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_pwhash_argon2i.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_pwhash_argon2id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_pwhash_argon2id.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_scalarmult_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_scalarmult_ed25519.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_scalarmult_ristretto255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_scalarmult_ristretto255.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_secretbox.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_secretbox_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_secretbox_xchacha20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_secretstream_xchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_secretstream_xchacha20poly1305.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_shorthash.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_sign.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_xchacha20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_verify_16.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_verify_32.h -------------------------------------------------------------------------------- /Sodium/libsodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/crypto_verify_64.h -------------------------------------------------------------------------------- /Sodium/libsodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/export.h -------------------------------------------------------------------------------- /Sodium/libsodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/randombytes.h -------------------------------------------------------------------------------- /Sodium/libsodium/randombytes_internal_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/randombytes_internal_random.h -------------------------------------------------------------------------------- /Sodium/libsodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /Sodium/libsodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/runtime.h -------------------------------------------------------------------------------- /Sodium/libsodium/sodium_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/sodium_lib.h -------------------------------------------------------------------------------- /Sodium/libsodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/utils.h -------------------------------------------------------------------------------- /Sodium/libsodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Sodium/libsodium/version.h -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SodiumTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Tests/SodiumTests/Info.plist -------------------------------------------------------------------------------- /Tests/SodiumTests/ReadmeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Tests/SodiumTests/ReadmeTests.swift -------------------------------------------------------------------------------- /Tests/SodiumTests/SodiumTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/swift-sodium/HEAD/Tests/SodiumTests/SodiumTests.swift --------------------------------------------------------------------------------