├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .spi.yml ├── Examples └── PackageTraits │ ├── MiddlewareClientWithSQLCipher │ ├── .gitignore │ ├── Package.swift │ ├── Sources │ │ └── MiddlewareClientWithSQLCipher │ │ │ └── MiddlewareClientWithSQLCipher.swift │ └── Tests │ │ └── MiddlewareClientWithSQLCipherTests │ │ └── MiddlewareClientWithSQLCipherTests.swift │ ├── MiddlewareClientWithoutSQLCipher │ ├── .gitignore │ ├── Package.swift │ ├── Sources │ │ └── MiddlewareClientWithoutSQLCipher │ │ │ └── MiddlewareClientWithoutSQLCipher.swift │ └── Tests │ │ └── MiddlewareClientWithoutSQLCipherTests │ │ └── MiddlewareClientWithoutSQLCipherTests.swift │ ├── README.md │ └── SQLMiddleware │ ├── .gitignore │ ├── Package.swift │ └── Sources │ └── SQLMiddleware │ └── SQLMiddleware.swift ├── LICENSE-SQLCIPHER.txt ├── LICENSE-SQLITE.txt ├── LICENSE.txt ├── Package.swift ├── README.md ├── Sources ├── SQLCipher │ ├── crypto_libtomcrypt.c │ ├── libtomcrypt │ │ ├── ciphers │ │ │ ├── aes │ │ │ │ ├── aes.c │ │ │ │ ├── aes_desc.c │ │ │ │ ├── aes_tab.c │ │ │ │ └── aesni.c │ │ │ ├── anubis.c │ │ │ ├── blowfish.c │ │ │ ├── camellia.c │ │ │ ├── cast5.c │ │ │ ├── des.c │ │ │ ├── idea.c │ │ │ ├── kasumi.c │ │ │ ├── khazad.c │ │ │ ├── kseed.c │ │ │ ├── multi2.c │ │ │ ├── noekeon.c │ │ │ ├── rc2.c │ │ │ ├── rc5.c │ │ │ ├── rc6.c │ │ │ ├── safer │ │ │ │ ├── safer.c │ │ │ │ ├── safer_tab.c │ │ │ │ └── saferp.c │ │ │ ├── serpent.c │ │ │ ├── skipjack.c │ │ │ ├── tea.c │ │ │ ├── twofish │ │ │ │ ├── twofish.c │ │ │ │ └── twofish_tab.c │ │ │ └── xtea.c │ │ ├── encauth │ │ │ ├── ccm │ │ │ │ ├── ccm_add_aad.c │ │ │ │ ├── ccm_add_nonce.c │ │ │ │ ├── ccm_done.c │ │ │ │ ├── ccm_init.c │ │ │ │ ├── ccm_memory.c │ │ │ │ ├── ccm_process.c │ │ │ │ ├── ccm_reset.c │ │ │ │ └── ccm_test.c │ │ │ ├── chachapoly │ │ │ │ ├── chacha20poly1305_add_aad.c │ │ │ │ ├── chacha20poly1305_decrypt.c │ │ │ │ ├── chacha20poly1305_done.c │ │ │ │ ├── chacha20poly1305_encrypt.c │ │ │ │ ├── chacha20poly1305_init.c │ │ │ │ ├── chacha20poly1305_memory.c │ │ │ │ ├── chacha20poly1305_setiv.c │ │ │ │ ├── chacha20poly1305_setiv_rfc7905.c │ │ │ │ └── chacha20poly1305_test.c │ │ │ ├── eax │ │ │ │ ├── eax_addheader.c │ │ │ │ ├── eax_decrypt.c │ │ │ │ ├── eax_decrypt_verify_memory.c │ │ │ │ ├── eax_done.c │ │ │ │ ├── eax_encrypt.c │ │ │ │ ├── eax_encrypt_authenticate_memory.c │ │ │ │ ├── eax_init.c │ │ │ │ └── eax_test.c │ │ │ ├── gcm │ │ │ │ ├── gcm_add_aad.c │ │ │ │ ├── gcm_add_iv.c │ │ │ │ ├── gcm_done.c │ │ │ │ ├── gcm_gf_mult.c │ │ │ │ ├── gcm_init.c │ │ │ │ ├── gcm_memory.c │ │ │ │ ├── gcm_mult_h.c │ │ │ │ ├── gcm_process.c │ │ │ │ ├── gcm_reset.c │ │ │ │ └── gcm_test.c │ │ │ ├── ocb │ │ │ │ ├── ocb_decrypt.c │ │ │ │ ├── ocb_decrypt_verify_memory.c │ │ │ │ ├── ocb_done_decrypt.c │ │ │ │ ├── ocb_done_encrypt.c │ │ │ │ ├── ocb_encrypt.c │ │ │ │ ├── ocb_encrypt_authenticate_memory.c │ │ │ │ ├── ocb_init.c │ │ │ │ ├── ocb_ntz.c │ │ │ │ ├── ocb_shift_xor.c │ │ │ │ ├── ocb_test.c │ │ │ │ └── s_ocb_done.c │ │ │ └── ocb3 │ │ │ │ ├── ocb3_add_aad.c │ │ │ │ ├── ocb3_decrypt.c │ │ │ │ ├── ocb3_decrypt_last.c │ │ │ │ ├── ocb3_decrypt_verify_memory.c │ │ │ │ ├── ocb3_done.c │ │ │ │ ├── ocb3_encrypt.c │ │ │ │ ├── ocb3_encrypt_authenticate_memory.c │ │ │ │ ├── ocb3_encrypt_last.c │ │ │ │ ├── ocb3_init.c │ │ │ │ ├── ocb3_int_ntz.c │ │ │ │ ├── ocb3_int_xor_blocks.c │ │ │ │ └── ocb3_test.c │ │ ├── hashes │ │ │ ├── blake2b.c │ │ │ ├── blake2s.c │ │ │ ├── chc │ │ │ │ └── chc.c │ │ │ ├── helper │ │ │ │ ├── hash_file.c │ │ │ │ ├── hash_filehandle.c │ │ │ │ ├── hash_memory.c │ │ │ │ └── hash_memory_multi.c │ │ │ ├── md2.c │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── rmd128.c │ │ │ ├── rmd160.c │ │ │ ├── rmd256.c │ │ │ ├── rmd320.c │ │ │ ├── sha1.c │ │ │ ├── sha2 │ │ │ │ ├── sha224.c │ │ │ │ ├── sha256.c │ │ │ │ ├── sha384.c │ │ │ │ ├── sha512.c │ │ │ │ ├── sha512_224.c │ │ │ │ └── sha512_256.c │ │ │ ├── sha3.c │ │ │ ├── sha3_test.c │ │ │ ├── tiger.c │ │ │ └── whirl │ │ │ │ ├── whirl.c │ │ │ │ └── whirltab.c │ │ ├── headers │ │ │ ├── tomcrypt.h │ │ │ ├── tomcrypt_argchk.h │ │ │ ├── tomcrypt_cfg.h │ │ │ ├── tomcrypt_cipher.h │ │ │ ├── tomcrypt_custom.h │ │ │ ├── tomcrypt_hash.h │ │ │ ├── tomcrypt_mac.h │ │ │ ├── tomcrypt_macros.h │ │ │ ├── tomcrypt_math.h │ │ │ ├── tomcrypt_misc.h │ │ │ ├── tomcrypt_pk.h │ │ │ ├── tomcrypt_pkcs.h │ │ │ ├── tomcrypt_private.h │ │ │ └── tomcrypt_prng.h │ │ ├── mac │ │ │ ├── blake2 │ │ │ │ ├── blake2bmac.c │ │ │ │ ├── blake2bmac_file.c │ │ │ │ ├── blake2bmac_memory.c │ │ │ │ ├── blake2bmac_memory_multi.c │ │ │ │ ├── blake2bmac_test.c │ │ │ │ ├── blake2smac.c │ │ │ │ ├── blake2smac_file.c │ │ │ │ ├── blake2smac_memory.c │ │ │ │ ├── blake2smac_memory_multi.c │ │ │ │ └── blake2smac_test.c │ │ │ ├── f9 │ │ │ │ ├── f9_done.c │ │ │ │ ├── f9_file.c │ │ │ │ ├── f9_init.c │ │ │ │ ├── f9_memory.c │ │ │ │ ├── f9_memory_multi.c │ │ │ │ ├── f9_process.c │ │ │ │ └── f9_test.c │ │ │ ├── hmac │ │ │ │ ├── hmac_done.c │ │ │ │ ├── hmac_file.c │ │ │ │ ├── hmac_init.c │ │ │ │ ├── hmac_memory.c │ │ │ │ ├── hmac_memory_multi.c │ │ │ │ ├── hmac_process.c │ │ │ │ └── hmac_test.c │ │ │ ├── omac │ │ │ │ ├── omac_done.c │ │ │ │ ├── omac_file.c │ │ │ │ ├── omac_init.c │ │ │ │ ├── omac_memory.c │ │ │ │ ├── omac_memory_multi.c │ │ │ │ ├── omac_process.c │ │ │ │ └── omac_test.c │ │ │ ├── pelican │ │ │ │ ├── pelican.c │ │ │ │ ├── pelican_memory.c │ │ │ │ └── pelican_test.c │ │ │ ├── pmac │ │ │ │ ├── pmac_done.c │ │ │ │ ├── pmac_file.c │ │ │ │ ├── pmac_init.c │ │ │ │ ├── pmac_memory.c │ │ │ │ ├── pmac_memory_multi.c │ │ │ │ ├── pmac_ntz.c │ │ │ │ ├── pmac_process.c │ │ │ │ ├── pmac_shift_xor.c │ │ │ │ └── pmac_test.c │ │ │ ├── poly1305 │ │ │ │ ├── poly1305.c │ │ │ │ ├── poly1305_file.c │ │ │ │ ├── poly1305_memory.c │ │ │ │ ├── poly1305_memory_multi.c │ │ │ │ └── poly1305_test.c │ │ │ └── xcbc │ │ │ │ ├── xcbc_done.c │ │ │ │ ├── xcbc_file.c │ │ │ │ ├── xcbc_init.c │ │ │ │ ├── xcbc_memory.c │ │ │ │ ├── xcbc_memory_multi.c │ │ │ │ ├── xcbc_process.c │ │ │ │ └── xcbc_test.c │ │ ├── math │ │ │ ├── fp │ │ │ │ └── ltc_ecc_fp_mulmod.c │ │ │ ├── gmp_desc.c │ │ │ ├── ltm_desc.c │ │ │ ├── multi.c │ │ │ ├── radix_to_bin.c │ │ │ ├── rand_bn.c │ │ │ ├── rand_prime.c │ │ │ └── tfm_desc.c │ │ ├── misc │ │ │ ├── adler32.c │ │ │ ├── base16 │ │ │ │ ├── base16_decode.c │ │ │ │ └── base16_encode.c │ │ │ ├── base32 │ │ │ │ ├── base32_decode.c │ │ │ │ └── base32_encode.c │ │ │ ├── base64 │ │ │ │ ├── base64_decode.c │ │ │ │ └── base64_encode.c │ │ │ ├── bcrypt │ │ │ │ └── bcrypt.c │ │ │ ├── burn_stack.c │ │ │ ├── compare_testvector.c │ │ │ ├── copy_or_zeromem.c │ │ │ ├── crc32.c │ │ │ ├── crypt │ │ │ │ ├── crypt.c │ │ │ │ ├── crypt_argchk.c │ │ │ │ ├── crypt_cipher_descriptor.c │ │ │ │ ├── crypt_cipher_is_valid.c │ │ │ │ ├── crypt_constants.c │ │ │ │ ├── crypt_find_cipher.c │ │ │ │ ├── crypt_find_cipher_any.c │ │ │ │ ├── crypt_find_cipher_id.c │ │ │ │ ├── crypt_find_hash.c │ │ │ │ ├── crypt_find_hash_any.c │ │ │ │ ├── crypt_find_hash_id.c │ │ │ │ ├── crypt_find_hash_oid.c │ │ │ │ ├── crypt_find_prng.c │ │ │ │ ├── crypt_fsa.c │ │ │ │ ├── crypt_hash_descriptor.c │ │ │ │ ├── crypt_hash_is_valid.c │ │ │ │ ├── crypt_inits.c │ │ │ │ ├── crypt_ltc_mp_descriptor.c │ │ │ │ ├── crypt_prng_descriptor.c │ │ │ │ ├── crypt_prng_is_valid.c │ │ │ │ ├── crypt_prng_rng_descriptor.c │ │ │ │ ├── crypt_register_all_ciphers.c │ │ │ │ ├── crypt_register_all_hashes.c │ │ │ │ ├── crypt_register_all_prngs.c │ │ │ │ ├── crypt_register_cipher.c │ │ │ │ ├── crypt_register_hash.c │ │ │ │ ├── crypt_register_prng.c │ │ │ │ ├── crypt_sizes.c │ │ │ │ ├── crypt_unregister_cipher.c │ │ │ │ ├── crypt_unregister_hash.c │ │ │ │ └── crypt_unregister_prng.c │ │ │ ├── error_to_string.c │ │ │ ├── hkdf │ │ │ │ ├── hkdf.c │ │ │ │ └── hkdf_test.c │ │ │ ├── mem_neq.c │ │ │ ├── padding │ │ │ │ ├── padding_depad.c │ │ │ │ └── padding_pad.c │ │ │ ├── pbes │ │ │ │ ├── pbes.c │ │ │ │ ├── pbes1.c │ │ │ │ └── pbes2.c │ │ │ ├── pkcs12 │ │ │ │ ├── pkcs12_kdf.c │ │ │ │ └── pkcs12_utf8_to_utf16.c │ │ │ ├── pkcs5 │ │ │ │ ├── pkcs_5_1.c │ │ │ │ ├── pkcs_5_2.c │ │ │ │ └── pkcs_5_test.c │ │ │ ├── ssh │ │ │ │ ├── ssh_decode_sequence_multi.c │ │ │ │ └── ssh_encode_sequence_multi.c │ │ │ └── zeromem.c │ │ ├── modes │ │ │ ├── cbc │ │ │ │ ├── cbc_decrypt.c │ │ │ │ ├── cbc_done.c │ │ │ │ ├── cbc_encrypt.c │ │ │ │ ├── cbc_getiv.c │ │ │ │ ├── cbc_setiv.c │ │ │ │ └── cbc_start.c │ │ │ ├── cfb │ │ │ │ ├── cfb_decrypt.c │ │ │ │ ├── cfb_done.c │ │ │ │ ├── cfb_encrypt.c │ │ │ │ ├── cfb_getiv.c │ │ │ │ ├── cfb_setiv.c │ │ │ │ └── cfb_start.c │ │ │ ├── ctr │ │ │ │ ├── ctr_decrypt.c │ │ │ │ ├── ctr_done.c │ │ │ │ ├── ctr_encrypt.c │ │ │ │ ├── ctr_getiv.c │ │ │ │ ├── ctr_setiv.c │ │ │ │ ├── ctr_start.c │ │ │ │ └── ctr_test.c │ │ │ ├── ecb │ │ │ │ ├── ecb_decrypt.c │ │ │ │ ├── ecb_done.c │ │ │ │ ├── ecb_encrypt.c │ │ │ │ └── ecb_start.c │ │ │ ├── f8 │ │ │ │ ├── f8_decrypt.c │ │ │ │ ├── f8_done.c │ │ │ │ ├── f8_encrypt.c │ │ │ │ ├── f8_getiv.c │ │ │ │ ├── f8_setiv.c │ │ │ │ ├── f8_start.c │ │ │ │ └── f8_test_mode.c │ │ │ ├── lrw │ │ │ │ ├── lrw_decrypt.c │ │ │ │ ├── lrw_done.c │ │ │ │ ├── lrw_encrypt.c │ │ │ │ ├── lrw_getiv.c │ │ │ │ ├── lrw_process.c │ │ │ │ ├── lrw_setiv.c │ │ │ │ ├── lrw_start.c │ │ │ │ └── lrw_test.c │ │ │ ├── ofb │ │ │ │ ├── ofb_decrypt.c │ │ │ │ ├── ofb_done.c │ │ │ │ ├── ofb_encrypt.c │ │ │ │ ├── ofb_getiv.c │ │ │ │ ├── ofb_setiv.c │ │ │ │ └── ofb_start.c │ │ │ └── xts │ │ │ │ ├── xts_decrypt.c │ │ │ │ ├── xts_done.c │ │ │ │ ├── xts_encrypt.c │ │ │ │ ├── xts_init.c │ │ │ │ ├── xts_mult_x.c │ │ │ │ └── xts_test.c │ │ ├── pk │ │ │ ├── asn1 │ │ │ │ ├── der │ │ │ │ │ ├── bit │ │ │ │ │ │ ├── der_decode_bit_string.c │ │ │ │ │ │ ├── der_decode_raw_bit_string.c │ │ │ │ │ │ ├── der_encode_bit_string.c │ │ │ │ │ │ ├── der_encode_raw_bit_string.c │ │ │ │ │ │ └── der_length_bit_string.c │ │ │ │ │ ├── boolean │ │ │ │ │ │ ├── der_decode_boolean.c │ │ │ │ │ │ ├── der_encode_boolean.c │ │ │ │ │ │ └── der_length_boolean.c │ │ │ │ │ ├── choice │ │ │ │ │ │ └── der_decode_choice.c │ │ │ │ │ ├── custom_type │ │ │ │ │ │ ├── der_decode_custom_type.c │ │ │ │ │ │ ├── der_encode_custom_type.c │ │ │ │ │ │ └── der_length_custom_type.c │ │ │ │ │ ├── general │ │ │ │ │ │ ├── der_asn1_maps.c │ │ │ │ │ │ ├── der_decode_asn1_identifier.c │ │ │ │ │ │ ├── der_decode_asn1_length.c │ │ │ │ │ │ ├── der_encode_asn1_identifier.c │ │ │ │ │ │ ├── der_encode_asn1_length.c │ │ │ │ │ │ ├── der_length_asn1_identifier.c │ │ │ │ │ │ └── der_length_asn1_length.c │ │ │ │ │ ├── generalizedtime │ │ │ │ │ │ ├── der_decode_generalizedtime.c │ │ │ │ │ │ ├── der_encode_generalizedtime.c │ │ │ │ │ │ └── der_length_generalizedtime.c │ │ │ │ │ ├── ia5 │ │ │ │ │ │ ├── der_decode_ia5_string.c │ │ │ │ │ │ ├── der_encode_ia5_string.c │ │ │ │ │ │ └── der_length_ia5_string.c │ │ │ │ │ ├── integer │ │ │ │ │ │ ├── der_decode_integer.c │ │ │ │ │ │ ├── der_encode_integer.c │ │ │ │ │ │ └── der_length_integer.c │ │ │ │ │ ├── object_identifier │ │ │ │ │ │ ├── der_decode_object_identifier.c │ │ │ │ │ │ ├── der_encode_object_identifier.c │ │ │ │ │ │ └── der_length_object_identifier.c │ │ │ │ │ ├── octet │ │ │ │ │ │ ├── der_decode_octet_string.c │ │ │ │ │ │ ├── der_encode_octet_string.c │ │ │ │ │ │ └── der_length_octet_string.c │ │ │ │ │ ├── printable_string │ │ │ │ │ │ ├── der_decode_printable_string.c │ │ │ │ │ │ ├── der_encode_printable_string.c │ │ │ │ │ │ └── der_length_printable_string.c │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── der_decode_sequence_ex.c │ │ │ │ │ │ ├── der_decode_sequence_flexi.c │ │ │ │ │ │ ├── der_decode_sequence_multi.c │ │ │ │ │ │ ├── der_encode_sequence_ex.c │ │ │ │ │ │ ├── der_encode_sequence_multi.c │ │ │ │ │ │ ├── der_length_sequence.c │ │ │ │ │ │ ├── der_sequence_free.c │ │ │ │ │ │ └── der_sequence_shrink.c │ │ │ │ │ ├── set │ │ │ │ │ │ ├── der_encode_set.c │ │ │ │ │ │ └── der_encode_setof.c │ │ │ │ │ ├── short_integer │ │ │ │ │ │ ├── der_decode_short_integer.c │ │ │ │ │ │ ├── der_encode_short_integer.c │ │ │ │ │ │ └── der_length_short_integer.c │ │ │ │ │ ├── teletex_string │ │ │ │ │ │ ├── der_decode_teletex_string.c │ │ │ │ │ │ └── der_length_teletex_string.c │ │ │ │ │ ├── utctime │ │ │ │ │ │ ├── der_decode_utctime.c │ │ │ │ │ │ ├── der_encode_utctime.c │ │ │ │ │ │ └── der_length_utctime.c │ │ │ │ │ └── utf8 │ │ │ │ │ │ ├── der_decode_utf8_string.c │ │ │ │ │ │ ├── der_encode_utf8_string.c │ │ │ │ │ │ └── der_length_utf8_string.c │ │ │ │ ├── oid │ │ │ │ │ ├── pk_get_oid.c │ │ │ │ │ ├── pk_oid_cmp.c │ │ │ │ │ └── pk_oid_str.c │ │ │ │ ├── pkcs8 │ │ │ │ │ └── pkcs8_decode_flexi.c │ │ │ │ └── x509 │ │ │ │ │ ├── x509_decode_public_key_from_certificate.c │ │ │ │ │ ├── x509_decode_subject_public_key_info.c │ │ │ │ │ └── x509_encode_subject_public_key_info.c │ │ │ ├── dh │ │ │ │ ├── dh.c │ │ │ │ ├── dh_check_pubkey.c │ │ │ │ ├── dh_export.c │ │ │ │ ├── dh_export_key.c │ │ │ │ ├── dh_free.c │ │ │ │ ├── dh_generate_key.c │ │ │ │ ├── dh_import.c │ │ │ │ ├── dh_set.c │ │ │ │ ├── dh_set_pg_dhparam.c │ │ │ │ └── dh_shared_secret.c │ │ │ ├── dsa │ │ │ │ ├── dsa_decrypt_key.c │ │ │ │ ├── dsa_encrypt_key.c │ │ │ │ ├── dsa_export.c │ │ │ │ ├── dsa_free.c │ │ │ │ ├── dsa_generate_key.c │ │ │ │ ├── dsa_generate_pqg.c │ │ │ │ ├── dsa_import.c │ │ │ │ ├── dsa_make_key.c │ │ │ │ ├── dsa_set.c │ │ │ │ ├── dsa_set_pqg_dsaparam.c │ │ │ │ ├── dsa_shared_secret.c │ │ │ │ ├── dsa_sign_hash.c │ │ │ │ ├── dsa_verify_hash.c │ │ │ │ └── dsa_verify_key.c │ │ │ ├── ec25519 │ │ │ │ ├── ec25519_crypto_ctx.c │ │ │ │ ├── ec25519_export.c │ │ │ │ ├── ec25519_import_pkcs8.c │ │ │ │ └── tweetnacl.c │ │ │ ├── ecc │ │ │ │ ├── ecc.c │ │ │ │ ├── ecc_ansi_x963_export.c │ │ │ │ ├── ecc_ansi_x963_import.c │ │ │ │ ├── ecc_decrypt_key.c │ │ │ │ ├── ecc_encrypt_key.c │ │ │ │ ├── ecc_export.c │ │ │ │ ├── ecc_export_openssl.c │ │ │ │ ├── ecc_find_curve.c │ │ │ │ ├── ecc_free.c │ │ │ │ ├── ecc_get_key.c │ │ │ │ ├── ecc_get_oid_str.c │ │ │ │ ├── ecc_get_size.c │ │ │ │ ├── ecc_import.c │ │ │ │ ├── ecc_import_openssl.c │ │ │ │ ├── ecc_import_pkcs8.c │ │ │ │ ├── ecc_import_x509.c │ │ │ │ ├── ecc_make_key.c │ │ │ │ ├── ecc_recover_key.c │ │ │ │ ├── ecc_set_curve.c │ │ │ │ ├── ecc_set_curve_internal.c │ │ │ │ ├── ecc_set_key.c │ │ │ │ ├── ecc_shared_secret.c │ │ │ │ ├── ecc_sign_hash.c │ │ │ │ ├── ecc_sizes.c │ │ │ │ ├── ecc_ssh_ecdsa_encode_name.c │ │ │ │ ├── ecc_verify_hash.c │ │ │ │ ├── ltc_ecc_export_point.c │ │ │ │ ├── ltc_ecc_import_point.c │ │ │ │ ├── ltc_ecc_is_point.c │ │ │ │ ├── ltc_ecc_is_point_at_infinity.c │ │ │ │ ├── ltc_ecc_map.c │ │ │ │ ├── ltc_ecc_mul2add.c │ │ │ │ ├── ltc_ecc_mulmod.c │ │ │ │ ├── ltc_ecc_mulmod_timing.c │ │ │ │ ├── ltc_ecc_points.c │ │ │ │ ├── ltc_ecc_projective_add_point.c │ │ │ │ ├── ltc_ecc_projective_dbl_point.c │ │ │ │ └── ltc_ecc_verify_key.c │ │ │ ├── ed25519 │ │ │ │ ├── ed25519_export.c │ │ │ │ ├── ed25519_import.c │ │ │ │ ├── ed25519_import_pkcs8.c │ │ │ │ ├── ed25519_import_raw.c │ │ │ │ ├── ed25519_import_x509.c │ │ │ │ ├── ed25519_make_key.c │ │ │ │ ├── ed25519_sign.c │ │ │ │ └── ed25519_verify.c │ │ │ ├── pkcs1 │ │ │ │ ├── pkcs_1_i2osp.c │ │ │ │ ├── pkcs_1_mgf1.c │ │ │ │ ├── pkcs_1_oaep_decode.c │ │ │ │ ├── pkcs_1_oaep_encode.c │ │ │ │ ├── pkcs_1_os2ip.c │ │ │ │ ├── pkcs_1_pss_decode.c │ │ │ │ ├── pkcs_1_pss_encode.c │ │ │ │ ├── pkcs_1_v1_5_decode.c │ │ │ │ └── pkcs_1_v1_5_encode.c │ │ │ ├── rsa │ │ │ │ ├── rsa_decrypt_key.c │ │ │ │ ├── rsa_encrypt_key.c │ │ │ │ ├── rsa_export.c │ │ │ │ ├── rsa_exptmod.c │ │ │ │ ├── rsa_get_size.c │ │ │ │ ├── rsa_import.c │ │ │ │ ├── rsa_import_pkcs8.c │ │ │ │ ├── rsa_import_x509.c │ │ │ │ ├── rsa_key.c │ │ │ │ ├── rsa_make_key.c │ │ │ │ ├── rsa_set.c │ │ │ │ ├── rsa_sign_hash.c │ │ │ │ ├── rsa_sign_saltlen_get.c │ │ │ │ └── rsa_verify_hash.c │ │ │ └── x25519 │ │ │ │ ├── x25519_export.c │ │ │ │ ├── x25519_import.c │ │ │ │ ├── x25519_import_pkcs8.c │ │ │ │ ├── x25519_import_raw.c │ │ │ │ ├── x25519_import_x509.c │ │ │ │ ├── x25519_make_key.c │ │ │ │ └── x25519_shared_secret.c │ │ ├── prngs │ │ │ ├── chacha20.c │ │ │ ├── fortuna.c │ │ │ ├── rc4.c │ │ │ ├── rng_get_bytes.c │ │ │ ├── rng_make_prng.c │ │ │ ├── sober128.c │ │ │ ├── sprng.c │ │ │ └── yarrow.c │ │ └── stream │ │ │ ├── chacha │ │ │ ├── chacha_crypt.c │ │ │ ├── chacha_done.c │ │ │ ├── chacha_ivctr32.c │ │ │ ├── chacha_ivctr64.c │ │ │ ├── chacha_keystream.c │ │ │ ├── chacha_memory.c │ │ │ ├── chacha_setup.c │ │ │ └── chacha_test.c │ │ │ ├── rabbit │ │ │ ├── rabbit.c │ │ │ └── rabbit_memory.c │ │ │ ├── rc4 │ │ │ ├── rc4_stream.c │ │ │ ├── rc4_stream_memory.c │ │ │ └── rc4_test.c │ │ │ ├── salsa20 │ │ │ ├── salsa20_crypt.c │ │ │ ├── salsa20_done.c │ │ │ ├── salsa20_ivctr64.c │ │ │ ├── salsa20_keystream.c │ │ │ ├── salsa20_memory.c │ │ │ ├── salsa20_setup.c │ │ │ ├── salsa20_test.c │ │ │ ├── xsalsa20_memory.c │ │ │ ├── xsalsa20_setup.c │ │ │ └── xsalsa20_test.c │ │ │ ├── sober128 │ │ │ ├── sober128_stream.c │ │ │ ├── sober128_stream_memory.c │ │ │ ├── sober128_test.c │ │ │ └── sober128tab.c │ │ │ └── sosemanuk │ │ │ ├── sosemanuk.c │ │ │ ├── sosemanuk_memory.c │ │ │ └── sosemanuk_test.c │ └── sqlite │ │ ├── grdb.h │ │ ├── sqlite3.c │ │ └── sqlite3.h └── SQLiteDB │ ├── Core │ ├── Backup.swift │ ├── Blob.swift │ ├── Connection+Aggregation.swift │ ├── Connection+Attach.swift │ ├── Connection+Pragmas.swift │ ├── Connection.swift │ ├── Errors.swift │ ├── Result.swift │ ├── SQLiteFeature.swift │ ├── SQLiteVersion.swift │ ├── Statement.swift │ ├── URIQueryParameter.swift │ └── Value.swift │ ├── Extensions │ ├── Cipher.swift │ ├── FTS4.swift │ ├── FTS5.swift │ └── RTree.swift │ ├── Foundation.swift │ ├── Helpers.swift │ ├── PrivacyInfo.xcprivacy │ ├── SQLite.h │ ├── Schema │ ├── Connection+Schema.swift │ ├── SchemaChanger.swift │ ├── SchemaDefinitions.swift │ └── SchemaReader.swift │ └── Typed │ ├── AggregateFunctions.swift │ ├── Coding.swift │ ├── Collation.swift │ ├── CoreFunctions.swift │ ├── CustomFunctions.swift │ ├── DateAndTimeFunctions.swift │ ├── Expression.swift │ ├── Operators.swift │ ├── Query+with.swift │ ├── Query.swift │ ├── Schema.swift │ ├── Setter.swift │ └── WindowFunctions.swift ├── Tests ├── .swiftlint.yml ├── SPM │ ├── .gitignore │ ├── Package.swift │ ├── Sources │ │ └── test │ │ │ └── main.swift │ └── db.sqlite └── SQLiteDBTests │ ├── Core │ ├── BlobTests.swift │ ├── Connection+AttachTests.swift │ ├── Connection+PragmaTests.swift │ ├── ConnectionTests.swift │ ├── CoreFunctionsTests.swift │ ├── ResultTests.swift │ ├── StatementTests.swift │ └── ValueTests.swift │ ├── Extensions │ ├── CipherTests.swift │ ├── FTS4Tests.swift │ ├── FTS5Tests.swift │ ├── FTSIntegrationTests.swift │ └── RTreeTests.swift │ ├── Fixtures.swift │ ├── FoundationTests.swift │ ├── Resources │ ├── encrypted-3.x.sqlite │ ├── encrypted-4.x.sqlite │ └── test.sqlite │ ├── Schema │ ├── Connection+SchemaTests.swift │ ├── SchemaChangerTests.swift │ ├── SchemaDefinitionsTests.swift │ ├── SchemaReaderTests.swift │ └── SchemaTests.swift │ ├── TestHelpers.swift │ └── Typed │ ├── AggregateFunctionsTests.swift │ ├── CustomAggregationTests.swift │ ├── CustomFunctionsTests.swift │ ├── DateAndTimeFunctionTests.swift │ ├── ExpressionTests.swift │ ├── OperatorsTests.swift │ ├── QueryIntegrationTests.swift │ ├── QueryTests.swift │ ├── RowTests.swift │ ├── SelectTests.swift │ ├── SetterTests.swift │ └── WindowFunctionsTests.swift └── scripts └── build_sqlcipher.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/.spi.yml -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithSQLCipher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithSQLCipher/.gitignore -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithSQLCipher/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithSQLCipher/Package.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithSQLCipher/Sources/MiddlewareClientWithSQLCipher/MiddlewareClientWithSQLCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithSQLCipher/Sources/MiddlewareClientWithSQLCipher/MiddlewareClientWithSQLCipher.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithSQLCipher/Tests/MiddlewareClientWithSQLCipherTests/MiddlewareClientWithSQLCipherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithSQLCipher/Tests/MiddlewareClientWithSQLCipherTests/MiddlewareClientWithSQLCipherTests.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/.gitignore -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Package.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Sources/MiddlewareClientWithoutSQLCipher/MiddlewareClientWithoutSQLCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Sources/MiddlewareClientWithoutSQLCipher/MiddlewareClientWithoutSQLCipher.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Tests/MiddlewareClientWithoutSQLCipherTests/MiddlewareClientWithoutSQLCipherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/MiddlewareClientWithoutSQLCipher/Tests/MiddlewareClientWithoutSQLCipherTests/MiddlewareClientWithoutSQLCipherTests.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/README.md -------------------------------------------------------------------------------- /Examples/PackageTraits/SQLMiddleware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/SQLMiddleware/.gitignore -------------------------------------------------------------------------------- /Examples/PackageTraits/SQLMiddleware/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/SQLMiddleware/Package.swift -------------------------------------------------------------------------------- /Examples/PackageTraits/SQLMiddleware/Sources/SQLMiddleware/SQLMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Examples/PackageTraits/SQLMiddleware/Sources/SQLMiddleware/SQLMiddleware.swift -------------------------------------------------------------------------------- /LICENSE-SQLCIPHER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/LICENSE-SQLCIPHER.txt -------------------------------------------------------------------------------- /LICENSE-SQLITE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/LICENSE-SQLITE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SQLCipher/crypto_libtomcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/crypto_libtomcrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/aes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/aes/aes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/aes/aes_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/aes/aes_desc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/aes/aes_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/aes/aes_tab.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/aes/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/aes/aesni.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/anubis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/anubis.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/blowfish.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/camellia.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/cast5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/cast5.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/des.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/idea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/idea.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/kasumi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/kasumi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/khazad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/khazad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/kseed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/kseed.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/multi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/multi2.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/noekeon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/noekeon.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/rc2.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/rc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/rc5.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/rc6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/rc6.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/safer/safer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/safer/safer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/safer/safer_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/safer/safer_tab.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/safer/saferp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/safer/saferp.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/serpent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/serpent.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/skipjack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/skipjack.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/tea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/tea.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/twofish/twofish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/twofish/twofish.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/twofish/twofish_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/twofish/twofish_tab.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/ciphers/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/ciphers/xtea.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_add_aad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_add_aad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_add_nonce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_add_nonce.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_reset.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ccm/ccm_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_add_aad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_add_aad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/chachapoly/chacha20poly1305_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_addheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_addheader.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_decrypt_verify_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_decrypt_verify_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_encrypt_authenticate_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_encrypt_authenticate_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/eax/eax_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/eax/eax_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_add_aad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_add_aad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_add_iv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_add_iv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_gf_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_gf_mult.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_mult_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_mult_h.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_reset.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/gcm/gcm_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_decrypt_verify_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_decrypt_verify_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_done_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_done_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_done_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_done_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_encrypt_authenticate_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_encrypt_authenticate_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_ntz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_ntz.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_shift_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_shift_xor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/ocb_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb/s_ocb_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb/s_ocb_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_add_aad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_add_aad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt_last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt_last.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt_verify_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_decrypt_verify_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt_authenticate_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt_authenticate_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt_last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_encrypt_last.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_int_ntz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_int_ntz.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_int_xor_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_int_xor_blocks.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/encauth/ocb3/ocb3_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/blake2b.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/blake2s.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/chc/chc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/chc/chc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/helper/hash_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/helper/hash_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/helper/hash_filehandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/helper/hash_filehandle.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/helper/hash_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/helper/hash_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/helper/hash_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/helper/hash_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/md2.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/md4.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/md5.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/rmd128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/rmd128.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/rmd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/rmd160.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/rmd256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/rmd256.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/rmd320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/rmd320.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha1.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha224.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha256.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha384.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512_224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512_224.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha2/sha512_256.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha3.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/sha3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/sha3_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/tiger.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/whirl/whirl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/whirl/whirl.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/hashes/whirl/whirltab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/hashes/whirl/whirltab.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_argchk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_argchk.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_cfg.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_cipher.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_custom.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_hash.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_mac.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_macros.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_math.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_misc.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_pk.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_pkcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_pkcs.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_private.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/headers/tomcrypt_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/headers/tomcrypt_prng.h -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2bmac_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/blake2/blake2smac_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/f9/f9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/f9/f9_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/hmac/hmac_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/omac/omac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/omac/omac_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pelican/pelican.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pelican/pelican.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pelican/pelican_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pelican/pelican_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pelican/pelican_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pelican/pelican_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_ntz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_ntz.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_shift_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_shift_xor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/pmac/pmac_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/poly1305/poly1305_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_file.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_memory_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_memory_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/mac/xcbc/xcbc_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/fp/ltc_ecc_fp_mulmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/fp/ltc_ecc_fp_mulmod.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/gmp_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/gmp_desc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/ltm_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/ltm_desc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/radix_to_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/radix_to_bin.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/rand_bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/rand_bn.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/rand_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/rand_prime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/math/tfm_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/math/tfm_desc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/adler32.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base16/base16_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base16/base16_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base16/base16_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base16/base16_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base32/base32_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base32/base32_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base32/base32_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base32/base32_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base64/base64_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base64/base64_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/base64/base64_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/base64/base64_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/bcrypt/bcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/bcrypt/bcrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/burn_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/burn_stack.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/compare_testvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/compare_testvector.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/copy_or_zeromem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/copy_or_zeromem.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crc32.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_argchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_argchk.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_cipher_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_cipher_descriptor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_cipher_is_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_cipher_is_valid.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_constants.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher_any.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_cipher_id.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_any.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_id.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_hash_oid.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_find_prng.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_fsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_fsa.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_hash_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_hash_descriptor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_hash_is_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_hash_is_valid.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_inits.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_ltc_mp_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_ltc_mp_descriptor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_descriptor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_is_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_is_valid.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_rng_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_prng_rng_descriptor.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_ciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_ciphers.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_hashes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_hashes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_prngs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_all_prngs.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_cipher.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_register_prng.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_sizes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_cipher.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/crypt/crypt_unregister_prng.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/error_to_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/error_to_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/hkdf/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/hkdf/hkdf.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/hkdf/hkdf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/hkdf/hkdf_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/mem_neq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/mem_neq.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/padding/padding_depad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/padding/padding_depad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/padding/padding_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/padding/padding_pad.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pbes/pbes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pbes/pbes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pbes/pbes1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pbes/pbes1.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pbes/pbes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pbes/pbes2.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pkcs12/pkcs12_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pkcs12/pkcs12_kdf.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pkcs12/pkcs12_utf8_to_utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pkcs12/pkcs12_utf8_to_utf16.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_1.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_2.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/pkcs5/pkcs_5_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/ssh/ssh_decode_sequence_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/ssh/ssh_decode_sequence_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/ssh/ssh_encode_sequence_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/ssh/ssh_encode_sequence_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/misc/zeromem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/misc/zeromem.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cbc/cbc_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/cfb/cfb_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ctr/ctr_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ecb/ecb_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/f8/f8_test_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/f8/f8_test_mode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_process.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/lrw/lrw_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_getiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_getiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_setiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_setiv.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/ofb/ofb_start.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_decrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_encrypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_init.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_mult_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_mult_x.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/modes/xts/xts_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/modes/xts/xts_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_decode_bit_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_decode_bit_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_decode_raw_bit_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_decode_raw_bit_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_encode_bit_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_encode_bit_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_encode_raw_bit_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_encode_raw_bit_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_length_bit_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/bit/der_length_bit_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_decode_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_decode_boolean.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_encode_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_encode_boolean.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_length_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/boolean/der_length_boolean.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/choice/der_decode_choice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/choice/der_decode_choice.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_decode_custom_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_decode_custom_type.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_encode_custom_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_encode_custom_type.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_length_custom_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/custom_type/der_length_custom_type.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_asn1_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_asn1_maps.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_decode_asn1_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_decode_asn1_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_decode_asn1_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_decode_asn1_length.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_encode_asn1_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_encode_asn1_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_encode_asn1_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_encode_asn1_length.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_length_asn1_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_length_asn1_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_length_asn1_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/general/der_length_asn1_length.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_decode_generalizedtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_decode_generalizedtime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_encode_generalizedtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_encode_generalizedtime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_length_generalizedtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/generalizedtime/der_length_generalizedtime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_decode_ia5_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_decode_ia5_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_encode_ia5_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_encode_ia5_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_length_ia5_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/ia5/der_length_ia5_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_decode_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_decode_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_encode_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_encode_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_length_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/integer/der_length_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_decode_object_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_decode_object_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_encode_object_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_encode_object_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_length_object_identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/object_identifier/der_length_object_identifier.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_decode_octet_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_decode_octet_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_encode_octet_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_encode_octet_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_length_octet_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/octet/der_length_octet_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_decode_printable_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_decode_printable_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_encode_printable_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_encode_printable_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_length_printable_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/printable_string/der_length_printable_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_ex.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_flexi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_flexi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_ex.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_multi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_length_sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_length_sequence.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_sequence_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_sequence_free.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_sequence_shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/sequence/der_sequence_shrink.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/set/der_encode_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/set/der_encode_set.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/set/der_encode_setof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/set/der_encode_setof.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_decode_short_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_decode_short_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_encode_short_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_encode_short_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_length_short_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/short_integer/der_length_short_integer.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/teletex_string/der_decode_teletex_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/teletex_string/der_decode_teletex_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/teletex_string/der_length_teletex_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/teletex_string/der_length_teletex_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_decode_utctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_decode_utctime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_encode_utctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_encode_utctime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_length_utctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utctime/der_length_utctime.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_decode_utf8_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_decode_utf8_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_encode_utf8_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_encode_utf8_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_length_utf8_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/der/utf8/der_length_utf8_string.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_get_oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_get_oid.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_oid_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_oid_cmp.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_oid_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/oid/pk_oid_str.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/pkcs8/pkcs8_decode_flexi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/pkcs8/pkcs8_decode_flexi.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_decode_public_key_from_certificate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_decode_public_key_from_certificate.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_decode_subject_public_key_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_decode_subject_public_key_info.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_encode_subject_public_key_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/asn1/x509/x509_encode_subject_public_key_info.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_check_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_check_pubkey.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_export_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_export_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_free.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_generate_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_generate_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_set.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_set_pg_dhparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_set_pg_dhparam.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dh/dh_shared_secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dh/dh_shared_secret.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_decrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_decrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_encrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_encrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_free.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_generate_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_generate_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_generate_pqg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_generate_pqg.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_make_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_make_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_set.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_set_pqg_dsaparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_set_pqg_dsaparam.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_shared_secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_shared_secret.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_sign_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_sign_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_verify_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_verify_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_verify_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/dsa/dsa_verify_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_crypto_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_crypto_ctx.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_import_pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ec25519/ec25519_import_pkcs8.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ec25519/tweetnacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ec25519/tweetnacl.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ansi_x963_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ansi_x963_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ansi_x963_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ansi_x963_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_decrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_decrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_encrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_encrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_export_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_export_openssl.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_find_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_find_curve.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_free.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_oid_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_oid_str.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_get_size.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_openssl.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_pkcs8.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_import_x509.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_make_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_make_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_recover_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_recover_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_curve.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_curve_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_curve_internal.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_set_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_shared_secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_shared_secret.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_sign_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_sign_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_sizes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ssh_ecdsa_encode_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_ssh_ecdsa_encode_name.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_verify_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ecc_verify_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_export_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_export_point.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_import_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_import_point.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_is_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_is_point.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_is_point_at_infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_is_point_at_infinity.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_map.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mul2add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mul2add.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mulmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mulmod.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mulmod_timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_mulmod_timing.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_points.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_projective_add_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_projective_add_point.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_projective_dbl_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_projective_dbl_point.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_verify_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ecc/ltc_ecc_verify_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_pkcs8.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_raw.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_import_x509.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_make_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_make_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_sign.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/ed25519/ed25519_verify.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_i2osp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_i2osp.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_mgf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_mgf1.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_oaep_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_oaep_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_oaep_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_oaep_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_os2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_os2ip.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_pss_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_pss_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_pss_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_pss_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_v1_5_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_v1_5_decode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_v1_5_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/pkcs1/pkcs_1_v1_5_encode.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_decrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_decrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_encrypt_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_encrypt_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_exptmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_exptmod.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_get_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_get_size.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import_pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import_pkcs8.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_import_x509.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_make_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_make_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_set.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_sign_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_sign_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_sign_saltlen_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_sign_saltlen_get.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_verify_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/rsa/rsa_verify_hash.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_export.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_pkcs8.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_raw.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_import_x509.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_make_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_make_key.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_shared_secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/pk/x25519/x25519_shared_secret.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/chacha20.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/fortuna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/fortuna.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/rc4.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/rng_get_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/rng_get_bytes.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/rng_make_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/rng_make_prng.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/sober128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/sober128.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/sprng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/sprng.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/prngs/yarrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/prngs/yarrow.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_crypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_ivctr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_ivctr32.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_ivctr64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_ivctr64.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_keystream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_keystream.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_setup.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/chacha/chacha_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/rabbit/rabbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/rabbit/rabbit.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/rabbit/rabbit_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/rabbit/rabbit_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_stream.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_stream_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_stream_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/rc4/rc4_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_crypt.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_done.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_ivctr64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_ivctr64.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_keystream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_keystream.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_setup.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/salsa20_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_setup.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/salsa20/xsalsa20_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_stream.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_stream_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_stream_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sober128/sober128_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sober128/sober128tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sober128/sober128tab.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk_memory.c -------------------------------------------------------------------------------- /Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/libtomcrypt/stream/sosemanuk/sosemanuk_test.c -------------------------------------------------------------------------------- /Sources/SQLCipher/sqlite/grdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/sqlite/grdb.h -------------------------------------------------------------------------------- /Sources/SQLCipher/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/sqlite/sqlite3.c -------------------------------------------------------------------------------- /Sources/SQLCipher/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLCipher/sqlite/sqlite3.h -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Backup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Backup.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Blob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Blob.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Connection+Aggregation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Connection+Aggregation.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Connection+Attach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Connection+Attach.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Connection+Pragmas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Connection+Pragmas.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Connection.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Errors.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Result.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/SQLiteFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/SQLiteFeature.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/SQLiteVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/SQLiteVersion.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Statement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Statement.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/URIQueryParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/URIQueryParameter.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Core/Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Core/Value.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Extensions/Cipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Extensions/Cipher.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Extensions/FTS4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Extensions/FTS4.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Extensions/FTS5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Extensions/FTS5.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Extensions/RTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Extensions/RTree.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Foundation.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Helpers.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/SQLiteDB/SQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/SQLite.h -------------------------------------------------------------------------------- /Sources/SQLiteDB/Schema/Connection+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Schema/Connection+Schema.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Schema/SchemaChanger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Schema/SchemaChanger.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Schema/SchemaDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Schema/SchemaDefinitions.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Schema/SchemaReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Schema/SchemaReader.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/AggregateFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/AggregateFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Coding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Coding.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Collation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Collation.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/CoreFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/CoreFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/CustomFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/CustomFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/DateAndTimeFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/DateAndTimeFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Expression.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Operators.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Query+with.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Query+with.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Query.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Schema.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/Setter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/Setter.swift -------------------------------------------------------------------------------- /Sources/SQLiteDB/Typed/WindowFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Sources/SQLiteDB/Typed/WindowFunctions.swift -------------------------------------------------------------------------------- /Tests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/.swiftlint.yml -------------------------------------------------------------------------------- /Tests/SPM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SPM/.gitignore -------------------------------------------------------------------------------- /Tests/SPM/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SPM/Package.swift -------------------------------------------------------------------------------- /Tests/SPM/Sources/test/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SPM/Sources/test/main.swift -------------------------------------------------------------------------------- /Tests/SPM/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SPM/db.sqlite -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/BlobTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/BlobTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/Connection+AttachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/Connection+AttachTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/Connection+PragmaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/Connection+PragmaTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/ConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/ConnectionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/CoreFunctionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/CoreFunctionsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/ResultTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/StatementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/StatementTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Core/ValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Core/ValueTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Extensions/CipherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Extensions/CipherTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Extensions/FTS4Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Extensions/FTS4Tests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Extensions/FTS5Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Extensions/FTS5Tests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Extensions/FTSIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Extensions/FTSIntegrationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Extensions/RTreeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Extensions/RTreeTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Fixtures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Fixtures.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/FoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/FoundationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Resources/encrypted-3.x.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Resources/encrypted-3.x.sqlite -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Resources/encrypted-4.x.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Resources/encrypted-4.x.sqlite -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Resources/test.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Resources/test.sqlite -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Schema/Connection+SchemaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Schema/Connection+SchemaTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Schema/SchemaChangerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Schema/SchemaChangerTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Schema/SchemaDefinitionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Schema/SchemaDefinitionsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Schema/SchemaReaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Schema/SchemaReaderTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Schema/SchemaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Schema/SchemaTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/AggregateFunctionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/AggregateFunctionsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/CustomAggregationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/CustomAggregationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/CustomFunctionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/CustomFunctionsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/DateAndTimeFunctionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/DateAndTimeFunctionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/ExpressionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/ExpressionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/OperatorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/OperatorsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/QueryIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/QueryIntegrationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/QueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/QueryTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/RowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/RowTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/SelectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/SelectTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/SetterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/SetterTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDBTests/Typed/WindowFunctionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/Tests/SQLiteDBTests/Typed/WindowFunctionsTests.swift -------------------------------------------------------------------------------- /scripts/build_sqlcipher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiptools/swift-sqlcipher/HEAD/scripts/build_sqlcipher.sh --------------------------------------------------------------------------------