├── .gitignore ├── Documentation ├── Cloud Storage paper.pages ├── KAPS state.drawing ├── KDF.graffle ├── Key Expansion.drawing ├── Messaging Ecosystem Overview.pages │ ├── Data │ │ ├── Pasted Graphic-31.png │ │ ├── droppedImage-35.pdf │ │ ├── droppedImage-small-36.png │ │ ├── pasted-image-37.tif │ │ ├── pasted-image-40.tif │ │ ├── pasted-image-46.pdf │ │ ├── pasted-image-48.pdf │ │ ├── pasted-image-small-38.png │ │ ├── pasted-image-small-47.png │ │ ├── pasted-image-small-49.png │ │ ├── silentcircle-engineering_sideshort-16.png │ │ └── silentcircle-engineering_sideshort-small-17.png │ ├── Index.zip │ ├── Metadata │ │ ├── BuildVersionHistory.plist │ │ ├── DocumentIdentifier │ │ └── Properties.plist │ ├── preview-micro.jpg │ ├── preview-web.jpg │ └── preview.jpg ├── SCIMP 2.0 Sildes.key ├── SCIMP API.pages ├── SCIMP paper.pages ├── SCIMP proto1.drawing ├── SCIMP slides.key ├── SCloud slides.key ├── Silent Circle messaging overview.rtfd │ ├── 1__#$!@%!#__pastedGraphic.pdf │ ├── Pasted Graphic.tiff │ ├── TXT.rtf │ └── pastedGraphic.pdf ├── Siren Spec.pages ├── TextFilesToPublish.txt ├── checking user passphrase.graffle ├── convergent Decryption.graffle ├── convergent Encryption.graffle ├── gcrypt to tommath ├── libTomCryptDoc.pdf ├── message Key Derivation.drawing ├── scimplib flow.graffle ├── scloudlib decrypt flow.graffle └── scloudlib encrypt flow.graffle ├── LICENSE ├── Libraries ├── libidn │ ├── idn-test │ │ └── tst_stringprep.c │ ├── idn.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── src │ │ ├── config.h │ │ ├── gunicomp.h │ │ ├── gunidecomp.h │ │ ├── idn-int.h │ │ ├── nfkc.c │ │ ├── profiles.c │ │ ├── rfc3454.c │ │ ├── stringprep.c │ │ ├── stringprep.h │ │ ├── strverscmp.c │ │ ├── utils.c │ │ ├── utils.h │ │ └── version.c ├── openssl │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── build-libssl.sh │ ├── include │ │ ├── LICENSE │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── lib │ │ ├── libcrypto.a │ │ └── libssl.a └── sccrypto │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── sccrypto.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── StaticSCCrypto-ios.xcscheme │ ├── src │ ├── main │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── Scripts │ │ │ └── fetch_git_commit_hash.sh │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ ├── com │ │ │ │ └── silentcircle │ │ │ │ │ ├── scimp │ │ │ │ │ ├── NativeKeyGenerator │ │ │ │ │ │ ├── generateKey.c │ │ │ │ │ │ └── getPublicKey.c │ │ │ │ │ └── NativePacket │ │ │ │ │ │ ├── connect.c │ │ │ │ │ │ ├── onCreate.c │ │ │ │ │ │ ├── onDestroy.c │ │ │ │ │ │ ├── receivePacket.c │ │ │ │ │ │ ├── receivePacketPKI.c │ │ │ │ │ │ ├── resetStorageKey.c │ │ │ │ │ │ ├── scimp_jni.c │ │ │ │ │ │ ├── sendPacket.c │ │ │ │ │ │ └── sendPacketPKI.c │ │ │ │ │ └── scloud │ │ │ │ │ └── NativePacket │ │ │ │ │ ├── decrypt.c │ │ │ │ │ ├── encrypt.c │ │ │ │ │ ├── onCreate.c │ │ │ │ │ └── onDestroy.c │ │ │ ├── jni.c │ │ │ ├── jni_callbacks.h │ │ │ ├── jni_macros.h │ │ │ ├── message_queue.h │ │ │ ├── scimp_keys.c │ │ │ ├── scimp_keys.h │ │ │ ├── scimp_packet.c │ │ │ ├── scimp_packet.h │ │ │ ├── scimp_tests.c │ │ │ ├── scimp_tests.h │ │ │ ├── scloud_decrypt_packet.c │ │ │ ├── scloud_decrypt_packet.h │ │ │ ├── scloud_decrypt_parameters.c │ │ │ ├── scloud_decrypt_parameters.h │ │ │ ├── scloud_encrypt_packet.c │ │ │ ├── scloud_encrypt_packet.h │ │ │ ├── scloud_encrypt_parameters.c │ │ │ ├── scloud_encrypt_parameters.h │ │ │ ├── test │ │ │ │ ├── jni_tests.c │ │ │ │ └── main.c │ │ │ ├── uint8_t_array.c │ │ │ └── uint8_t_array.h │ │ ├── sccrypto │ │ │ ├── SCccm.c │ │ │ ├── SCcrypto.c │ │ │ ├── SCcrypto.exp │ │ │ ├── SCcrypto.h │ │ │ ├── SCcryptoOps.h │ │ │ ├── SCgcm.c │ │ │ ├── SCkeys.c │ │ │ ├── SCkeys.h │ │ │ ├── SCpubTypes.h │ │ │ ├── SCutilities.c │ │ │ ├── SCutilities.h │ │ │ ├── SirenHash.c │ │ │ ├── apple │ │ │ │ ├── SCcryptoInfo.plist │ │ │ │ ├── sccrypto_xcode_Tests.m │ │ │ │ └── xcodeTestInfo.plist │ │ │ └── timegm.c │ │ ├── scimp │ │ │ ├── SCimp.c │ │ │ ├── SCimp.h │ │ │ ├── SCimpPriv.h │ │ │ ├── SCimpProtocol.c │ │ │ ├── SCimpProtocolFmtJSON.c │ │ │ ├── SCimpProtocolFmtXML.c │ │ │ ├── ntohl.c │ │ │ ├── stpcpy.c │ │ │ └── strnstr.c │ │ ├── scloud │ │ │ ├── SCloud.c │ │ │ ├── SCloud.h │ │ │ ├── SCloudJSON.c │ │ │ └── SCloudPriv.h │ │ ├── tomcrypt │ │ │ ├── ciphers │ │ │ │ ├── aes │ │ │ │ │ ├── aes.c │ │ │ │ │ └── aes_tab.h │ │ │ │ ├── anubis.c │ │ │ │ ├── blowfish.c │ │ │ │ ├── camellia.c │ │ │ │ ├── cast5.c │ │ │ │ ├── des.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 │ │ │ │ ├── skipjack.c │ │ │ │ ├── twofish │ │ │ │ │ ├── twofish.c │ │ │ │ │ └── twofish_tab.c │ │ │ │ └── xtea.c │ │ │ ├── encauth │ │ │ │ ├── ccm │ │ │ │ │ ├── ccm_memory.c │ │ │ │ │ ├── ccm_memory_ex.c │ │ │ │ │ └── ccm_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 │ │ │ ├── hashes │ │ │ │ ├── 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.h │ │ │ │ │ ├── sha256.c │ │ │ │ │ ├── sha384.h │ │ │ │ │ ├── sha512.c │ │ │ │ │ └── sha512_256.h │ │ │ │ ├── skein │ │ │ │ │ ├── brg_endian.h │ │ │ │ │ ├── brg_types.h │ │ │ │ │ ├── skein.c │ │ │ │ │ ├── skein.h │ │ │ │ │ ├── skeinApi.c │ │ │ │ │ ├── skeinApi.h │ │ │ │ │ ├── skein_block.c │ │ │ │ │ ├── skein_iv.h │ │ │ │ │ ├── skein_port.h │ │ │ │ │ ├── skein_tc.c │ │ │ │ │ ├── threefish1024Block.c │ │ │ │ │ ├── threefish256Block.c │ │ │ │ │ ├── threefish512Block.c │ │ │ │ │ ├── threefishApi.c │ │ │ │ │ ├── threefishApi.h │ │ │ │ │ └── threefish_tc.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_prng.h │ │ │ ├── mac │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ │ ├── rand_prime.c │ │ │ │ └── tfm_desc.c │ │ │ ├── misc │ │ │ │ ├── base64 │ │ │ │ │ ├── base64_decode.c │ │ │ │ │ └── base64_encode.c │ │ │ │ ├── burn_stack.c │ │ │ │ ├── crypt │ │ │ │ │ ├── crypt.c │ │ │ │ │ ├── crypt_argchk.c │ │ │ │ │ ├── crypt_cipher_descriptor.c │ │ │ │ │ ├── crypt_cipher_is_valid.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_ltc_mp_descriptor.c │ │ │ │ │ ├── crypt_prng_descriptor.c │ │ │ │ │ ├── crypt_prng_is_valid.c │ │ │ │ │ ├── crypt_register_cipher.c │ │ │ │ │ ├── crypt_register_hash.c │ │ │ │ │ ├── crypt_register_prng.c │ │ │ │ │ ├── crypt_unregister_cipher.c │ │ │ │ │ ├── crypt_unregister_hash.c │ │ │ │ │ └── crypt_unregister_prng.c │ │ │ │ ├── error_to_string.c │ │ │ │ ├── pk_get_oid.c │ │ │ │ ├── pkcs5 │ │ │ │ │ ├── pkcs_5_1.c │ │ │ │ │ └── pkcs_5_2.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 │ │ │ │ │ │ ├── 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_decode_subject_public_key_info.c │ │ │ │ │ │ ├── der_encode_sequence_ex.c │ │ │ │ │ │ ├── der_encode_sequence_multi.c │ │ │ │ │ │ ├── der_encode_subject_public_key_info.c │ │ │ │ │ │ ├── der_length_sequence.c │ │ │ │ │ │ └── der_sequence_free.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 │ │ │ │ │ │ ├── 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 │ │ │ │ ├── dh │ │ │ │ │ ├── dh.c │ │ │ │ │ └── dh_sys.c │ │ │ │ ├── dsa │ │ │ │ │ ├── dsa_decrypt_key.c │ │ │ │ │ ├── dsa_encrypt_key.c │ │ │ │ │ ├── dsa_export.c │ │ │ │ │ ├── dsa_free.c │ │ │ │ │ ├── dsa_import.c │ │ │ │ │ ├── dsa_make_key.c │ │ │ │ │ ├── dsa_shared_secret.c │ │ │ │ │ ├── dsa_sign_hash.c │ │ │ │ │ ├── dsa_verify_hash.c │ │ │ │ │ └── dsa_verify_key.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_free.c │ │ │ │ │ ├── ecc_get_size.c │ │ │ │ │ ├── ecc_import.c │ │ │ │ │ ├── ecc_make_key.c │ │ │ │ │ ├── ecc_shared_secret.c │ │ │ │ │ ├── ecc_sign_hash.c │ │ │ │ │ ├── ecc_sizes.c │ │ │ │ │ ├── ecc_test.c │ │ │ │ │ ├── ecc_verify_hash.c │ │ │ │ │ ├── ltc_ecc_is_valid_idx.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 │ │ │ │ ├── ecc_bl │ │ │ │ │ ├── ecc_bl.c │ │ │ │ │ ├── ecc_bl_ansi_x963_import.c │ │ │ │ │ ├── ecc_bl_decrypt_key.c │ │ │ │ │ ├── ecc_bl_encrypt_key.c │ │ │ │ │ ├── ecc_bl_import.c │ │ │ │ │ ├── ecc_bl_make_key.c │ │ │ │ │ ├── ecc_bl_sign_hash.c │ │ │ │ │ └── ecc_bl_verify_hash.c │ │ │ │ ├── katja │ │ │ │ │ ├── katja_decrypt_key.c │ │ │ │ │ ├── katja_encrypt_key.c │ │ │ │ │ ├── katja_export.c │ │ │ │ │ ├── katja_exptmod.c │ │ │ │ │ ├── katja_free.c │ │ │ │ │ ├── katja_import.c │ │ │ │ │ └── katja_make_key.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_free.c │ │ │ │ │ ├── rsa_import.c │ │ │ │ │ ├── rsa_make_key.c │ │ │ │ │ ├── rsa_sign_hash.c │ │ │ │ │ └── rsa_verify_hash.c │ │ │ └── prngs │ │ │ │ ├── fortuna.c │ │ │ │ ├── rc4.c │ │ │ │ ├── rng_get_bytes.c │ │ │ │ ├── rng_make_prng.c │ │ │ │ ├── sober128.c │ │ │ │ ├── sober128tab.c │ │ │ │ ├── sprng.c │ │ │ │ └── yarrow.c │ │ ├── tommath │ │ │ ├── bn_error.c │ │ │ ├── bn_fast_mp_invmod.c │ │ │ ├── bn_fast_mp_montgomery_reduce.c │ │ │ ├── bn_fast_s_mp_mul_digs.c │ │ │ ├── bn_fast_s_mp_mul_high_digs.c │ │ │ ├── bn_fast_s_mp_sqr.c │ │ │ ├── bn_mp_2expt.c │ │ │ ├── bn_mp_abs.c │ │ │ ├── bn_mp_add.c │ │ │ ├── bn_mp_add_d.c │ │ │ ├── bn_mp_addmod.c │ │ │ ├── bn_mp_and.c │ │ │ ├── bn_mp_clamp.c │ │ │ ├── bn_mp_clear.c │ │ │ ├── bn_mp_clear_multi.c │ │ │ ├── bn_mp_cmp.c │ │ │ ├── bn_mp_cmp_d.c │ │ │ ├── bn_mp_cmp_mag.c │ │ │ ├── bn_mp_cnt_lsb.c │ │ │ ├── bn_mp_copy.c │ │ │ ├── bn_mp_count_bits.c │ │ │ ├── bn_mp_div.c │ │ │ ├── bn_mp_div_2.c │ │ │ ├── bn_mp_div_2d.c │ │ │ ├── bn_mp_div_3.c │ │ │ ├── bn_mp_div_d.c │ │ │ ├── bn_mp_dr_is_modulus.c │ │ │ ├── bn_mp_dr_reduce.c │ │ │ ├── bn_mp_dr_setup.c │ │ │ ├── bn_mp_exch.c │ │ │ ├── bn_mp_expt_d.c │ │ │ ├── bn_mp_exptmod.c │ │ │ ├── bn_mp_exptmod_fast.c │ │ │ ├── bn_mp_exteuclid.c │ │ │ ├── bn_mp_fread.c │ │ │ ├── bn_mp_fwrite.c │ │ │ ├── bn_mp_gcd.c │ │ │ ├── bn_mp_get_int.c │ │ │ ├── bn_mp_grow.c │ │ │ ├── bn_mp_init.c │ │ │ ├── bn_mp_init_copy.c │ │ │ ├── bn_mp_init_multi.c │ │ │ ├── bn_mp_init_set.c │ │ │ ├── bn_mp_init_set_int.c │ │ │ ├── bn_mp_init_size.c │ │ │ ├── bn_mp_invmod.c │ │ │ ├── bn_mp_invmod_slow.c │ │ │ ├── bn_mp_is_square.c │ │ │ ├── bn_mp_jacobi.c │ │ │ ├── bn_mp_karatsuba_mul.c │ │ │ ├── bn_mp_karatsuba_sqr.c │ │ │ ├── bn_mp_lcm.c │ │ │ ├── bn_mp_lshd.c │ │ │ ├── bn_mp_mod.c │ │ │ ├── bn_mp_mod_2d.c │ │ │ ├── bn_mp_mod_d.c │ │ │ ├── bn_mp_montgomery_calc_normalization.c │ │ │ ├── bn_mp_montgomery_reduce.c │ │ │ ├── bn_mp_montgomery_setup.c │ │ │ ├── bn_mp_mul.c │ │ │ ├── bn_mp_mul_2.c │ │ │ ├── bn_mp_mul_2d.c │ │ │ ├── bn_mp_mul_d.c │ │ │ ├── bn_mp_mulmod.c │ │ │ ├── bn_mp_n_root.c │ │ │ ├── bn_mp_neg.c │ │ │ ├── bn_mp_or.c │ │ │ ├── bn_mp_prime_fermat.c │ │ │ ├── bn_mp_prime_is_divisible.c │ │ │ ├── bn_mp_prime_is_prime.c │ │ │ ├── bn_mp_prime_miller_rabin.c │ │ │ ├── bn_mp_prime_next_prime.c │ │ │ ├── bn_mp_prime_rabin_miller_trials.c │ │ │ ├── bn_mp_prime_random_ex.c │ │ │ ├── bn_mp_radix_size.c │ │ │ ├── bn_mp_radix_smap.c │ │ │ ├── bn_mp_rand.c │ │ │ ├── bn_mp_read_radix.c │ │ │ ├── bn_mp_read_signed_bin.c │ │ │ ├── bn_mp_read_unsigned_bin.c │ │ │ ├── bn_mp_reduce.c │ │ │ ├── bn_mp_reduce_2k.c │ │ │ ├── bn_mp_reduce_2k_l.c │ │ │ ├── bn_mp_reduce_2k_setup.c │ │ │ ├── bn_mp_reduce_2k_setup_l.c │ │ │ ├── bn_mp_reduce_is_2k.c │ │ │ ├── bn_mp_reduce_is_2k_l.c │ │ │ ├── bn_mp_reduce_setup.c │ │ │ ├── bn_mp_rshd.c │ │ │ ├── bn_mp_set.c │ │ │ ├── bn_mp_set_int.c │ │ │ ├── bn_mp_shrink.c │ │ │ ├── bn_mp_signed_bin_size.c │ │ │ ├── bn_mp_sqr.c │ │ │ ├── bn_mp_sqrmod.c │ │ │ ├── bn_mp_sqrt.c │ │ │ ├── bn_mp_sub.c │ │ │ ├── bn_mp_sub_d.c │ │ │ ├── bn_mp_submod.c │ │ │ ├── bn_mp_to_signed_bin.c │ │ │ ├── bn_mp_to_signed_bin_n.c │ │ │ ├── bn_mp_to_unsigned_bin.c │ │ │ ├── bn_mp_to_unsigned_bin_n.c │ │ │ ├── bn_mp_toom_mul.c │ │ │ ├── bn_mp_toom_sqr.c │ │ │ ├── bn_mp_toradix.c │ │ │ ├── bn_mp_toradix_n.c │ │ │ ├── bn_mp_unsigned_bin_size.c │ │ │ ├── bn_mp_xor.c │ │ │ ├── bn_mp_zero.c │ │ │ ├── bn_prime_tab.c │ │ │ ├── bn_reverse.c │ │ │ ├── bn_s_mp_add.c │ │ │ ├── bn_s_mp_exptmod.c │ │ │ ├── bn_s_mp_mul_digs.c │ │ │ ├── bn_s_mp_mul_high_digs.c │ │ │ ├── bn_s_mp_sqr.c │ │ │ ├── bn_s_mp_sub.c │ │ │ ├── bncore.c │ │ │ ├── tommath.h │ │ │ ├── tommath_class.h │ │ │ └── tommath_superclass.h │ │ └── yajl │ │ │ ├── yajl.c │ │ │ ├── yajl_alloc.c │ │ │ ├── yajl_alloc.h │ │ │ ├── yajl_buf.c │ │ │ ├── yajl_buf.h │ │ │ ├── yajl_bytestack.h │ │ │ ├── yajl_common.h │ │ │ ├── yajl_encode.c │ │ │ ├── yajl_encode.h │ │ │ ├── yajl_gen.c │ │ │ ├── yajl_gen.h │ │ │ ├── yajl_lex.c │ │ │ ├── yajl_lex.h │ │ │ ├── yajl_parse.h │ │ │ ├── yajl_parser.c │ │ │ ├── yajl_parser.h │ │ │ ├── yajl_tree.c │ │ │ ├── yajl_tree.h │ │ │ ├── yajl_version.c │ │ │ └── yajl_version.h │ └── optest │ │ ├── CCMtest.c │ │ ├── CipherTest.c │ │ ├── ECCtest.c │ │ ├── HASHtest.c │ │ ├── HMACtest.c │ │ ├── IOS │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── OptestViewController.h │ │ ├── OptestViewController.m │ │ ├── OptestViewController.xib │ │ └── main.m │ │ ├── P2Ktest.c │ │ ├── SCIMPtest.c │ │ ├── SCKeysTest.c │ │ ├── SCloudTest.c │ │ ├── SirenHashTest.c │ │ ├── crypto_optest.c │ │ ├── crypto_optest.h │ │ └── optestutils.c │ └── staticsccrypto-ios │ └── staticsccrypto_ios.h ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── CocoaLumberjack │ ├── LICENSE.txt │ ├── Lumberjack │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogCapture.m │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDAssert.h │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDContextFilterLogFormatter.m │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.m │ │ │ ├── DDMultiFormatter.h │ │ │ ├── DDMultiFormatter.m │ │ │ └── README.txt │ └── README.md ├── DAKeyboardControl │ ├── DAKeyboardControl │ │ ├── DAKeyboardControl.h │ │ └── DAKeyboardControl.m │ ├── LICENSE.md │ └── README.md ├── ECPhoneNumberFormatter │ ├── ECPhoneNumberFormatter │ │ ├── ECPhoneNumberFormatter.h │ │ └── ECPhoneNumberFormatter.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── CocoaLumberjack │ │ │ ├── DDASLLogCapture.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDAssert.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDTTYLogger.h │ │ ├── DAKeyboardControl │ │ │ └── DAKeyboardControl.h │ │ ├── ECPhoneNumberFormatter │ │ │ └── ECPhoneNumberFormatter.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── MSCMoreOptionTableViewCell │ │ │ ├── MSCMoreOptionTableViewCell.h │ │ │ └── MSCMoreOptionTableViewCellDelegate.h │ │ ├── NSStringEmojize │ │ │ └── NSString+Emojize.h │ │ ├── OHAlertView │ │ │ └── OHAlertView.h │ │ ├── Reachability │ │ │ └── Reachability.h │ │ ├── SQLCipher │ │ │ └── sqlite3.h │ │ ├── SWRevealViewController │ │ │ └── SWRevealViewController.h │ │ ├── TITokenField │ │ │ └── TITokenField.h │ │ ├── YRDropdownView │ │ │ └── YRDropdownView.h │ │ ├── YapDatabase │ │ │ ├── NSDictionary+YapDatabase.h │ │ │ ├── YDBCKAttachRequest.h │ │ │ ├── YDBCKChangeQueue.h │ │ │ ├── YDBCKChangeRecord.h │ │ │ ├── YDBCKChangeSet.h │ │ │ ├── YDBCKMappingTableInfo.h │ │ │ ├── YDBCKMergeInfo.h │ │ │ ├── YDBCKRecord.h │ │ │ ├── YDBCKRecordInfo.h │ │ │ ├── YDBCKRecordTableInfo.h │ │ │ ├── YapCache.h │ │ │ ├── YapCollectionKey.h │ │ │ ├── YapDatabase.h │ │ │ ├── YapDatabaseCloudKit.h │ │ │ ├── YapDatabaseCloudKitConnection.h │ │ │ ├── YapDatabaseCloudKitOptions.h │ │ │ ├── YapDatabaseCloudKitPrivate.h │ │ │ ├── YapDatabaseCloudKitTransaction.h │ │ │ ├── YapDatabaseCloudKitTypes.h │ │ │ ├── YapDatabaseConnection.h │ │ │ ├── YapDatabaseConnectionDefaults.h │ │ │ ├── YapDatabaseConnectionState.h │ │ │ ├── YapDatabaseExtension.h │ │ │ ├── YapDatabaseExtensionConnection.h │ │ │ ├── YapDatabaseExtensionPrivate.h │ │ │ ├── YapDatabaseExtensionTransaction.h │ │ │ ├── YapDatabaseFilteredView.h │ │ │ ├── YapDatabaseFilteredViewConnection.h │ │ │ ├── YapDatabaseFilteredViewPrivate.h │ │ │ ├── YapDatabaseFilteredViewTransaction.h │ │ │ ├── YapDatabaseFilteredViewTypes.h │ │ │ ├── YapDatabaseFullTextSearch.h │ │ │ ├── YapDatabaseFullTextSearchConnection.h │ │ │ ├── YapDatabaseFullTextSearchHandler.h │ │ │ ├── YapDatabaseFullTextSearchPrivate.h │ │ │ ├── YapDatabaseFullTextSearchSnippetOptions.h │ │ │ ├── YapDatabaseFullTextSearchTransaction.h │ │ │ ├── YapDatabaseHooks.h │ │ │ ├── YapDatabaseHooksConnection.h │ │ │ ├── YapDatabaseHooksPrivate.h │ │ │ ├── YapDatabaseHooksTransaction.h │ │ │ ├── YapDatabaseLogging.h │ │ │ ├── YapDatabaseManager.h │ │ │ ├── YapDatabaseOptions.h │ │ │ ├── YapDatabasePrivate.h │ │ │ ├── YapDatabaseQuery.h │ │ │ ├── YapDatabaseRelationship.h │ │ │ ├── YapDatabaseRelationshipConnection.h │ │ │ ├── YapDatabaseRelationshipEdge.h │ │ │ ├── YapDatabaseRelationshipEdgePrivate.h │ │ │ ├── YapDatabaseRelationshipNode.h │ │ │ ├── YapDatabaseRelationshipOptions.h │ │ │ ├── YapDatabaseRelationshipPrivate.h │ │ │ ├── YapDatabaseRelationshipTransaction.h │ │ │ ├── YapDatabaseSearchQueue.h │ │ │ ├── YapDatabaseSearchQueuePrivate.h │ │ │ ├── YapDatabaseSearchResultsView.h │ │ │ ├── YapDatabaseSearchResultsViewConnection.h │ │ │ ├── YapDatabaseSearchResultsViewOptions.h │ │ │ ├── YapDatabaseSearchResultsViewPrivate.h │ │ │ ├── YapDatabaseSearchResultsViewTransaction.h │ │ │ ├── YapDatabaseSecondaryIndex.h │ │ │ ├── YapDatabaseSecondaryIndexConnection.h │ │ │ ├── YapDatabaseSecondaryIndexHandler.h │ │ │ ├── YapDatabaseSecondaryIndexOptions.h │ │ │ ├── YapDatabaseSecondaryIndexPrivate.h │ │ │ ├── YapDatabaseSecondaryIndexSetup.h │ │ │ ├── YapDatabaseSecondaryIndexTransaction.h │ │ │ ├── YapDatabaseStatement.h │ │ │ ├── YapDatabaseString.h │ │ │ ├── YapDatabaseTransaction.h │ │ │ ├── YapDatabaseView.h │ │ │ ├── YapDatabaseViewChange.h │ │ │ ├── YapDatabaseViewChangePrivate.h │ │ │ ├── YapDatabaseViewConnection.h │ │ │ ├── YapDatabaseViewMappings.h │ │ │ ├── YapDatabaseViewMappingsPrivate.h │ │ │ ├── YapDatabaseViewOptions.h │ │ │ ├── YapDatabaseViewPage.h │ │ │ ├── YapDatabaseViewPageMetadata.h │ │ │ ├── YapDatabaseViewPrivate.h │ │ │ ├── YapDatabaseViewRangeOptions.h │ │ │ ├── YapDatabaseViewRangeOptionsPrivate.h │ │ │ ├── YapDatabaseViewState.h │ │ │ ├── YapDatabaseViewTransaction.h │ │ │ ├── YapDatabaseViewTypes.h │ │ │ ├── YapDebugDictionary.h │ │ │ ├── YapMemoryTable.h │ │ │ ├── YapMurmurHash.h │ │ │ ├── YapNull.h │ │ │ ├── YapRowidSet.h │ │ │ ├── YapSet.h │ │ │ ├── YapTouch.h │ │ │ └── YapWhitelistBlacklist.h │ │ ├── ZXCVBN │ │ │ ├── BBDateMatcher.h │ │ │ ├── BBDictionaryMatcher.h │ │ │ ├── BBDigitsMatcher.h │ │ │ ├── BBEntropyCenter.h │ │ │ ├── BBL33tMatcher.h │ │ │ ├── BBPasswordStrength.h │ │ │ ├── BBPattern.h │ │ │ ├── BBPatternCenter.h │ │ │ ├── BBPatternMatcher.h │ │ │ ├── BBRegularExpressionMatchHelper.h │ │ │ ├── BBRepeatMatcher.h │ │ │ ├── BBSequenceMatcher.h │ │ │ ├── BBSpatialMatcher.h │ │ │ ├── BBYearMatcher.h │ │ │ └── ZXCVBN.h │ │ ├── libqrencode │ │ │ ├── bitstream.h │ │ │ ├── config.h │ │ │ ├── mask.h │ │ │ ├── mmask.h │ │ │ ├── mqrspec.h │ │ │ ├── qrencode.h │ │ │ ├── qrinput.h │ │ │ ├── qrspec.h │ │ │ ├── rscode.h │ │ │ └── split.h │ │ └── zipzap │ │ │ ├── ZZAESDecryptInputStream.h │ │ │ ├── ZZArchive.h │ │ │ ├── ZZArchiveEntry.h │ │ │ ├── ZZArchiveEntryWriter.h │ │ │ ├── ZZChannel.h │ │ │ ├── ZZChannelOutput.h │ │ │ ├── ZZConstants.h │ │ │ ├── ZZDataChannel.h │ │ │ ├── ZZDataChannelOutput.h │ │ │ ├── ZZDataProvider.h │ │ │ ├── ZZDeflateOutputStream.h │ │ │ ├── ZZError.h │ │ │ ├── ZZFileChannel.h │ │ │ ├── ZZFileChannelOutput.h │ │ │ ├── ZZHeaders.h │ │ │ ├── ZZInflateInputStream.h │ │ │ ├── ZZNewArchiveEntry.h │ │ │ ├── ZZNewArchiveEntryWriter.h │ │ │ ├── ZZOldArchiveEntry.h │ │ │ ├── ZZOldArchiveEntryWriter.h │ │ │ ├── ZZScopeGuard.h │ │ │ ├── ZZStandardCryptoEngine.h │ │ │ ├── ZZStandardDecryptInputStream.h │ │ │ ├── ZZStoreOutputStream.h │ │ │ └── zipzap.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── CocoaLumberjack │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogger.h │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAssert.h │ │ ├── DDContextFilterLogFormatter.h │ │ ├── DDDispatchQueueLogFormatter.h │ │ ├── DDFileLogger.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDMultiFormatter.h │ │ └── DDTTYLogger.h │ │ ├── DAKeyboardControl │ │ └── DAKeyboardControl.h │ │ ├── ECPhoneNumberFormatter │ │ └── ECPhoneNumberFormatter.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── MSCMoreOptionTableViewCell │ │ ├── MSCMoreOptionTableViewCell.h │ │ └── MSCMoreOptionTableViewCellDelegate.h │ │ ├── NSStringEmojize │ │ └── NSString+Emojize.h │ │ ├── OHAlertView │ │ └── OHAlertView.h │ │ ├── Reachability │ │ └── Reachability.h │ │ ├── SQLCipher │ │ └── sqlite3.h │ │ ├── SWRevealViewController │ │ └── SWRevealViewController.h │ │ ├── TITokenField │ │ └── TITokenField.h │ │ ├── YRDropdownView │ │ └── YRDropdownView.h │ │ ├── YapDatabase │ │ ├── YDBCKChangeSet.h │ │ ├── YDBCKMergeInfo.h │ │ ├── YDBCKRecord.h │ │ ├── YDBCKRecordInfo.h │ │ ├── YapCache.h │ │ ├── YapCollectionKey.h │ │ ├── YapDatabase.h │ │ ├── YapDatabaseCloudKit.h │ │ ├── YapDatabaseCloudKitConnection.h │ │ ├── YapDatabaseCloudKitOptions.h │ │ ├── YapDatabaseCloudKitTransaction.h │ │ ├── YapDatabaseCloudKitTypes.h │ │ ├── YapDatabaseConnection.h │ │ ├── YapDatabaseExtension.h │ │ ├── YapDatabaseExtensionConnection.h │ │ ├── YapDatabaseExtensionTransaction.h │ │ ├── YapDatabaseFilteredView.h │ │ ├── YapDatabaseFilteredViewConnection.h │ │ ├── YapDatabaseFilteredViewTransaction.h │ │ ├── YapDatabaseFilteredViewTypes.h │ │ ├── YapDatabaseFullTextSearch.h │ │ ├── YapDatabaseFullTextSearchConnection.h │ │ ├── YapDatabaseFullTextSearchHandler.h │ │ ├── YapDatabaseFullTextSearchSnippetOptions.h │ │ ├── YapDatabaseFullTextSearchTransaction.h │ │ ├── YapDatabaseHooks.h │ │ ├── YapDatabaseHooksConnection.h │ │ ├── YapDatabaseHooksTransaction.h │ │ ├── YapDatabaseOptions.h │ │ ├── YapDatabaseQuery.h │ │ ├── YapDatabaseRelationship.h │ │ ├── YapDatabaseRelationshipConnection.h │ │ ├── YapDatabaseRelationshipEdge.h │ │ ├── YapDatabaseRelationshipNode.h │ │ ├── YapDatabaseRelationshipOptions.h │ │ ├── YapDatabaseRelationshipTransaction.h │ │ ├── YapDatabaseSearchQueue.h │ │ ├── YapDatabaseSearchQueuePrivate.h │ │ ├── YapDatabaseSearchResultsView.h │ │ ├── YapDatabaseSearchResultsViewConnection.h │ │ ├── YapDatabaseSearchResultsViewOptions.h │ │ ├── YapDatabaseSearchResultsViewTransaction.h │ │ ├── YapDatabaseSecondaryIndex.h │ │ ├── YapDatabaseSecondaryIndexConnection.h │ │ ├── YapDatabaseSecondaryIndexHandler.h │ │ ├── YapDatabaseSecondaryIndexOptions.h │ │ ├── YapDatabaseSecondaryIndexSetup.h │ │ ├── YapDatabaseSecondaryIndexTransaction.h │ │ ├── YapDatabaseTransaction.h │ │ ├── YapDatabaseView.h │ │ ├── YapDatabaseViewChange.h │ │ ├── YapDatabaseViewConnection.h │ │ ├── YapDatabaseViewMappings.h │ │ ├── YapDatabaseViewOptions.h │ │ ├── YapDatabaseViewRangeOptions.h │ │ ├── YapDatabaseViewTransaction.h │ │ ├── YapDatabaseViewTypes.h │ │ ├── YapMurmurHash.h │ │ ├── YapSet.h │ │ └── YapWhitelistBlacklist.h │ │ ├── ZXCVBN │ │ ├── BBDateMatcher.h │ │ ├── BBDictionaryMatcher.h │ │ ├── BBDigitsMatcher.h │ │ ├── BBEntropyCenter.h │ │ ├── BBL33tMatcher.h │ │ ├── BBPasswordStrength.h │ │ ├── BBPattern.h │ │ ├── BBPatternCenter.h │ │ ├── BBPatternMatcher.h │ │ ├── BBRegularExpressionMatchHelper.h │ │ ├── BBRepeatMatcher.h │ │ ├── BBSequenceMatcher.h │ │ ├── BBSpatialMatcher.h │ │ ├── BBYearMatcher.h │ │ └── ZXCVBN.h │ │ ├── libqrencode │ │ ├── bitstream.h │ │ ├── config.h │ │ ├── mask.h │ │ ├── mmask.h │ │ ├── mqrspec.h │ │ ├── qrencode.h │ │ ├── qrinput.h │ │ ├── qrspec.h │ │ ├── rscode.h │ │ └── split.h │ │ └── zipzap │ │ ├── ZZAESDecryptInputStream.h │ │ ├── ZZArchive.h │ │ ├── ZZArchiveEntry.h │ │ ├── ZZArchiveEntryWriter.h │ │ ├── ZZChannel.h │ │ ├── ZZChannelOutput.h │ │ ├── ZZConstants.h │ │ ├── ZZDataChannel.h │ │ ├── ZZDataChannelOutput.h │ │ ├── ZZDataProvider.h │ │ ├── ZZDeflateOutputStream.h │ │ ├── ZZError.h │ │ ├── ZZFileChannel.h │ │ ├── ZZFileChannelOutput.h │ │ ├── ZZHeaders.h │ │ ├── ZZInflateInputStream.h │ │ ├── ZZNewArchiveEntry.h │ │ ├── ZZNewArchiveEntryWriter.h │ │ ├── ZZOldArchiveEntry.h │ │ ├── ZZOldArchiveEntryWriter.h │ │ ├── ZZScopeGuard.h │ │ ├── ZZStandardCryptoEngine.h │ │ ├── ZZStandardDecryptInputStream.h │ │ ├── ZZStoreOutputStream.h │ │ └── zipzap.h ├── Local Podspecs │ ├── DAKeyboardControl.podspec.json │ └── YapDatabase.podspec.json ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── MSCMoreOptionTableViewCell │ ├── LICENSE │ ├── MSCMoreOptionTableViewCell │ │ ├── MSCMoreOptionTableViewCell.h │ │ ├── MSCMoreOptionTableViewCell.m │ │ └── MSCMoreOptionTableViewCellDelegate.h │ └── README.md ├── Manifest.lock ├── NSStringEmojize │ ├── LICENSE.md │ ├── NSStringEmojize │ │ ├── NSString+Emojize.h │ │ └── NSString+Emojize.m │ └── README.md ├── OHAlertView │ ├── LICENSE │ ├── OHAlertView │ │ ├── OHAlertView.h │ │ └── OHAlertView.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Reachability │ ├── LICENCE.txt │ ├── README.md │ ├── Reachability.h │ └── Reachability.m ├── SQLCipher │ ├── LICENSE │ ├── README │ ├── README.md │ ├── sqlite3.c │ └── sqlite3.h ├── SWRevealViewController │ ├── LICENSE.txt │ ├── README.md │ └── SWRevealViewController │ │ ├── SWRevealViewController.h │ │ └── SWRevealViewController.m ├── TITokenField │ ├── README.markdown │ ├── TITokenField.h │ └── TITokenField.m ├── Target Support Files │ ├── Pods-ST2-AFNetworking │ │ ├── Pods-ST2-AFNetworking-Private.xcconfig │ │ ├── Pods-ST2-AFNetworking-dummy.m │ │ ├── Pods-ST2-AFNetworking-prefix.pch │ │ └── Pods-ST2-AFNetworking.xcconfig │ ├── Pods-ST2-CocoaLumberjack │ │ ├── Pods-ST2-CocoaLumberjack-Private.xcconfig │ │ ├── Pods-ST2-CocoaLumberjack-dummy.m │ │ ├── Pods-ST2-CocoaLumberjack-prefix.pch │ │ └── Pods-ST2-CocoaLumberjack.xcconfig │ ├── Pods-ST2-DAKeyboardControl │ │ ├── Pods-ST2-DAKeyboardControl-Private.xcconfig │ │ ├── Pods-ST2-DAKeyboardControl-dummy.m │ │ ├── Pods-ST2-DAKeyboardControl-prefix.pch │ │ └── Pods-ST2-DAKeyboardControl.xcconfig │ ├── Pods-ST2-ECPhoneNumberFormatter │ │ ├── Pods-ST2-ECPhoneNumberFormatter-Private.xcconfig │ │ ├── Pods-ST2-ECPhoneNumberFormatter-dummy.m │ │ ├── Pods-ST2-ECPhoneNumberFormatter-prefix.pch │ │ └── Pods-ST2-ECPhoneNumberFormatter.xcconfig │ ├── Pods-ST2-MBProgressHUD │ │ ├── Pods-ST2-MBProgressHUD-Private.xcconfig │ │ ├── Pods-ST2-MBProgressHUD-dummy.m │ │ ├── Pods-ST2-MBProgressHUD-prefix.pch │ │ └── Pods-ST2-MBProgressHUD.xcconfig │ ├── Pods-ST2-MSCMoreOptionTableViewCell │ │ ├── Pods-ST2-MSCMoreOptionTableViewCell-Private.xcconfig │ │ ├── Pods-ST2-MSCMoreOptionTableViewCell-dummy.m │ │ ├── Pods-ST2-MSCMoreOptionTableViewCell-prefix.pch │ │ └── Pods-ST2-MSCMoreOptionTableViewCell.xcconfig │ ├── Pods-ST2-NSStringEmojize │ │ ├── Pods-ST2-NSStringEmojize-Private.xcconfig │ │ ├── Pods-ST2-NSStringEmojize-dummy.m │ │ ├── Pods-ST2-NSStringEmojize-prefix.pch │ │ └── Pods-ST2-NSStringEmojize.xcconfig │ ├── Pods-ST2-OHAlertView │ │ ├── Pods-ST2-OHAlertView-Private.xcconfig │ │ ├── Pods-ST2-OHAlertView-dummy.m │ │ ├── Pods-ST2-OHAlertView-prefix.pch │ │ └── Pods-ST2-OHAlertView.xcconfig │ ├── Pods-ST2-Reachability │ │ ├── Pods-ST2-Reachability-Private.xcconfig │ │ ├── Pods-ST2-Reachability-dummy.m │ │ ├── Pods-ST2-Reachability-prefix.pch │ │ └── Pods-ST2-Reachability.xcconfig │ ├── Pods-ST2-SQLCipher │ │ ├── Pods-ST2-SQLCipher-Private.xcconfig │ │ ├── Pods-ST2-SQLCipher-dummy.m │ │ ├── Pods-ST2-SQLCipher-prefix.pch │ │ └── Pods-ST2-SQLCipher.xcconfig │ ├── Pods-ST2-SWRevealViewController │ │ ├── Pods-ST2-SWRevealViewController-Private.xcconfig │ │ ├── Pods-ST2-SWRevealViewController-dummy.m │ │ ├── Pods-ST2-SWRevealViewController-prefix.pch │ │ └── Pods-ST2-SWRevealViewController.xcconfig │ ├── Pods-ST2-TITokenField │ │ ├── Pods-ST2-TITokenField-Private.xcconfig │ │ ├── Pods-ST2-TITokenField-dummy.m │ │ ├── Pods-ST2-TITokenField-prefix.pch │ │ └── Pods-ST2-TITokenField.xcconfig │ ├── Pods-ST2-YRDropdownView │ │ ├── Pods-ST2-YRDropdownView-Private.xcconfig │ │ ├── Pods-ST2-YRDropdownView-dummy.m │ │ ├── Pods-ST2-YRDropdownView-prefix.pch │ │ └── Pods-ST2-YRDropdownView.xcconfig │ ├── Pods-ST2-YapDatabase │ │ ├── Pods-ST2-YapDatabase-Private.xcconfig │ │ ├── Pods-ST2-YapDatabase-dummy.m │ │ ├── Pods-ST2-YapDatabase-prefix.pch │ │ └── Pods-ST2-YapDatabase.xcconfig │ ├── Pods-ST2-ZXCVBN │ │ ├── Pods-ST2-ZXCVBN-Private.xcconfig │ │ ├── Pods-ST2-ZXCVBN-dummy.m │ │ ├── Pods-ST2-ZXCVBN-prefix.pch │ │ └── Pods-ST2-ZXCVBN.xcconfig │ ├── Pods-ST2-libqrencode │ │ ├── Pods-ST2-libqrencode-Private.xcconfig │ │ ├── Pods-ST2-libqrencode-dummy.m │ │ ├── Pods-ST2-libqrencode-prefix.pch │ │ └── Pods-ST2-libqrencode.xcconfig │ ├── Pods-ST2-zipzap │ │ ├── Pods-ST2-zipzap-Private.xcconfig │ │ ├── Pods-ST2-zipzap-dummy.m │ │ ├── Pods-ST2-zipzap-prefix.pch │ │ └── Pods-ST2-zipzap.xcconfig │ └── Pods-ST2 │ │ ├── Pods-ST2-acknowledgements.markdown │ │ ├── Pods-ST2-acknowledgements.plist │ │ ├── Pods-ST2-dummy.m │ │ ├── Pods-ST2-environment.h │ │ ├── Pods-ST2-resources.sh │ │ ├── Pods-ST2.debug.xcconfig │ │ └── Pods-ST2.release.xcconfig ├── YRDropdownView │ ├── LICENSE.md │ ├── README.md │ └── YRDropdownView │ │ ├── YRDropdownView.h │ │ ├── YRDropdownView.m │ │ ├── bg-yellow.png │ │ └── bg-yellow@2x.png ├── YapDatabase │ ├── LICENSE.txt │ ├── README.md │ └── YapDatabase │ │ ├── Extensions │ │ ├── CloudKit │ │ │ ├── Internal │ │ │ │ ├── YDBCKAttachRequest.h │ │ │ │ ├── YDBCKAttachRequest.m │ │ │ │ ├── YDBCKChangeQueue.h │ │ │ │ ├── YDBCKChangeQueue.m │ │ │ │ ├── YDBCKChangeRecord.h │ │ │ │ ├── YDBCKChangeRecord.m │ │ │ │ ├── YDBCKMappingTableInfo.h │ │ │ │ ├── YDBCKMappingTableInfo.m │ │ │ │ ├── YDBCKRecordTableInfo.h │ │ │ │ ├── YDBCKRecordTableInfo.m │ │ │ │ └── YapDatabaseCloudKitPrivate.h │ │ │ ├── Utilities │ │ │ │ ├── YDBCKChangeSet.h │ │ │ │ ├── YDBCKChangeSet.m │ │ │ │ ├── YDBCKMergeInfo.h │ │ │ │ ├── YDBCKMergeInfo.m │ │ │ │ ├── YDBCKRecord.h │ │ │ │ ├── YDBCKRecord.m │ │ │ │ ├── YDBCKRecordInfo.h │ │ │ │ └── YDBCKRecordInfo.m │ │ │ ├── YapDatabaseCloudKit.h │ │ │ ├── YapDatabaseCloudKit.m │ │ │ ├── YapDatabaseCloudKitConnection.h │ │ │ ├── YapDatabaseCloudKitConnection.m │ │ │ ├── YapDatabaseCloudKitOptions.h │ │ │ ├── YapDatabaseCloudKitOptions.m │ │ │ ├── YapDatabaseCloudKitTransaction.h │ │ │ ├── YapDatabaseCloudKitTransaction.m │ │ │ ├── YapDatabaseCloudKitTypes.h │ │ │ └── YapDatabaseCloudKitTypes.m │ │ ├── FilteredViews │ │ │ ├── Internal │ │ │ │ └── YapDatabaseFilteredViewPrivate.h │ │ │ ├── YapDatabaseFilteredView.h │ │ │ ├── YapDatabaseFilteredView.m │ │ │ ├── YapDatabaseFilteredViewConnection.h │ │ │ ├── YapDatabaseFilteredViewConnection.m │ │ │ ├── YapDatabaseFilteredViewTransaction.h │ │ │ ├── YapDatabaseFilteredViewTransaction.m │ │ │ ├── YapDatabaseFilteredViewTypes.h │ │ │ └── YapDatabaseFilteredViewTypes.m │ │ ├── FullTextSearch │ │ │ ├── Internal │ │ │ │ └── YapDatabaseFullTextSearchPrivate.h │ │ │ ├── YapDatabaseFullTextSearch.h │ │ │ ├── YapDatabaseFullTextSearch.m │ │ │ ├── YapDatabaseFullTextSearchConnection.h │ │ │ ├── YapDatabaseFullTextSearchConnection.m │ │ │ ├── YapDatabaseFullTextSearchHandler.h │ │ │ ├── YapDatabaseFullTextSearchHandler.m │ │ │ ├── YapDatabaseFullTextSearchSnippetOptions.h │ │ │ ├── YapDatabaseFullTextSearchSnippetOptions.m │ │ │ ├── YapDatabaseFullTextSearchTransaction.h │ │ │ └── YapDatabaseFullTextSearchTransaction.m │ │ ├── Hooks │ │ │ ├── Internal │ │ │ │ └── YapDatabaseHooksPrivate.h │ │ │ ├── YapDatabaseHooks.h │ │ │ ├── YapDatabaseHooks.m │ │ │ ├── YapDatabaseHooksConnection.h │ │ │ ├── YapDatabaseHooksConnection.m │ │ │ ├── YapDatabaseHooksTransaction.h │ │ │ └── YapDatabaseHooksTransaction.m │ │ ├── Protocol │ │ │ ├── Internal │ │ │ │ └── YapDatabaseExtensionPrivate.h │ │ │ ├── YapDatabaseExtension.h │ │ │ ├── YapDatabaseExtension.m │ │ │ ├── YapDatabaseExtensionConnection.h │ │ │ ├── YapDatabaseExtensionConnection.m │ │ │ ├── YapDatabaseExtensionTransaction.h │ │ │ └── YapDatabaseExtensionTransaction.m │ │ ├── Relationships │ │ │ ├── Internal │ │ │ │ ├── YapDatabaseRelationshipEdgePrivate.h │ │ │ │ └── YapDatabaseRelationshipPrivate.h │ │ │ ├── YapDatabaseRelationship.h │ │ │ ├── YapDatabaseRelationship.m │ │ │ ├── YapDatabaseRelationshipConnection.h │ │ │ ├── YapDatabaseRelationshipConnection.m │ │ │ ├── YapDatabaseRelationshipEdge.h │ │ │ ├── YapDatabaseRelationshipEdge.m │ │ │ ├── YapDatabaseRelationshipNode.h │ │ │ ├── YapDatabaseRelationshipOptions.h │ │ │ ├── YapDatabaseRelationshipOptions.m │ │ │ ├── YapDatabaseRelationshipTransaction.h │ │ │ └── YapDatabaseRelationshipTransaction.m │ │ ├── SearchResults │ │ │ ├── Internal │ │ │ │ └── YapDatabaseSearchResultsViewPrivate.h │ │ │ ├── YapDatabaseSearchQueue.h │ │ │ ├── YapDatabaseSearchQueue.m │ │ │ ├── YapDatabaseSearchQueuePrivate.h │ │ │ ├── YapDatabaseSearchResultsView.h │ │ │ ├── YapDatabaseSearchResultsView.m │ │ │ ├── YapDatabaseSearchResultsViewConnection.h │ │ │ ├── YapDatabaseSearchResultsViewConnection.m │ │ │ ├── YapDatabaseSearchResultsViewOptions.h │ │ │ ├── YapDatabaseSearchResultsViewOptions.m │ │ │ ├── YapDatabaseSearchResultsViewTransaction.h │ │ │ └── YapDatabaseSearchResultsViewTransaction.m │ │ ├── SecondaryIndex │ │ │ ├── Internal │ │ │ │ └── YapDatabaseSecondaryIndexPrivate.h │ │ │ ├── YapDatabaseSecondaryIndex.h │ │ │ ├── YapDatabaseSecondaryIndex.m │ │ │ ├── YapDatabaseSecondaryIndexConnection.h │ │ │ ├── YapDatabaseSecondaryIndexConnection.m │ │ │ ├── YapDatabaseSecondaryIndexHandler.h │ │ │ ├── YapDatabaseSecondaryIndexHandler.m │ │ │ ├── YapDatabaseSecondaryIndexOptions.h │ │ │ ├── YapDatabaseSecondaryIndexOptions.m │ │ │ ├── YapDatabaseSecondaryIndexSetup.h │ │ │ ├── YapDatabaseSecondaryIndexSetup.m │ │ │ ├── YapDatabaseSecondaryIndexTransaction.h │ │ │ └── YapDatabaseSecondaryIndexTransaction.m │ │ └── Views │ │ │ ├── Internal │ │ │ ├── YapDatabaseViewChangePrivate.h │ │ │ ├── YapDatabaseViewMappingsPrivate.h │ │ │ ├── YapDatabaseViewPage.h │ │ │ ├── YapDatabaseViewPage.mm │ │ │ ├── YapDatabaseViewPageMetadata.h │ │ │ ├── YapDatabaseViewPageMetadata.m │ │ │ ├── YapDatabaseViewPrivate.h │ │ │ ├── YapDatabaseViewRangeOptionsPrivate.h │ │ │ ├── YapDatabaseViewState.h │ │ │ └── YapDatabaseViewState.m │ │ │ ├── Utilities │ │ │ ├── YapDatabaseViewChange.h │ │ │ ├── YapDatabaseViewChange.m │ │ │ ├── YapDatabaseViewMappings.h │ │ │ ├── YapDatabaseViewMappings.m │ │ │ ├── YapDatabaseViewRangeOptions.h │ │ │ └── YapDatabaseViewRangeOptions.m │ │ │ ├── YapDatabaseView.h │ │ │ ├── YapDatabaseView.m │ │ │ ├── YapDatabaseViewConnection.h │ │ │ ├── YapDatabaseViewConnection.m │ │ │ ├── YapDatabaseViewOptions.h │ │ │ ├── YapDatabaseViewOptions.m │ │ │ ├── YapDatabaseViewTransaction.h │ │ │ ├── YapDatabaseViewTransaction.m │ │ │ ├── YapDatabaseViewTypes.h │ │ │ └── YapDatabaseViewTypes.m │ │ ├── Internal │ │ ├── NSDictionary+YapDatabase.h │ │ ├── NSDictionary+YapDatabase.m │ │ ├── YapDatabaseConnectionDefaults.h │ │ ├── YapDatabaseConnectionDefaults.m │ │ ├── YapDatabaseConnectionState.h │ │ ├── YapDatabaseConnectionState.m │ │ ├── YapDatabaseLogging.h │ │ ├── YapDatabaseLogging.m │ │ ├── YapDatabaseManager.h │ │ ├── YapDatabaseManager.m │ │ ├── YapDatabasePrivate.h │ │ ├── YapDatabaseStatement.h │ │ ├── YapDatabaseStatement.m │ │ ├── YapDatabaseString.h │ │ ├── YapDebugDictionary.h │ │ ├── YapDebugDictionary.m │ │ ├── YapMemoryTable.h │ │ ├── YapMemoryTable.m │ │ ├── YapNull.h │ │ ├── YapNull.m │ │ ├── YapRowidSet.h │ │ ├── YapRowidSet.mm │ │ ├── YapTouch.h │ │ └── YapTouch.m │ │ ├── Utilities │ │ ├── YapCache.h │ │ ├── YapCache.m │ │ ├── YapCollectionKey.h │ │ ├── YapCollectionKey.m │ │ ├── YapDatabaseQuery.h │ │ ├── YapDatabaseQuery.m │ │ ├── YapMurmurHash.h │ │ ├── YapMurmurHash.m │ │ ├── YapSet.h │ │ ├── YapSet.m │ │ ├── YapWhitelistBlacklist.h │ │ └── YapWhitelistBlacklist.m │ │ ├── YapDatabase.h │ │ ├── YapDatabase.m │ │ ├── YapDatabaseConnection.h │ │ ├── YapDatabaseConnection.m │ │ ├── YapDatabaseOptions.h │ │ ├── YapDatabaseOptions.m │ │ ├── YapDatabaseTransaction.h │ │ └── YapDatabaseTransaction.m ├── ZXCVBN │ ├── LICENSE │ ├── README.md │ ├── ZXCVBN │ │ ├── BBDateMatcher.h │ │ ├── BBDateMatcher.m │ │ ├── BBDictionaryMatcher.h │ │ ├── BBDictionaryMatcher.m │ │ ├── BBDigitsMatcher.h │ │ ├── BBDigitsMatcher.m │ │ ├── BBEntropyCenter.h │ │ ├── BBEntropyCenter.m │ │ ├── BBL33tMatcher.h │ │ ├── BBL33tMatcher.m │ │ ├── BBPasswordStrength.h │ │ ├── BBPasswordStrength.m │ │ ├── BBPattern.h │ │ ├── BBPattern.m │ │ ├── BBPatternCenter.h │ │ ├── BBPatternCenter.m │ │ ├── BBPatternMatcher.h │ │ ├── BBRegularExpressionMatchHelper.h │ │ ├── BBRegularExpressionMatchHelper.m │ │ ├── BBRepeatMatcher.h │ │ ├── BBRepeatMatcher.m │ │ ├── BBSequenceMatcher.h │ │ ├── BBSequenceMatcher.m │ │ ├── BBSpatialMatcher.h │ │ ├── BBSpatialMatcher.m │ │ ├── BBYearMatcher.h │ │ ├── BBYearMatcher.m │ │ ├── ZXCVBN.h │ │ └── ZXCVBN.m │ └── tools │ │ └── generated │ │ ├── adjacency_graphs.json │ │ └── frequency_lists.json ├── libqrencode │ ├── README │ ├── bitstream.c │ ├── bitstream.h │ ├── config.h │ ├── mask.c │ ├── mask.h │ ├── mmask.c │ ├── mmask.h │ ├── mqrspec.c │ ├── mqrspec.h │ ├── qrencode.c │ ├── qrencode.h │ ├── qrinput.c │ ├── qrinput.h │ ├── qrspec.c │ ├── qrspec.h │ ├── rscode.c │ ├── rscode.h │ ├── split.c │ └── split.h └── zipzap │ ├── LICENSE.text │ ├── README.markdown │ └── zipzap │ ├── ZZAESDecryptInputStream.h │ ├── ZZAESDecryptInputStream.mm │ ├── ZZArchive.h │ ├── ZZArchive.mm │ ├── ZZArchiveEntry.h │ ├── ZZArchiveEntry.m │ ├── ZZArchiveEntryWriter.h │ ├── ZZChannel.h │ ├── ZZChannelOutput.h │ ├── ZZConstants.h │ ├── ZZConstants.m │ ├── ZZDataChannel.h │ ├── ZZDataChannel.m │ ├── ZZDataChannelOutput.h │ ├── ZZDataChannelOutput.m │ ├── ZZDataProvider.h │ ├── ZZDeflateOutputStream.h │ ├── ZZDeflateOutputStream.m │ ├── ZZError.h │ ├── ZZError.m │ ├── ZZFileChannel.h │ ├── ZZFileChannel.m │ ├── ZZFileChannelOutput.h │ ├── ZZFileChannelOutput.m │ ├── ZZHeaders.h │ ├── ZZInflateInputStream.h │ ├── ZZInflateInputStream.m │ ├── ZZNewArchiveEntry.h │ ├── ZZNewArchiveEntry.mm │ ├── ZZNewArchiveEntryWriter.h │ ├── ZZNewArchiveEntryWriter.mm │ ├── ZZOldArchiveEntry.h │ ├── ZZOldArchiveEntry.mm │ ├── ZZOldArchiveEntryWriter.h │ ├── ZZOldArchiveEntryWriter.mm │ ├── ZZScopeGuard.h │ ├── ZZStandardCryptoEngine.cpp │ ├── ZZStandardCryptoEngine.h │ ├── ZZStandardDecryptInputStream.h │ ├── ZZStandardDecryptInputStream.mm │ ├── ZZStoreOutputStream.h │ ├── ZZStoreOutputStream.m │ └── zipzap.h ├── README.md ├── ST2.xcworkspace └── contents.xcworkspacedata ├── ST2 ├── %D4%C7%F3app store stuff │ ├── 4-Inch screenshots │ │ ├── 4.3.png │ │ ├── 4.4.png │ │ ├── photo 2.PNG │ │ ├── photo 5 copy.png │ │ ├── photo3.png │ │ └── photo4.png │ ├── appstore text │ └── ipad screenshots │ │ ├── bus numbers.PNG │ │ ├── bus pages and image.PNG │ │ ├── contacts.png │ │ ├── ipad full screen.PNG │ │ ├── ipad-stios.png │ │ ├── not used │ │ ├── bus numbers.PNG │ │ ├── ipad full screen.PNG │ │ ├── ipad-stios-2.png │ │ └── settings.PNG │ │ └── settings.PNG ├── AccountsWebAPIManager │ ├── SCSRVResolver.h │ ├── SCSRVResolver.m │ ├── SCWebAPIManager.h │ ├── SCWebAPIManager.m │ ├── SCWebDownloadManager.h │ ├── SCWebDownloadManager.m │ ├── SCWebSession.h │ └── SCWebSession.m ├── Activation │ ├── Activation.storyboard │ ├── Activation.xcassets │ │ └── ActivationButton.imageset │ │ │ ├── ActivationButton.png │ │ │ ├── ActivationButton@2x.png │ │ │ └── Contents.json │ ├── ActivationButton.h │ ├── ActivationButton.m │ ├── ActivationViewController.h │ ├── ActivationViewController.m │ ├── ActivationViewController.xib │ ├── CreateAccountViewController.h │ ├── CreateAccountViewController.m │ ├── DRDynamicSlideShow.h │ ├── DRDynamicSlideShow.m │ ├── LogInViewController.h │ ├── LogInViewController.m │ ├── OnboardViewController.h │ └── OnboardViewController.m ├── AddAccountsView │ ├── AddAccountViewController.h │ ├── AddAccountViewController.m │ ├── AddAccountViewController.storyboard │ ├── AddAccountsViewController.h │ ├── AddAccountsViewController.m │ ├── Base.lproj │ │ └── AddAccountsViewController.xib │ ├── de.lproj │ │ └── AddAccountsViewController.strings │ ├── en.lproj │ │ └── AddAccountsViewController.strings │ ├── es.lproj │ │ └── AddAccountsViewController.strings │ ├── fr.lproj │ │ └── AddAccountsViewController.strings │ ├── ja.lproj │ │ └── AddAccountsViewController.strings │ ├── nl.lproj │ │ └── AddAccountsViewController.strings │ ├── pt-PT.lproj │ │ └── AddAccountsViewController.strings │ ├── ru.lproj │ │ └── AddAccountsViewController.strings │ └── zh-Hans.lproj │ │ └── AddAccountsViewController.strings ├── App │ ├── ActivationBaseVC.h │ ├── ActivationBaseVC.m │ ├── ActivationVCDelegate.h │ ├── AppConstants.h │ ├── AppConstants.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AppTheme.h │ ├── AppTheme.m │ ├── MZActionSheet.h │ ├── MZActionSheet.m │ ├── SCBrandTableHeaderFooterView.xib │ ├── STMigrationManager.h │ ├── STMigrationManager.m │ ├── SilentTextStrings.h │ ├── ThemeImages │ │ ├── Black-Background-Metal@2x.jpg │ │ ├── Blue.jpg │ │ ├── Notebook Paper 1@2x.jpg │ │ ├── Parchment_Paper.jpg │ │ ├── Wallp-linen.jpg │ │ ├── Wallp-mesh@2x.jpg │ │ ├── blue-gradient.jpeg │ │ ├── bluesky@2x.jpg │ │ ├── clear_night_sky@2x.jpg │ │ ├── green.jpeg │ │ ├── mesh@2x.jpg │ │ ├── pink.jpeg │ │ ├── sand.jpg │ │ ├── sand@2x.jpg │ │ ├── white-construction-paper.jpg │ │ └── wispysky@2x.jpg │ ├── XplatformUI.h │ └── main.m ├── Audio │ ├── AudioPlaybackView.h │ ├── AudioPlaybackView.m │ ├── AudioPlaybackView.xib │ ├── Base.lproj │ │ └── audioPlayerController_iPad.xib │ ├── STAudioView.h │ ├── STAudioView.m │ ├── ar.lproj │ │ └── audioPlayerController_iPad.strings │ ├── audioPlayerController.h │ ├── audioPlayerController.m │ ├── audioPlayerController_iPhone.xib │ ├── bluecenter.png │ ├── bluecenter@2x.png │ ├── controlbar@2x.png │ ├── de.lproj │ │ └── audioPlayerController_iPad.strings │ ├── en.lproj │ │ ├── STAudioView.strings │ │ └── audioPlayerController_iPad.strings │ ├── es.lproj │ │ └── audioPlayerController_iPad.strings │ ├── forward@2x.png │ ├── fr.lproj │ │ └── audioPlayerController_iPad.strings │ ├── it.lproj │ │ └── audioPlayerController_iPad.strings │ ├── ja.lproj │ │ └── audioPlayerController_iPad.strings │ ├── nl.lproj │ │ └── audioPlayerController_iPad.strings │ ├── pause@2x.png │ ├── play-active.png │ ├── play-active@2x.png │ ├── play-inactive.png │ ├── play-inactive@2x.png │ ├── play@2x.png │ ├── playing.png │ ├── playing@2x.png │ ├── pt-PT.lproj │ │ └── audioPlayerController_iPad.strings │ ├── record.png │ ├── record@2x.png │ ├── recording.png │ ├── recording@2x.png │ ├── redcenter.png │ ├── redcenter@2x.png │ ├── reset@2x.png │ ├── rewind@2x.png │ ├── ru.lproj │ │ └── audioPlayerController_iPad.strings │ └── zh-Hans.lproj │ │ └── audioPlayerController_iPad.strings ├── AvatarView │ ├── SCTAvatarView.h │ ├── SCTAvatarView.m │ ├── SCTAvatarView.xib │ └── SCTAvatarViewDelegate.h ├── Camera │ ├── SCCameraViewController.h │ └── SCCameraViewController.m ├── Categories │ ├── ALAsset+SCUtilities.h │ ├── ALAsset+SCUtilities.m │ ├── CLLocation+SCUtilities.h │ ├── CLLocation+SCUtilities.m │ ├── MKMapView+SCUtilities.h │ ├── MKMapView+SCUtilities.m │ ├── NSDate+SCDate.h │ ├── NSDate+SCDate.m │ ├── NSDictionary+SCDictionary.h │ ├── NSDictionary+SCDictionary.m │ ├── NSMutableArray+Shuffling.h │ ├── NSMutableArray+Shuffling.m │ ├── NSNumber+Filesize.h │ ├── NSNumber+Filesize.m │ ├── NSString+SCUtilities.h │ ├── NSString+SCUtilities.m │ ├── NSURL+SCUtilities.h │ ├── NSURL+SCUtilities.m │ ├── STMessage+Utilities.h │ ├── STMessage+Utilities.m │ ├── UIColor+Blender.h │ ├── UIColor+Blender.m │ ├── UIColor-Expanded.h │ ├── UIColor-Expanded.m │ ├── UIColor-HSVAdditions.h │ ├── UIColor-HSVAdditions.m │ ├── UIImage+Crop.h │ ├── UIImage+Crop.m │ ├── UIImage+ImageEffects.h │ ├── UIImage+ImageEffects.m │ ├── UIImage+Thumbnail.h │ ├── UIImage+Thumbnail.m │ ├── UIImage+maskColor.h │ ├── UIImage+maskColor.m │ ├── UIScrollView+Util.h │ ├── UIScrollView+Util.m │ ├── XMPPJID+AddressBook.h │ └── XMPPJID+AddressBook.m ├── ComposeView │ ├── ComposeViewController.h │ ├── ComposeViewController.m │ ├── ComposeViewController~iPad.xib │ └── ComposeViewController~iPhone.xib ├── ContactsView │ ├── ContactsSubViewController.h │ ├── ContactsSubViewController.m │ ├── ContactsSubViewController.xib │ ├── ContactsSubViewControllerCell.h │ ├── ContactsSubViewControllerCell.m │ ├── ContactsSubViewControllerCell.xib │ ├── ContactsSubViewControllerHeader.h │ ├── ContactsSubViewControllerHeader.m │ ├── ContactsSubViewControllerHeader.xib │ ├── ContactsViewController.h │ ├── ContactsViewController.m │ └── ContactsViewController.xib ├── Conversation Details │ ├── ConversationDetailsBaseVC.h │ ├── ConversationDetailsBaseVC.m │ ├── ConversationDetailsDelegate.h │ ├── ConversationDetailsVC.h │ ├── ConversationDetailsVC.m │ ├── ConversationDetailsVC.xib │ ├── ConversationSecurityVC.h │ ├── ConversationSecurityVC.m │ ├── ConversationSecurityVC.xib │ └── en.lproj │ │ ├── ConversationDetailsHelp.html │ │ ├── ConversationDetailsHelp.strings │ │ ├── ConversationSecurityHelp.html │ │ └── Help.strings ├── ConversationInfoView │ ├── BurnTimePickerController.h │ ├── BurnTimePickerController.m │ ├── BurnTimePickerController.xib │ ├── BurnTimePickerControllerDelegate.h │ ├── ConversationInfoViewController.h │ ├── ConversationInfoViewController.m │ ├── ConversationInfoViewControllerDelegate.h │ ├── ConversationInfoViewController~ipad.xib │ └── ConversationInfoViewController~iphone.xib ├── ConversationView │ ├── BBCell │ │ ├── BBCell.h │ │ └── BBCell.m │ ├── CombinedViewController.h │ ├── CombinedViewController.m │ ├── CombinedViewController_iPad.xib │ ├── ConversationViewController.h │ ├── ConversationViewController.m │ ├── ConversationViewController.xib │ ├── ConversationViewTableCell.h │ ├── ConversationViewTableCell.m │ ├── ConversationViewTableCell.xib │ └── saved │ │ ├── ConversationViewTableCell.h │ │ ├── ConversationViewTableCell.m │ │ └── ConversationViewTableCell.xib ├── Custom │ ├── STDynamicHeightView.h │ └── STDynamicHeightView.m ├── FileImport │ ├── Base.lproj │ │ └── FileImportViewController.xib │ ├── FileImportViewController.h │ ├── FileImportViewController.m │ ├── ar.lproj │ │ └── FileImportViewController.strings │ ├── de.lproj │ │ └── FileImportViewController.strings │ ├── en.lproj │ │ └── FileImportViewController.strings │ ├── es.lproj │ │ └── FileImportViewController.strings │ ├── fr.lproj │ │ └── FileImportViewController.strings │ ├── it.lproj │ │ └── FileImportViewController.strings │ ├── ja.lproj │ │ └── FileImportViewController.strings │ ├── nl.lproj │ │ └── FileImportViewController.strings │ ├── pt-PT.lproj │ │ └── FileImportViewController.strings │ ├── ru.lproj │ │ └── FileImportViewController.strings │ └── zh-Hans.lproj │ │ └── FileImportViewController.strings ├── GeoTracking │ ├── GeoTracking.h │ └── GeoTracking.m ├── GeoViewController │ ├── NewGeoViewController.h │ ├── NewGeoViewController.m │ └── NewGeoViewController.xib ├── GroupInfoViewController │ ├── Base.lproj │ │ └── GroupInfoViewController.xib │ ├── GroupInfoViewController.h │ ├── GroupInfoViewController.m │ ├── NewGroupInfoVC.h │ ├── NewGroupInfoVC.m │ ├── NewGroupInfoVC.xib │ ├── NewGroupInfoVCDelegate.h │ ├── ar.lproj │ │ └── GroupInfoViewController.strings │ ├── de.lproj │ │ └── GroupInfoViewController.strings │ ├── en.lproj │ │ └── GroupInfoViewController.strings │ ├── es.lproj │ │ └── GroupInfoViewController.strings │ ├── fr.lproj │ │ └── GroupInfoViewController.strings │ ├── it.lproj │ │ └── GroupInfoViewController.strings │ ├── ja.lproj │ │ └── GroupInfoViewController.strings │ ├── nl.lproj │ │ └── GroupInfoViewController.strings │ ├── pt-PT.lproj │ │ └── GroupInfoViewController.strings │ ├── ru.lproj │ │ └── GroupInfoViewController.strings │ └── zh-Hans.lproj │ │ └── GroupInfoViewController.strings ├── Help │ ├── HelpDetailsVC.h │ ├── HelpDetailsVC.m │ ├── HelpDetailsVC.xib │ ├── SCTHelpButton.h │ ├── SCTHelpButton.m │ ├── SCTHelpManager.h │ └── SCTHelpManager.m ├── ImagePicker │ ├── SCImagePickerViewController.h │ └── SCImagePickerViewController.m ├── Images │ ├── 37x-Checkmark.png │ ├── 37x-Checkmark@2x.png │ ├── 939-download-rectangle.png │ ├── 939-download-rectangle@2x.png │ ├── AppIcon29x29.png │ ├── AppIcon29x29@2x.png │ ├── AppIcon29x29@3x.png │ ├── AppIcon40x40.png │ ├── AppIcon40x40@2x.png │ ├── AppIcon40x40@3x.png │ ├── AppIcon50x50.png │ ├── AppIcon50x50@2x.png │ ├── AppIcon57x57.png │ ├── AppIcon57x57@2x.png │ ├── AppIcon60x60.png │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ ├── AppIcon72x72.png │ ├── AppIcon72x72@2x.png │ ├── AppIcon76x76.png │ ├── AppIcon76x76@2x.png │ ├── Chat_64.png │ ├── Eyball Images │ │ ├── MZ_EYE_ICON_CLOSED.png │ │ ├── MZ_EYE_ICON_CLOSED@2x.png │ │ ├── MZ_EYE_ICON_OPEN.png │ │ └── MZ_EYE_ICON_OPEN@2x.png │ ├── LaunchScreen │ │ ├── SC_Brand-white_620x620.png │ │ ├── SC_LaunchImage-BgGradient_2048x2048.png │ │ └── SC_LaunchImage-Bubble_1100x1100.png │ ├── MessageEntryBackground.png │ ├── MessageEntryBackground@2x.png │ ├── MessageEntryInputField.png │ ├── MessageEntryInputField@2x.png │ ├── MessageEntrySendButton.png │ ├── MessageEntrySendButton@2x.png │ ├── MessageEntrySendButtonPressed.png │ ├── MessageEntrySendButtonPressed@2x.png │ ├── NavBar_screen2_chrome-frame_320x44.png │ ├── ObscureScreen-60px.png │ ├── ObscureScreen-60px@2x.png │ ├── ObscureScreen.png │ ├── ObscureScreen@2x.png │ ├── PageCurl.png │ ├── Phone_64.png │ ├── Poof │ │ ├── poof0.png │ │ ├── poof0@2x.png │ │ ├── poof1.png │ │ ├── poof1@2x.png │ │ ├── poof2.png │ │ ├── poof2@2x.png │ │ ├── poof3.png │ │ ├── poof3@2x.png │ │ ├── poof4.png │ │ ├── poof4@2x.png │ │ ├── poof5.png │ │ └── poof5@2x.png │ ├── SCBrand │ │ ├── scbrand-inapp-small-hdpi.png │ │ ├── scbrand-inapp-small-mdpi.png │ │ ├── scbrand-inapp-small-xhdpi.png │ │ ├── scbrand-inapp-small-xxhdpi.png │ │ ├── scbrand-inapp-small@1x.png │ │ ├── scbrand-inapp-small@2x.png │ │ └── scbrand-inapp-small@3x.png │ ├── SCLogo │ │ ├── sclogo-inapp-medium-hdpi.png │ │ ├── sclogo-inapp-medium-mdpi.png │ │ ├── sclogo-inapp-medium-xhdpi.png │ │ ├── sclogo-inapp-medium-xxhdpi.png │ │ ├── sclogo-inapp-medium@1x.png │ │ ├── sclogo-inapp-medium@2x.png │ │ └── sclogo-inapp-medium@3x.png │ ├── SilentPhone_CircleIcon32.png │ ├── SilentPhone_CircleIcon32@2x.png │ ├── SilentText_CircleIcon32.png │ ├── SilentText_CircleIcon32@2x.png │ ├── X-circled.png │ ├── X-circled@2x.png │ ├── android.png │ ├── attention.png │ ├── attention@2x.png │ ├── attention_error.png │ ├── attention_error@2x.png │ ├── avatar_multi.png │ ├── avatar_multi@2x.png │ ├── biometric@2x.png │ ├── bluedot@2x.png │ ├── button_activation.png │ ├── button_activation@2x.png │ ├── button_blue.png │ ├── button_blue@2x.png │ ├── button_darkgrey.png │ ├── button_darkgrey@2x.png │ ├── button_lightgrey.png │ ├── button_lightgrey@2x.png │ ├── button_passcode.png │ ├── button_passcode@2x.png │ ├── button_red@2x.png │ ├── button_signup.png │ ├── button_signup@2x.png │ ├── buttongray.png │ ├── buttongray@2x.png │ ├── calendar.png │ ├── chain.png │ ├── checkmark-circled.png │ ├── checkmark-circled@2x.png │ ├── contact-add-contact_btn.png │ ├── contact-add-contact_btn@2x.png │ ├── contact-add-contact_btn@3x.png │ ├── contact-company_icon.png │ ├── contact-company_icon@2x.png │ ├── contact-company_icon@3x.png │ ├── contact-favorite_btn.png │ ├── contact-favorite_btn@2x.png │ ├── contact-favorite_btn@3x.png │ ├── contact-info_btn.png │ ├── contact-info_btn@2x.png │ ├── contact-info_btn@3x.png │ ├── contact-message_btn.png │ ├── contact-message_btn@2x.png │ ├── contact-message_btn@3x.png │ ├── contact-phone_btn.png │ ├── contact-phone_btn@2x.png │ ├── contact-phone_btn@3x.png │ ├── darkbackgrounds │ │ ├── Wallp-black.jpg │ │ ├── Wallp-blue.jpg │ │ ├── Wallp-bluegrey.png │ │ ├── Wallp-blueline.png │ │ ├── Wallp-browngrain.png │ │ ├── Wallp-denim.jpg │ │ ├── Wallp-diamondplate.jpg │ │ ├── Wallp-fabric.jpg │ │ ├── Wallp-greenmesh.png │ │ ├── Wallp-greyplain.png │ │ ├── Wallp-horizgrain.jpg │ │ ├── Wallp-orange.jpg │ │ ├── Wallp-orange.png │ │ ├── Wallp-redpattern.jpg │ │ ├── Wallp-rusty.png │ │ ├── Wallp-stich.png │ │ └── Wallp-woodstrips.jpg │ ├── default-document.png │ ├── default-map.png │ ├── defaultPerson.png │ ├── default_audio.png │ ├── directory.png │ ├── dropdown-alert.png │ ├── dropdown-alert@2x.png │ ├── expired.png │ ├── expired@2x.png │ ├── failure-btn.png │ ├── failure-btn@2x.png │ ├── flame_btn.png │ ├── flame_btn@2x.png │ ├── gear_blue.png │ ├── gear_blue@2x.png │ ├── gear_color.png │ ├── gear_color@2x.png │ ├── gear_grey.png │ ├── gear_grey@2x.png │ ├── gears.jpg │ ├── iTunesArtwork.png │ ├── iTunesArtwork@2x.png │ ├── ignored.png │ ├── info-1yellow.png │ ├── info-1yellow@2x.png │ ├── info-2yellow.png │ ├── info-2yellow@2x.png │ ├── info-3green.png │ ├── info-3green@2x.png │ ├── info-3red.png │ ├── info-3red@2x.png │ ├── info-3yellow.png │ ├── info-3yellow@2x.png │ ├── info-circle.png │ ├── info-circle@2x.png │ ├── info-mute.png │ ├── info-mute@2x.png │ ├── info-only.png │ ├── info-only@2x.png │ ├── info-tint.png │ ├── info-tint@2x.png │ ├── itunes-folder.png │ ├── key1.png │ ├── key1@2x.png │ ├── key2.png │ ├── key2@2x.png │ ├── key3.png │ ├── key3@2x.png │ ├── key4.png │ ├── key4@2x.png │ ├── map_btn.png │ ├── map_btn@2x.png │ ├── mapwhite.png │ ├── mapwhite@2x.png │ ├── movie.png │ ├── movie@2x.png │ ├── muted.png │ ├── muted@2x.png │ ├── navbar.png │ ├── navbar@2x.png │ ├── navbar_landscape-568h@2x.png │ ├── navbar_landscape.png │ ├── navbar_landscape@2x.png │ ├── navbar_portrait.png │ ├── navbar_portrait@2x.png │ ├── navbarlandscape.png │ ├── navbarlandscape@2x.png │ ├── offline.png │ ├── offline@2x.png │ ├── pending@2x.png │ ├── plaintext.png │ ├── qrcode@2x.png │ ├── refresh-icon.png │ ├── refresh-icon@2x.png │ ├── refresh_key.png │ ├── refresh_key@2x.png │ ├── reply.png │ ├── reply@2x.png │ ├── reply_2.png │ ├── reply_3.png │ ├── scloud-folder.png │ ├── seg_contacts.png │ ├── seg_silent.png │ ├── silhouette.png │ ├── silhouette@2x.png │ ├── split.png │ ├── split@2x.png │ ├── starred-checkmark.png │ ├── starred-checkmark@2x.png │ ├── subscribe.png │ ├── threebars.png │ ├── threebars@2x.png │ ├── unchain.png │ ├── unplayed.png │ ├── unplayed@2x.png │ ├── unsplit.png │ ├── unsplit@2x.png │ ├── vcard.png │ ├── vcard@2x.png │ ├── vmemo70.png │ ├── vmemo70@2x.png │ ├── voiceMailIcon76x76.png │ ├── voiceMailIcon76x76@2x.png │ └── voicemail.png ├── InAppPurchase │ ├── EmbeddedIAPProduct.h │ ├── EmbeddedIAPProduct.m │ ├── NSDictionaryExtras.h │ ├── NSDictionaryExtras.m │ ├── ProductVO.h │ ├── ProductVO.m │ ├── StoreManager.h │ └── StoreManager.m ├── LaunchScreen │ ├── LaunchScreen.storyboard │ ├── LaunchScreenVC.h │ └── LaunchScreenVC.m ├── LicensesViewController │ ├── LicensesViewController.h │ ├── LicensesViewController.m │ ├── LicensesViewController.xib │ └── VersionVC.xib ├── Logging │ ├── LumberjackUser.bash │ ├── SCDatabaseLogger │ │ ├── Internal │ │ │ ├── SCDatabaseLoggerCache.h │ │ │ ├── SCDatabaseLoggerCache.m │ │ │ ├── SCDatabaseLoggerConnectionState.h │ │ │ ├── SCDatabaseLoggerConnectionState.m │ │ │ ├── SCDatabaseLoggerInternalChangeset.h │ │ │ ├── SCDatabaseLoggerInternalChangeset.m │ │ │ ├── SCDatabaseLoggerPrivate.h │ │ │ └── SCDatabaseLoggerString.h │ │ ├── SCDatabaseLogEntry.h │ │ ├── SCDatabaseLogEntry.m │ │ ├── SCDatabaseLogger.h │ │ ├── SCDatabaseLogger.m │ │ ├── SCDatabaseLoggerConnection.h │ │ ├── SCDatabaseLoggerConnection.m │ │ ├── SCDatabaseLoggerTransaction.h │ │ ├── SCDatabaseLoggerTransaction.m │ │ ├── User Interface │ │ │ └── iOS │ │ │ │ ├── SCDatabaseLogger.storyboard │ │ │ │ ├── SCDatabaseLoggerVC.h │ │ │ │ ├── SCDatabaseLoggerVC.m │ │ │ │ ├── SubmitLogFile.storyboard │ │ │ │ ├── SubmitLogFileDetailsVC.h │ │ │ │ ├── SubmitLogFileDetailsVC.m │ │ │ │ ├── SubmitLogFileInfoVC.h │ │ │ │ ├── SubmitLogFileInfoVC.m │ │ │ │ ├── SubmitLogFileVC.h │ │ │ │ └── SubmitLogFileVC.m │ │ └── Utilities │ │ │ ├── SCDatabaseLogger+JID.h │ │ │ ├── SCDatabaseLogger+JID.m │ │ │ ├── SCDatabaseLogger+RTF.h │ │ │ ├── SCDatabaseLogger+RTF.m │ │ │ ├── SCDatabaseLoggerChangeset.h │ │ │ ├── SCDatabaseLoggerChangeset.m │ │ │ ├── SCDatabaseLoggerColorProfiles.h │ │ │ └── SCDatabaseLoggerColorProfiles.m │ ├── STLoggerFormatter.h │ ├── STLoggerFormatter.m │ └── STLogging.h ├── Managers │ ├── AddressBookManager.h │ ├── AddressBookManager.m │ ├── AvatarManager.h │ ├── AvatarManager.m │ ├── DatabaseActionManager.h │ ├── DatabaseActionManager.m │ ├── DatabaseManager.h │ ├── DatabaseManager.m │ ├── MessageStreamManager.h │ ├── MessageStreamManager.m │ ├── SCFileManager.h │ ├── SCFileManager.m │ ├── SRVManager.h │ ├── SRVManager.m │ ├── STSoundManager.h │ ├── STSoundManager.m │ ├── STUserManager.h │ └── STUserManager.m ├── MediaPicker │ ├── MediaAlbum.h │ ├── MediaAlbum.m │ ├── MediaAlbumPickerController.h │ ├── MediaAlbumPickerController.m │ ├── MediaAlbumPickerController.xib │ ├── MediaPickerController.h │ ├── MediaPickerController.m │ ├── MediaPickerController.xib │ ├── dataSource │ │ ├── ItunesAlbumDataSource.m │ │ ├── ItunesDataSource.h │ │ ├── PhotoAlbumDataSource.h │ │ ├── PhotoAlbumDataSource.m │ │ ├── SCloudDataSource.h │ │ └── SCloudDataSource.m │ └── views │ │ ├── MediaPickerAlbumPhotoCell.h │ │ ├── MediaPickerAlbumPhotoCell.m │ │ ├── MediaPickerAlbumTitleReusableView.h │ │ ├── MediaPickerAlbumTitleReusableView.m │ │ ├── MediaPickerPhotoAlbumLayout.h │ │ ├── MediaPickerPhotoAlbumLayout.m │ │ ├── MediaPickerWaterfallCell.h │ │ ├── MediaPickerWaterfallCell.m │ │ ├── MediaPickerWaterfallLayout.h │ │ └── MediaPickerWaterfallLayout.m ├── MessageFWD │ ├── MessageFWDViewController.h │ ├── MessageFWDViewController.m │ └── MessageFWDViewController.xib ├── MessageRecipient │ ├── MessageRecipientViewController.h │ ├── MessageRecipientViewController.m │ └── MessageRecipientViewController.xib ├── MessageStream │ ├── FakeStream.h │ ├── FakeStream.m │ ├── MessageStream.h │ ├── MessageStream.m │ ├── SCimpUtilities.h │ ├── SCimpUtilities.m │ ├── SCimpWrapper.h │ ├── SCimpWrapper.m │ ├── YapDatabaseTransaction+MessageStream.h │ └── YapDatabaseTransaction+MessageStream.m ├── MessageView │ ├── AutoGrowingTextView.h │ ├── AutoGrowingTextView.m │ ├── Base.lproj │ │ └── STAudioView.xib │ ├── BubbleView.h │ ├── BubbleView.m │ ├── Message Options │ │ ├── Base.lproj │ │ │ └── ChatOptionsView.xib │ │ ├── BurnDelays.h │ │ ├── BurnDelays.m │ │ ├── ChatOptionsView.h │ │ ├── ChatOptionsView.m │ │ ├── SilentPhone_CircleIcon30.png │ │ ├── SilentPhone_CircleIcon30@2x.png │ │ ├── SilentPhone_CircleIcon30_off.png │ │ ├── SilentPhone_CircleIcon30_off@2x.png │ │ ├── UIKit_DisclosureArrow@2x.png │ │ ├── UIKit_DisclosureArrow_29x29@2x.png │ │ ├── abook.png │ │ ├── abook@2x.png │ │ ├── addressbook.png │ │ ├── ar.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── camera.png │ │ ├── camera@2x.png │ │ ├── camerabutton.png │ │ ├── cameragreen.png │ │ ├── cameragreen@2x.png │ │ ├── chatoptions.png │ │ ├── chatoptions@2x.png │ │ ├── chatoptionsBG.png │ │ ├── chatoptionsBG@2x.png │ │ ├── de.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── disclose.png │ │ ├── en.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── es.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── flame-off.png │ │ ├── flame-on.png │ │ ├── flame_off.png │ │ ├── flame_off@2x.png │ │ ├── flame_on.png │ │ ├── flame_on@2x.png │ │ ├── fr.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── fyeo-off.png │ │ ├── fyeo-on.png │ │ ├── it.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── ja.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── map-off.png │ │ ├── map-on.png │ │ ├── map_off.png │ │ ├── map_off@2x.png │ │ ├── map_on.png │ │ ├── map_on@2x.png │ │ ├── microphone.png │ │ ├── microphone@2x.png │ │ ├── moredetail.png │ │ ├── moredetail@2x.png │ │ ├── nl.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── paperclip.png │ │ ├── paperclip@2x.png │ │ ├── pt-PT.lproj │ │ │ └── ChatOptionsView.strings │ │ ├── ru.lproj │ │ │ └── ChatOptionsView.strings │ │ └── zh-Hans.lproj │ │ │ └── ChatOptionsView.strings │ ├── MessageTableCellHeaderComposeView.xib │ ├── MessagesInputView.h │ ├── MessagesInputView.m │ ├── MessagesViewController.h │ ├── MessagesViewController.m │ ├── MessagesViewController.xib │ ├── MoreMenuView │ │ ├── MoreMenuViewController.h │ │ ├── MoreMenuViewController.m │ │ └── MoreMenuViewController.xib │ ├── RectBubbleTableViewCell.h │ ├── RectBubbleTableViewCell.m │ ├── RectBubbleView.h │ ├── RectBubbleView.m │ ├── STBubbleCellButton.h │ ├── STBubbleCellButton.m │ ├── STBubbleTableViewCell.h │ ├── STBubbleTableViewCell.m │ ├── STBubbleView.h │ ├── STBubbleView.m │ ├── STInteractiveTableView.h │ ├── STInteractiveTableView.m │ ├── STInteractiveTextView.h │ ├── STInteractiveTextView.m │ ├── STTiledBubbleView.h │ ├── STTiledBubbleView.m │ ├── SecurityStatusButton.h │ ├── SecurityStatusButton.m │ ├── ar.lproj │ │ └── STAudioView.strings │ ├── de.lproj │ │ └── STAudioView.strings │ ├── en.lproj │ │ └── STAudioView.strings │ ├── es.lproj │ │ └── STAudioView.strings │ ├── fr.lproj │ │ └── STAudioView.strings │ ├── it.lproj │ │ └── STAudioView.strings │ ├── ja.lproj │ │ └── STAudioView.strings │ ├── nl.lproj │ │ └── STAudioView.strings │ ├── pt-PT.lproj │ │ └── STAudioView.strings │ ├── ru.lproj │ │ └── STAudioView.strings │ ├── speaker@2x.png │ └── zh-Hans.lproj │ │ └── STAudioView.strings ├── Model │ ├── SCimpSnapshot.h │ ├── SCimpSnapshot.m │ ├── STConversation.h │ ├── STConversation.m │ ├── STDatabaseObject.h │ ├── STDatabaseObject.m │ ├── STImage.h │ ├── STImage.m │ ├── STLocalUser.h │ ├── STLocalUser.m │ ├── STMessage.h │ ├── STMessage.m │ ├── STMessageIDCache.h │ ├── STMessageIDCache.m │ ├── STNotification.h │ ├── STNotification.m │ ├── STPublicKey.h │ ├── STPublicKey.m │ ├── STQueuedMessages.h │ ├── STQueuedMessages.m │ ├── STSCloud.h │ ├── STSCloud.m │ ├── STSRVRecord.h │ ├── STSRVRecord.m │ ├── STStreamManagement.h │ ├── STStreamManagement.m │ ├── STSymmetricKey.h │ ├── STSymmetricKey.m │ ├── STUser.h │ ├── STUser.m │ ├── STUserGroup.h │ ├── STUserGroup.m │ ├── STXMPPElement.h │ └── STXMPPElement.m ├── NewConversationView │ └── NewConversationViewController.m ├── Passcode │ ├── PasscodeViewController.h │ ├── PasscodeViewController.m │ ├── PasscodeViewController.xib │ ├── SCPasscodeManager.h │ ├── SCPasscodeManager.m │ ├── SCRecoveryKeyScannerController.h │ ├── SCRecoveryKeyScannerController.m │ ├── SCRecoveryKeyScannerController.xib │ ├── SCRecoveryKeyViewController.h │ ├── SCRecoveryKeyViewController.m │ └── SCRecoveryKeyViewController.xib ├── Preferences │ ├── SCPreferences.h │ ├── SCPreferences.m │ ├── STPreferences.h │ └── STPreferences.m ├── PrivacyView │ ├── Base.lproj │ │ └── PrivacyViewController.xib │ ├── BurnDelayViewController.h │ ├── BurnDelayViewController.m │ ├── BurnDelayViewController.xib │ ├── PrivacyViewController.h │ ├── PrivacyViewController.m │ ├── ar.lproj │ │ └── PrivacyViewController.strings │ ├── de.lproj │ │ └── PrivacyViewController.strings │ ├── en.lproj │ │ └── PrivacyViewController.strings │ ├── es.lproj │ │ └── PrivacyViewController.strings │ ├── fr.lproj │ │ └── PrivacyViewController.strings │ ├── it.lproj │ │ └── PrivacyViewController.strings │ ├── ja.lproj │ │ └── PrivacyViewController.strings │ ├── nl.lproj │ │ └── PrivacyViewController.strings │ ├── pt-PT.lproj │ │ └── PrivacyViewController.strings │ ├── ru.lproj │ │ └── PrivacyViewController.strings │ └── zh-Hans.lproj │ │ └── PrivacyViewController.strings ├── Resources │ ├── Base.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── Localized Help Content │ │ └── en.lproj │ │ │ ├── ConversationDetailsHelp.html │ │ │ ├── ConversationDetailsHelp.strings │ │ │ ├── ConversationSecurityHelp.html │ │ │ ├── EditUserInfoHelp.html │ │ │ ├── Help.strings │ │ │ └── UserInfoHelp.html │ ├── ar.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── licenses.html │ ├── licenses.md │ ├── nl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── pt-PT.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── privacy.html ├── SC XMPP │ ├── XEP-0033 │ │ ├── XMPPMessage+XEP_0033.h │ │ └── XMPPMessage+XEP_0033.m │ ├── XMPPFramework.h │ ├── XMPPJIDSet.h │ ├── XMPPJIDSet.m │ ├── XMPPMessage+SilentCircle.h │ └── XMPPMessage+SilentCircle.m ├── SCContactBookPicker │ ├── SCContactBookPicker.h │ ├── SCContactBookPicker.m │ ├── SCContactBookPicker.xib │ ├── SCContactBookPickerCell.h │ └── SCContactBookPickerCell.m ├── SCloud │ ├── AsyncS3uploader.h │ ├── AsyncS3uploader.m │ ├── AsyncSCloudOp.h │ ├── AsyncSCloudOp.m │ ├── S3DeleteOperation.h │ ├── S3DeleteOperation.m │ ├── S3DownloadOperation.h │ ├── S3DownloadOperation.m │ ├── S3UploadSession.h │ ├── S3UploadSession.m │ ├── SCloudManager.h │ ├── SCloudManager.m │ ├── SCloudObject.h │ └── SCloudObject.m ├── SCloudView │ ├── SCloudViewController.h │ ├── SCloudViewController.m │ ├── SCloudViewController_iPad.xib │ └── SCloudViewController_iPhone.xib ├── ST2-Info.plist ├── ST2-Prefix.pch ├── ST2.entitlements ├── ST2.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ST2.xcscheme ├── ST2 │ └── AppImages.xcassets │ │ └── AppIcon.appiconset │ │ ├── AppIcon29x29-1.png │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x-1.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon40x40.png │ │ ├── AppIcon40x40@2x-1.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon50x50.png │ │ ├── AppIcon50x50@2x.png │ │ ├── AppIcon57x57.png │ │ ├── AppIcon57x57@2x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon72x72.png │ │ ├── AppIcon72x72@2x.png │ │ ├── AppIcon76x76.png │ │ ├── AppIcon76x76@2x.png │ │ └── Contents.json ├── ScloudPreview │ ├── FYEOViewController.h │ ├── FYEOViewController.m │ ├── FYEOViewController.xib │ ├── QLItem.h │ ├── QLItem.m │ ├── SCloudPreviewer.h │ ├── SCloudPreviewer.m │ ├── SCloudPreviewerErrorView.h │ ├── SCloudPreviewerErrorView.m │ └── SCloudPreviewerErrorView.xib ├── Scripts │ ├── fetch_git_commit_hash.sh │ └── localize_strings.sh ├── SearchUsers │ ├── PersonSearchResult.h │ └── PersonSearchResult.m ├── SettingsView │ ├── AccountsTableViewCell.h │ ├── AccountsTableViewCell.m │ ├── AccountsTableViewCell.xib │ ├── AppThemePickerPhoneViewController.h │ ├── AppThemePickerPhoneViewController.m │ ├── AppThemePickerPhoneViewController.xib │ ├── AppThemePickerViewController.h │ ├── AppThemePickerViewController.m │ ├── AppThemePickerViewController~ipad.xib │ ├── AppThemeTableViewCell.h │ ├── AppThemeTableViewCell.m │ ├── AppThemeTableViewCell.xib │ ├── AppThemeView.h │ ├── AppThemeView.m │ ├── Base.lproj │ │ ├── AccountsTableHeaderView.xib │ │ └── AppThemeView.xib │ ├── BubbleColorsViewController.h │ ├── BubbleColorsViewController.m │ ├── BubbleColorsViewController_iPad.xib │ ├── BubbleColorsViewController_iPhone.xib │ ├── SCTPopoverDelegte.h │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SettingsViewController.xib │ ├── ar.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── de.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── en.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── es.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── fr.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── it.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── ja.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── nl.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── pt-PT.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ ├── ru.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings │ └── zh-Hans.lproj │ │ ├── AccountsTableHeaderView.strings │ │ └── AppThemeView.strings ├── Siren │ ├── Siren.h │ └── Siren.m ├── SoundsView │ ├── Base.lproj │ │ └── SoundsViewController.xib │ ├── SoundsViewController.h │ ├── SoundsViewController.m │ ├── ar.lproj │ │ └── SoundsViewController.strings │ ├── beep.m4a │ ├── de.lproj │ │ └── SoundsViewController.strings │ ├── en.lproj │ │ └── SoundsViewController.strings │ ├── es.lproj │ │ └── SoundsViewController.strings │ ├── fr.lproj │ │ └── SoundsViewController.strings │ ├── it.lproj │ │ └── SoundsViewController.strings │ ├── ja.lproj │ │ └── SoundsViewController.strings │ ├── nl.lproj │ │ └── SoundsViewController.strings │ ├── pt-PT.lproj │ │ └── SoundsViewController.strings │ ├── received.wav │ ├── ru.lproj │ │ └── SoundsViewController.strings │ ├── sent.aiff │ ├── swoosh.wav │ └── zh-Hans.lproj │ │ └── SoundsViewController.strings ├── UserInfoView │ ├── Base.lproj │ │ ├── EditUserInfoViewController.xib │ │ ├── MoveAndScaleImageViewController.xib │ │ └── UserInfoViewController.xib │ ├── EditUserInfoDelegate.h │ ├── EditUserInfoVC.h │ ├── EditUserInfoVC.m │ ├── EditUserInfoVC.xib │ ├── EditUserInfoViewController.h │ ├── EditUserInfoViewController.m │ ├── MoveAndScaleImageViewController.h │ ├── MoveAndScaleImageViewController.m │ ├── UserInfoVC.h │ ├── UserInfoVC.m │ ├── UserInfoVC.xib │ ├── UserInfoViewController.h │ ├── UserInfoViewController.m │ ├── ar.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── de.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── en.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── es.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── fr.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── it.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── ja.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── nl.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── pt-PT.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ ├── ru.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings │ └── zh-Hans.lproj │ │ ├── EditUserInfoViewController.strings │ │ ├── MoveAndScaleImageViewController.strings │ │ └── UserInfoViewController.strings ├── Utilities │ ├── MWS │ │ ├── Categories │ │ │ ├── UIColor+Expanded.h │ │ │ ├── UIColor+Expanded.m │ │ │ ├── UIColor+FlatColors.h │ │ │ ├── UIColor+FlatColors.m │ │ │ ├── UIImage+ETAdditions.h │ │ │ └── UIImage+ETAdditions.m │ │ ├── Eyeball │ │ │ ├── SCTEyeball.h │ │ │ ├── SCTEyeball.m │ │ │ └── SCTEyeballDelegate.h │ │ ├── LockScreen │ │ │ ├── SCTPinLockKeypad.h │ │ │ ├── SCTPinLockKeypad.m │ │ │ ├── SCTPinLockKeypadDelegate.h │ │ │ ├── SCTPinLockScreenConstants.h │ │ │ ├── SCTPinLockScreenConstants.m │ │ │ ├── SCTPinLockScreenVC.h │ │ │ └── SCTPinLockScreenVC.m │ │ ├── PasswordTextfield │ │ │ ├── SCTPasswordFieldEntropyDelegate.h │ │ │ ├── SCTPasswordTextfield.h │ │ │ ├── SCTPasswordTextfield.m │ │ │ └── SCTPasswordTextfieldDelegate.h │ │ ├── PasswordTextfieldView │ │ │ ├── SCTPasswordTextfieldView.h │ │ │ ├── SCTPasswordTextfieldView.m │ │ │ └── SCTPasswordTextfieldView.xib │ │ ├── RadialMenu │ │ │ └── MWSRadialPopMenu │ │ │ │ ├── MWSRadialPopMenu.h │ │ │ │ ├── MWSRadialPopMenu.m │ │ │ │ ├── MWSRadialScrollView.h │ │ │ │ ├── MWSRadialScrollView.m │ │ │ │ ├── MWSTouchOverlayView.h │ │ │ │ └── MWSTouchOverlayView.m │ │ ├── SadunQuartzPack │ │ │ ├── Bezier │ │ │ │ ├── Bezier.h │ │ │ │ ├── BezierElement.h │ │ │ │ ├── BezierElement.m │ │ │ │ ├── BezierFunctions.h │ │ │ │ ├── BezierFunctions.m │ │ │ │ ├── BezierUtils.h │ │ │ │ ├── BezierUtils.m │ │ │ │ ├── UIBezierPath+Elements.h │ │ │ │ └── UIBezierPath+Elements.m │ │ │ ├── Drawing │ │ │ │ ├── Drawing-Block.h │ │ │ │ ├── Drawing-Block.m │ │ │ │ ├── Drawing-Gradient.h │ │ │ │ ├── Drawing-Gradient.m │ │ │ │ ├── Drawing-Util.h │ │ │ │ └── Drawing-Util.m │ │ │ ├── Geometry │ │ │ │ ├── BaseGeometry.h │ │ │ │ └── BaseGeometry.m │ │ │ ├── Image │ │ │ │ ├── ImageUtils.h │ │ │ │ └── ImageUtils.m │ │ │ ├── SadunQuartzUtilities.h │ │ │ ├── UIColor+MWSAdditions │ │ │ │ ├── UIColor+MWSAdditions.h │ │ │ │ └── UIColor+MWSAdditions.m │ │ │ └── Utility │ │ │ │ ├── Utility.h │ │ │ │ └── Utility.m │ │ ├── ShapeButton │ │ │ ├── SCTGradientShapeButton.h │ │ │ ├── SCTGradientShapeButton.m │ │ │ ├── SCTShapeButton.h │ │ │ ├── SCTShapeButton.m │ │ │ ├── SCTShapeButtonConstants.h │ │ │ └── SCTShapeButtonConstants.m │ │ ├── ShapeButtonsView │ │ │ ├── SCTShapeButtonsView.h │ │ │ └── SCTShapeButtonsView.m │ │ ├── TapDetectSegmentedControl │ │ │ ├── SCTTapDetectSegmentedControl.h │ │ │ └── SCTTapDetectSegmentedControl.m │ │ └── TextCopyLabel │ │ │ ├── SCTTextCopyLabel.h │ │ │ └── SCTTextCopyLabel.m │ ├── MZAlertView.h │ ├── MZAlertView.m │ ├── SCAssetInfo.h │ ├── SCAssetInfo.m │ ├── SCBrandTableHeaderFooterView.h │ ├── SCBrandTableHeaderFooterView.m │ ├── SCBrandTableHeaderFooterView.xib │ ├── SCCalendar.h │ ├── SCCalendar.m │ ├── SCDateFormatter.h │ ├── SCDateFormatter.m │ ├── SCMapImage.h │ ├── SCMapImage.m │ ├── SnippetGraphView.h │ ├── SnippetGraphView.m │ ├── UIButtonWithHitTestEdgeInsets.h │ └── UIButtonWithHitTestEdgeInsets.m ├── Vendors-modified │ ├── CHTCollectionViewWaterfallLayout │ │ ├── CHTCollectionViewWaterfallCell.h │ │ ├── CHTCollectionViewWaterfallCell.m │ │ ├── CHTCollectionViewWaterfallLayout.h │ │ ├── CHTCollectionViewWaterfallLayout.m │ │ └── LICENSE │ └── UNUSED_TITokenField_pre-pod │ │ ├── Names.h │ │ ├── Names.m │ │ ├── README.markdown │ │ ├── TITokenField.h │ │ ├── TITokenField.m │ │ └── TokenFieldExample │ │ ├── Classes │ │ ├── TokenFieldExampleAppDelegate.h │ │ ├── TokenFieldExampleAppDelegate.m │ │ ├── TokenFieldExampleViewController.h │ │ └── TokenFieldExampleViewController.m │ │ ├── Default-568h@2x.png │ │ ├── TokenFieldExample-Info.plist │ │ ├── TokenFieldExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── TokenFieldExample_Prefix.pch │ │ └── main.m ├── VersionView │ ├── VersionViewController.h │ ├── VersionViewController.m │ └── VersionViewController.xib ├── main.m ├── vCalendarView │ ├── Base.lproj │ │ └── vCalendarViewController.xib │ ├── ar.lproj │ │ └── vCalendarViewController.strings │ ├── de.lproj │ │ └── vCalendarViewController.strings │ ├── en.lproj │ │ └── vCalendarViewController.strings │ ├── es.lproj │ │ └── vCalendarViewController.strings │ ├── fr.lproj │ │ └── vCalendarViewController.strings │ ├── it.lproj │ │ └── vCalendarViewController.strings │ ├── ja.lproj │ │ └── vCalendarViewController.strings │ ├── nl.lproj │ │ └── vCalendarViewController.strings │ ├── pt-PT.lproj │ │ └── vCalendarViewController.strings │ ├── ru.lproj │ │ └── vCalendarViewController.strings │ ├── vCalendarViewController.h │ ├── vCalendarViewController.m │ └── zh-Hans.lproj │ │ └── vCalendarViewController.strings └── vCardView │ ├── Base.lproj │ └── vCardViewController.xib │ ├── NSDictionary+vCard.h │ ├── NSDictionary+vCard.m │ ├── ar.lproj │ └── vCardViewController.strings │ ├── de.lproj │ └── vCardViewController.strings │ ├── en.lproj │ └── vCardViewController.strings │ ├── es.lproj │ └── vCardViewController.strings │ ├── fr.lproj │ └── vCardViewController.strings │ ├── it.lproj │ └── vCardViewController.strings │ ├── ja.lproj │ └── vCardViewController.strings │ ├── nl.lproj │ └── vCardViewController.strings │ ├── pt-PT.lproj │ └── vCardViewController.strings │ ├── ru.lproj │ └── vCardViewController.strings │ ├── vCardViewController.h │ ├── vCardViewController.m │ └── zh-Hans.lproj │ └── vCardViewController.strings ├── Vendors ├── InfColorPicker │ ├── InfColorBarPicker.h │ ├── InfColorBarPicker.m │ ├── InfColorIndicatorView.h │ ├── InfColorIndicatorView.m │ ├── InfColorPicker.h │ ├── InfColorPickerController.h │ ├── InfColorPickerController.m │ ├── InfColorPickerView.xib │ ├── InfColorSquarePicker.h │ ├── InfColorSquarePicker.m │ ├── InfHSBSupport.h │ ├── InfHSBSupport.m │ ├── InfSourceColorView.h │ └── InfSourceColorView.m ├── OHActionSheet │ ├── .gitignore │ ├── Example │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── OHActionSheetExampleAppDelegate.h │ │ ├── OHActionSheetExampleAppDelegate.m │ │ ├── OHAlertsExample-Info.plist │ │ ├── OHAlertsExample.xcodeproj │ │ │ └── project.pbxproj │ │ ├── OHAlertsExample_Prefix.pch │ │ └── main.m │ ├── LICENSE │ ├── OHActionSheet.podspec │ ├── OHActionSheet │ │ ├── OHActionSheet.h │ │ └── OHActionSheet.m │ └── README.md ├── QBImagePickerController │ ├── .gitignore │ ├── Demo │ │ ├── QBImagePickerControllerDemo.xcodeproj │ │ │ └── project.pbxproj │ │ ├── QBImagePickerControllerDemo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── QBImagePickerControllerDemo-Info.plist │ │ │ ├── QBImagePickerControllerDemo-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── QBImagePickerControllerDemoTests │ │ │ ├── QBImagePickerControllerDemoTests-Info.plist │ │ │ ├── QBImagePickerControllerDemoTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── LICENSE │ ├── Pod │ │ ├── Assets │ │ │ ├── en.lproj │ │ │ │ └── QBImagePickerController.strings │ │ │ └── ja.lproj │ │ │ │ └── QBImagePickerController.strings │ │ └── Classes │ │ │ ├── QBAssetsCollectionCheckmarkView.h │ │ │ ├── QBAssetsCollectionCheckmarkView.m │ │ │ ├── QBAssetsCollectionFooterView.h │ │ │ ├── QBAssetsCollectionFooterView.m │ │ │ ├── QBAssetsCollectionOverlayView.h │ │ │ ├── QBAssetsCollectionOverlayView.m │ │ │ ├── QBAssetsCollectionVideoIndicatorView.h │ │ │ ├── QBAssetsCollectionVideoIndicatorView.m │ │ │ ├── QBAssetsCollectionViewCell.h │ │ │ ├── QBAssetsCollectionViewCell.m │ │ │ ├── QBAssetsCollectionViewController.h │ │ │ ├── QBAssetsCollectionViewController.m │ │ │ ├── QBAssetsCollectionViewLayout.h │ │ │ ├── QBAssetsCollectionViewLayout.m │ │ │ ├── QBImagePickerController.h │ │ │ ├── QBImagePickerController.m │ │ │ ├── QBImagePickerGroupCell.h │ │ │ ├── QBImagePickerGroupCell.m │ │ │ ├── QBImagePickerThumbnailView.h │ │ │ └── QBImagePickerThumbnailView.m │ ├── QBImagePickerController.podspec │ ├── README.md │ └── git version info.txt ├── STBubbleTableViewCell │ ├── CocoaControls EULA.pdf │ ├── STBubbleTableViewCell.zip │ ├── STBubbleTableViewCell │ │ ├── STBubbleTableViewCell.h │ │ └── STBubbleTableViewCell.m │ ├── STBubbleTableViewCellDemo │ │ ├── BubbleView.xib │ │ ├── Classes │ │ │ ├── Message.h │ │ │ ├── Message.m │ │ │ ├── STBubbleTableViewCellDemoAppDelegate.h │ │ │ ├── STBubbleTableViewCellDemoAppDelegate.m │ │ │ ├── STBubbleTableViewCellDemoViewController.h │ │ │ └── STBubbleTableViewCellDemoViewController.m │ │ ├── Images │ │ │ ├── Bubble-0.png │ │ │ ├── Bubble-0@2x.png │ │ │ ├── Bubble-1.png │ │ │ ├── Bubble-1@2x.png │ │ │ ├── Bubble-2.png │ │ │ ├── Bubble-2@2x.png │ │ │ ├── Bubble-3.png │ │ │ ├── Bubble-3@2x.png │ │ │ ├── Bubble-4.png │ │ │ ├── Bubble-4@2x.png │ │ │ ├── Bubble-5.png │ │ │ ├── Bubble-5@2x.png │ │ │ ├── Bubble-6.png │ │ │ ├── Bubble-6@2x.png │ │ │ ├── Bubble-7.png │ │ │ ├── Bubble-7@2x.png │ │ │ ├── Bubble-8.png │ │ │ ├── Bubble-8@2x.png │ │ │ ├── Bubble-9.png │ │ │ └── Bubble-9@2x.png │ │ ├── MainWindow.xib │ │ ├── STBubbleTableViewCellDemo-Info.plist │ │ ├── STBubbleTableViewCellDemo.xcodeproj │ │ │ ├── Cedric.mode1v3 │ │ │ ├── Cedric.pbxuser │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── STBubbleTableViewCellDemo_Prefix.pch │ │ ├── SkyTrix.png │ │ ├── jonnotie.png │ │ └── main.m │ ├── STBubbleView.h │ ├── STBubbleView.m │ └── Thanks.txt ├── XMPPFramework │ ├── .gitignore │ ├── .gitmodules │ ├── .hgignore │ ├── Authentication │ │ ├── Anonymous │ │ │ ├── XMPPAnonymousAuthentication.h │ │ │ └── XMPPAnonymousAuthentication.m │ │ ├── Deprecated-Digest │ │ │ ├── XMPPDeprecatedDigestAuthentication.h │ │ │ └── XMPPDeprecatedDigestAuthentication.m │ │ ├── Deprecated-Plain │ │ │ ├── XMPPDeprecatedPlainAuthentication.h │ │ │ └── XMPPDeprecatedPlainAuthentication.m │ │ ├── Digest-MD5 │ │ │ ├── XMPPDigestMD5Authentication.h │ │ │ └── XMPPDigestMD5Authentication.m │ │ ├── Plain │ │ │ ├── XMPPPlainAuthentication.h │ │ │ └── XMPPPlainAuthentication.m │ │ ├── SCRAM-SHA-1 │ │ │ ├── XMPPSCRAMSHA1Authentication.h │ │ │ └── XMPPSCRAMSHA1Authentication.m │ │ ├── X-Facebook-Platform │ │ │ ├── XMPPXFacebookPlatformAuthentication.h │ │ │ └── XMPPXFacebookPlatformAuthentication.m │ │ ├── X-OAuth2-Google │ │ │ ├── XMPPXOAuth2Google.h │ │ │ └── XMPPXOAuth2Google.m │ │ ├── XMPPCustomBinding.h │ │ └── XMPPSASLAuthentication.h │ ├── Categories │ │ ├── NSData+XMPP.h │ │ ├── NSData+XMPP.m │ │ ├── NSNumber+XMPP.h │ │ ├── NSNumber+XMPP.m │ │ ├── NSXMLElement+XMPP.h │ │ └── NSXMLElement+XMPP.m │ ├── Core │ │ ├── XMPP.h │ │ ├── XMPPElement.h │ │ ├── XMPPElement.m │ │ ├── XMPPIQ.h │ │ ├── XMPPIQ.m │ │ ├── XMPPInternal.h │ │ ├── XMPPJID.h │ │ ├── XMPPJID.m │ │ ├── XMPPLogging.h │ │ ├── XMPPMessage.h │ │ ├── XMPPMessage.m │ │ ├── XMPPModule.h │ │ ├── XMPPModule.m │ │ ├── XMPPParser.h │ │ ├── XMPPParser.m │ │ ├── XMPPPresence.h │ │ ├── XMPPPresence.m │ │ ├── XMPPStream.h │ │ └── XMPPStream.m │ ├── Extensions │ │ ├── BandwidthMonitor │ │ │ ├── XMPPBandwidthMonitor.h │ │ │ └── XMPPBandwidthMonitor.m │ │ ├── CoreDataStorage │ │ │ ├── XMPPCoreDataStorage.h │ │ │ ├── XMPPCoreDataStorage.m │ │ │ └── XMPPCoreDataStorageProtected.h │ │ ├── GoogleSharedStatus │ │ │ ├── XMPPGoogleSharedStatus.h │ │ │ └── XMPPGoogleSharedStatus.m │ │ ├── ProcessOne │ │ │ ├── XMPPProcessOne.h │ │ │ └── XMPPProcessOne.m │ │ ├── Reconnect │ │ │ ├── XMPPReconnect.h │ │ │ └── XMPPReconnect.m │ │ ├── Roster │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPGroupCoreDataStorageObject.h │ │ │ │ ├── XMPPGroupCoreDataStorageObject.m │ │ │ │ ├── XMPPResourceCoreDataStorageObject.h │ │ │ │ ├── XMPPResourceCoreDataStorageObject.m │ │ │ │ ├── XMPPRoster.xcdatamodel │ │ │ │ │ ├── elements │ │ │ │ │ └── layout │ │ │ │ ├── XMPPRosterCoreDataStorage.h │ │ │ │ ├── XMPPRosterCoreDataStorage.m │ │ │ │ ├── XMPPUserCoreDataStorageObject.h │ │ │ │ └── XMPPUserCoreDataStorageObject.m │ │ │ ├── MemoryStorage │ │ │ │ ├── XMPPResourceMemoryStorageObject.h │ │ │ │ ├── XMPPResourceMemoryStorageObject.m │ │ │ │ ├── XMPPRosterMemoryStorage.h │ │ │ │ ├── XMPPRosterMemoryStorage.m │ │ │ │ ├── XMPPRosterMemoryStoragePrivate.h │ │ │ │ ├── XMPPUserMemoryStorageObject.h │ │ │ │ └── XMPPUserMemoryStorageObject.m │ │ │ ├── XMPPResource.h │ │ │ ├── XMPPRoster.h │ │ │ ├── XMPPRoster.m │ │ │ ├── XMPPRosterPrivate.h │ │ │ └── XMPPUser.h │ │ ├── SystemInputActivityMonitor │ │ │ ├── XMPPSystemInputActivityMonitor.h │ │ │ └── XMPPSystemInputActivityMonitor.m │ │ ├── XEP-0009 │ │ │ ├── XMPPIQ+JabberRPC.h │ │ │ ├── XMPPIQ+JabberRPC.m │ │ │ ├── XMPPIQ+JabberRPCResonse.h │ │ │ ├── XMPPIQ+JabberRPCResonse.m │ │ │ ├── XMPPJabberRPCModule.h │ │ │ └── XMPPJabberRPCModule.m │ │ ├── XEP-0012 │ │ │ ├── XMPPIQ+LastActivity.h │ │ │ ├── XMPPIQ+LastActivity.m │ │ │ ├── XMPPLastActivity.h │ │ │ └── XMPPLastActivity.m │ │ ├── XEP-0016 │ │ │ ├── XMPPPrivacy.h │ │ │ └── XMPPPrivacy.m │ │ ├── XEP-0045 │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPRoom.xcdatamodeld │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ └── XMPPRoom.xcdatamodel │ │ │ │ │ │ └── contents │ │ │ │ ├── XMPPRoomCoreDataStorage.h │ │ │ │ ├── XMPPRoomCoreDataStorage.m │ │ │ │ ├── XMPPRoomMessageCoreDataStorageObject.h │ │ │ │ ├── XMPPRoomMessageCoreDataStorageObject.m │ │ │ │ ├── XMPPRoomOccupantCoreDataStorageObject.h │ │ │ │ └── XMPPRoomOccupantCoreDataStorageObject.m │ │ │ ├── HybridStorage │ │ │ │ ├── XMPPRoomHybrid.xcdatamodeld │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ └── XMPPRoomHybrid.xcdatamodel │ │ │ │ │ │ └── contents │ │ │ │ ├── XMPPRoomHybridStorage.h │ │ │ │ ├── XMPPRoomHybridStorage.m │ │ │ │ ├── XMPPRoomHybridStorageProtected.h │ │ │ │ ├── XMPPRoomMessageHybridCoreDataStorageObject.h │ │ │ │ ├── XMPPRoomMessageHybridCoreDataStorageObject.m │ │ │ │ ├── XMPPRoomOccupantHybridMemoryStorageObject.h │ │ │ │ └── XMPPRoomOccupantHybridMemoryStorageObject.m │ │ │ ├── MemoryStorage │ │ │ │ ├── XMPPRoomMemoryStorage.h │ │ │ │ ├── XMPPRoomMemoryStorage.m │ │ │ │ ├── XMPPRoomMessageMemoryStorageObject.h │ │ │ │ ├── XMPPRoomMessageMemoryStorageObject.m │ │ │ │ ├── XMPPRoomOccupantMemoryStorageObject.h │ │ │ │ └── XMPPRoomOccupantMemoryStorageObject.m │ │ │ ├── XMPPMUC.h │ │ │ ├── XMPPMUC.m │ │ │ ├── XMPPMessage+XEP0045.h │ │ │ ├── XMPPMessage+XEP0045.m │ │ │ ├── XMPPRoom.h │ │ │ ├── XMPPRoom.m │ │ │ ├── XMPPRoomMessage.h │ │ │ ├── XMPPRoomOccupant.h │ │ │ └── XMPPRoomPrivate.h │ │ ├── XEP-0054 │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPvCard.xcdatamodeld │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ └── XMPPvCard.xcdatamodel │ │ │ │ │ │ ├── elements │ │ │ │ │ │ └── layout │ │ │ │ ├── XMPPvCardAvatarCoreDataStorageObject.h │ │ │ │ ├── XMPPvCardAvatarCoreDataStorageObject.m │ │ │ │ ├── XMPPvCardCoreDataStorage.h │ │ │ │ ├── XMPPvCardCoreDataStorage.m │ │ │ │ ├── XMPPvCardCoreDataStorageObject.h │ │ │ │ ├── XMPPvCardCoreDataStorageObject.m │ │ │ │ ├── XMPPvCardTempCoreDataStorageObject.h │ │ │ │ └── XMPPvCardTempCoreDataStorageObject.m │ │ │ ├── XMPPvCardTemp.h │ │ │ ├── XMPPvCardTemp.m │ │ │ ├── XMPPvCardTempAdr.h │ │ │ ├── XMPPvCardTempAdr.m │ │ │ ├── XMPPvCardTempAdrTypes.h │ │ │ ├── XMPPvCardTempAdrTypes.m │ │ │ ├── XMPPvCardTempBase.h │ │ │ ├── XMPPvCardTempBase.m │ │ │ ├── XMPPvCardTempEmail.h │ │ │ ├── XMPPvCardTempEmail.m │ │ │ ├── XMPPvCardTempLabel.h │ │ │ ├── XMPPvCardTempLabel.m │ │ │ ├── XMPPvCardTempModule.h │ │ │ ├── XMPPvCardTempModule.m │ │ │ ├── XMPPvCardTempTel.h │ │ │ └── XMPPvCardTempTel.m │ │ ├── XEP-0059 │ │ │ ├── NSXMLElement+XEP_0059.h │ │ │ ├── NSXMLElement+XEP_0059.m │ │ │ ├── XMPPResultSet.h │ │ │ └── XMPPResultSet.m │ │ ├── XEP-0060 │ │ │ ├── XMPPIQ+XEP_0060.h │ │ │ ├── XMPPIQ+XEP_0060.m │ │ │ ├── XMPPPubSub.h │ │ │ └── XMPPPubSub.m │ │ ├── XEP-0065 │ │ │ ├── TURNSocket.h │ │ │ └── TURNSocket.m │ │ ├── XEP-0066 │ │ │ ├── XMPPIQ+XEP_0066.h │ │ │ ├── XMPPIQ+XEP_0066.m │ │ │ ├── XMPPMessage+XEP_0066.h │ │ │ └── XMPPMessage+XEP_0066.m │ │ ├── XEP-0082 │ │ │ ├── NSDate+XMPPDateTimeProfiles.h │ │ │ ├── NSDate+XMPPDateTimeProfiles.m │ │ │ ├── XMPPDateTimeProfiles.h │ │ │ └── XMPPDateTimeProfiles.m │ │ ├── XEP-0085 │ │ │ ├── XMPPMessage+XEP_0085.h │ │ │ └── XMPPMessage+XEP_0085.m │ │ ├── XEP-0092 │ │ │ ├── XMPPSoftwareVersion.h │ │ │ └── XMPPSoftwareVersion.m │ │ ├── XEP-0100 │ │ │ ├── XMPPTransports.h │ │ │ └── XMPPTransports.m │ │ ├── XEP-0106 │ │ │ ├── NSString+XEP_0106.h │ │ │ └── NSString+XEP_0106.m │ │ ├── XEP-0115 │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPCapabilities.xcdatamodel │ │ │ │ │ ├── elements │ │ │ │ │ └── layout │ │ │ │ ├── XMPPCapabilitiesCoreDataStorage.h │ │ │ │ ├── XMPPCapabilitiesCoreDataStorage.m │ │ │ │ ├── XMPPCapsCoreDataStorageObject.h │ │ │ │ ├── XMPPCapsCoreDataStorageObject.m │ │ │ │ ├── XMPPCapsResourceCoreDataStorageObject.h │ │ │ │ └── XMPPCapsResourceCoreDataStorageObject.m │ │ │ ├── XMPPCapabilities.h │ │ │ └── XMPPCapabilities.m │ │ ├── XEP-0136 │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPMessageArchiving.xcdatamodeld │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ └── XMPPMessageArchiving.xcdatamodel │ │ │ │ │ │ └── contents │ │ │ │ ├── XMPPMessageArchivingCoreDataStorage.h │ │ │ │ ├── XMPPMessageArchivingCoreDataStorage.m │ │ │ │ ├── XMPPMessageArchiving_Contact_CoreDataObject.h │ │ │ │ ├── XMPPMessageArchiving_Contact_CoreDataObject.m │ │ │ │ ├── XMPPMessageArchiving_Message_CoreDataObject.h │ │ │ │ └── XMPPMessageArchiving_Message_CoreDataObject.m │ │ │ ├── XMPPMessageArchiving.h │ │ │ └── XMPPMessageArchiving.m │ │ ├── XEP-0153 │ │ │ ├── XMPPvCardAvatarModule.h │ │ │ └── XMPPvCardAvatarModule.m │ │ ├── XEP-0172 │ │ │ ├── XMPPMessage+XEP_0172.h │ │ │ ├── XMPPMessage+XEP_0172.m │ │ │ ├── XMPPPresence+XEP_0172.h │ │ │ └── XMPPPresence+XEP_0172.m │ │ ├── XEP-0184 │ │ │ ├── XMPPMessage+XEP_0184.h │ │ │ ├── XMPPMessage+XEP_0184.m │ │ │ ├── XMPPMessageDeliveryReceipts.h │ │ │ └── XMPPMessageDeliveryReceipts.m │ │ ├── XEP-0191 │ │ │ ├── XMPPBlocking.h │ │ │ └── XMPPBlocking.m │ │ ├── XEP-0198 │ │ │ ├── Memory Storage │ │ │ │ ├── XMPPStreamManagementMemoryStorage.h │ │ │ │ └── XMPPStreamManagementMemoryStorage.m │ │ │ ├── Private │ │ │ │ ├── XMPPStreamManagementStanzas.h │ │ │ │ └── XMPPStreamManagementStanzas.m │ │ │ ├── XMPPStreamManagement.h │ │ │ └── XMPPStreamManagement.m │ │ ├── XEP-0199 │ │ │ ├── XMPPAutoPing.h │ │ │ ├── XMPPAutoPing.m │ │ │ ├── XMPPPing.h │ │ │ └── XMPPPing.m │ │ ├── XEP-0202 │ │ │ ├── XMPPAutoTime.h │ │ │ ├── XMPPAutoTime.m │ │ │ ├── XMPPTime.h │ │ │ └── XMPPTime.m │ │ ├── XEP-0203 │ │ │ ├── NSXMLElement+XEP_0203.h │ │ │ └── NSXMLElement+XEP_0203.m │ │ ├── XEP-0223 │ │ │ ├── XEP_0223.h │ │ │ └── XEP_0223.m │ │ ├── XEP-0224 │ │ │ ├── XMPPAttentionModule.h │ │ │ ├── XMPPAttentionModule.m │ │ │ ├── XMPPMessage+XEP_0224.h │ │ │ └── XMPPMessage+XEP_0224.m │ │ ├── XEP-0280 │ │ │ ├── XMPPMessage+XEP_0280.h │ │ │ ├── XMPPMessage+XEP_0280.m │ │ │ ├── XMPPMessageCarbons.h │ │ │ └── XMPPMessageCarbons.m │ │ ├── XEP-0297 │ │ │ ├── NSXMLElement+XEP_0297.h │ │ │ └── NSXMLElement+XEP_0297.m │ │ ├── XEP-0308 │ │ │ ├── XMPPMessage+XEP_0308.h │ │ │ └── XMPPMessage+XEP_0308.m │ │ ├── XEP-0333 │ │ │ ├── XMPPMessage+XEP_0333.h │ │ │ └── XMPPMessage+XEP_0333.m │ │ └── XEP-0335 │ │ │ ├── NSXMLElement+XEP_0335.h │ │ │ └── NSXMLElement+XEP_0335.m │ ├── README.markdown │ ├── Sample_XMPPFramework.h │ ├── Utilities │ │ ├── DDList.h │ │ ├── DDList.m │ │ ├── GCDMulticastDelegate.h │ │ ├── GCDMulticastDelegate.m │ │ ├── RFImageToDataTransformer.h │ │ ├── RFImageToDataTransformer.m │ │ ├── XMPPIDTracker.h │ │ ├── XMPPIDTracker.m │ │ ├── XMPPSRVResolver.h │ │ ├── XMPPSRVResolver.m │ │ ├── XMPPStringPrep.h │ │ ├── XMPPStringPrep.m │ │ ├── XMPPTimer.h │ │ └── XMPPTimer.m │ ├── Vendor │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncSocket.m │ │ ├── KissXML │ │ │ ├── Categories │ │ │ │ ├── NSString+DDXML.h │ │ │ │ └── NSString+DDXML.m │ │ │ ├── DDXML.h │ │ │ ├── DDXMLDocument.h │ │ │ ├── DDXMLDocument.m │ │ │ ├── DDXMLElement.h │ │ │ ├── DDXMLElement.m │ │ │ ├── DDXMLNode.h │ │ │ ├── DDXMLNode.m │ │ │ └── Private │ │ │ │ └── DDXMLPrivate.h │ │ └── libidn │ │ │ ├── build-libidn.sh │ │ │ ├── idn-int.h │ │ │ ├── libidn.a │ │ │ └── stringprep.h │ ├── Xcode │ │ ├── DesktopXMPP │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── ChatController.h │ │ │ ├── ChatController.m │ │ │ ├── English.lproj │ │ │ │ ├── ChatWindow.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ └── MucWindow.xib │ │ │ ├── Info.plist │ │ │ ├── MucController.h │ │ │ ├── MucController.m │ │ │ ├── RequestController.h │ │ │ ├── RequestController.m │ │ │ ├── RosterController.h │ │ │ ├── RosterController.m │ │ │ ├── SSKeychain │ │ │ │ ├── LICENSE │ │ │ │ ├── SSKeychain.h │ │ │ │ └── SSKeychain.m │ │ │ ├── WindowManager.h │ │ │ ├── WindowManager.m │ │ │ ├── XMPPFramework.h │ │ │ ├── XMPPStream.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── XMPPStream_Prefix.pch │ │ │ └── main.m │ │ ├── ServerlessDemo │ │ │ ├── Classes │ │ │ │ ├── BonjourClient.h │ │ │ │ ├── BonjourClient.m │ │ │ │ ├── ChatViewController.h │ │ │ │ ├── ChatViewController.m │ │ │ │ ├── ChatViewController.xib │ │ │ │ ├── RootViewController.h │ │ │ │ ├── RootViewController.m │ │ │ │ ├── ServerlessDemoAppDelegate.h │ │ │ │ └── ServerlessDemoAppDelegate.m │ │ │ ├── DDString.h │ │ │ ├── DDString.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── Images │ │ │ │ ├── BlueBubble.png │ │ │ │ ├── GreenBubble.png │ │ │ │ └── UnreadIndicator.png │ │ │ ├── MainWindow.xib │ │ │ ├── Message.h │ │ │ ├── Message.m │ │ │ ├── RootViewController.xib │ │ │ ├── ServerlessDemo-Info.plist │ │ │ ├── ServerlessDemo.xcdatamodel │ │ │ │ ├── elements │ │ │ │ └── layout │ │ │ ├── ServerlessDemo.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── ServerlessDemo_Prefix.pch │ │ │ ├── Service.h │ │ │ ├── Service.m │ │ │ ├── StreamController.h │ │ │ ├── StreamController.m │ │ │ └── main.m │ │ ├── Testing │ │ │ ├── AutoPingTest │ │ │ │ ├── Desktop │ │ │ │ │ ├── AutoPingTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── AutoPingTest │ │ │ │ │ │ ├── AutoPingTest-Info.plist │ │ │ │ │ │ ├── AutoPingTest-Prefix.pch │ │ │ │ │ │ ├── AutoPingTestAppDelegate.h │ │ │ │ │ │ ├── AutoPingTestAppDelegate.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── AutoPingTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── AutoPingTest │ │ │ │ │ │ ├── AutoPingTest-Info.plist │ │ │ │ │ │ ├── AutoPingTest-Prefix.pch │ │ │ │ │ │ ├── AutoPingTestAppDelegate.h │ │ │ │ │ │ ├── AutoPingTestAppDelegate.m │ │ │ │ │ │ ├── AutoPingTestViewController.h │ │ │ │ │ │ ├── AutoPingTestViewController.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── AutoPingTestViewController.xib │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainWindow.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── XMPPFramework.h │ │ │ ├── AutoTimeTest │ │ │ │ ├── Desktop │ │ │ │ │ ├── AutoTimeTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── AutoTimeTest │ │ │ │ │ │ ├── AutoTimeTest-Info.plist │ │ │ │ │ │ ├── AutoTimeTest-Prefix.pch │ │ │ │ │ │ ├── AutoTimeTestAppDelegate.h │ │ │ │ │ │ ├── AutoTimeTestAppDelegate.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── AutoTimeTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── AutoTimeTest │ │ │ │ │ │ ├── AutoTimeTest-Info.plist │ │ │ │ │ │ ├── AutoTimeTest-Prefix.pch │ │ │ │ │ │ ├── AutoTimeTestAppDelegate.h │ │ │ │ │ │ ├── AutoTimeTestAppDelegate.m │ │ │ │ │ │ ├── AutoTimeTestViewController.h │ │ │ │ │ │ ├── AutoTimeTestViewController.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── AutoTimeTestViewController.xib │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainWindow.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── XMPPFramework.h │ │ │ ├── EncodeDecodeTest │ │ │ │ ├── Desktop │ │ │ │ │ ├── EncodeDecodeTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── EncodeDecodeTest │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── EncodeDecodeTest-Info.plist │ │ │ │ │ │ ├── EncodeDecodeTest-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── Mobile │ │ │ │ │ ├── EncodeDecodeTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── EncodeDecodeTest │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── EncodeDecodeTest-Info.plist │ │ │ │ │ ├── EncodeDecodeTest-Prefix.pch │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── ViewController.xib │ │ │ │ │ └── main.m │ │ │ ├── FacebookTest │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── FacebookTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── FacebookTest │ │ │ │ │ ├── FacebookTest-Info.plist │ │ │ │ │ ├── FacebookTest-Prefix.pch │ │ │ │ │ ├── FacebookTestAppDelegate.h │ │ │ │ │ ├── FacebookTestAppDelegate.m │ │ │ │ │ ├── FacebookTestViewController.h │ │ │ │ │ ├── FacebookTestViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── FacebookTestViewController.xib │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainWindow.xib │ │ │ │ │ └── main.m │ │ │ ├── MUCTesting │ │ │ │ ├── MUCTesting.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── MUCTesting │ │ │ │ │ ├── MUCTesting-Info.plist │ │ │ │ │ ├── MUCTesting-Prefix.pch │ │ │ │ │ ├── MUCTestingAppDelegate.h │ │ │ │ │ ├── MUCTestingAppDelegate.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ │ └── XMPPFramework.h │ │ │ ├── MulticastDelegateTest │ │ │ │ ├── Desktop │ │ │ │ │ ├── MulticastDelegateTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── MulticastDelegateTest │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── MulticastDelegateTest-Info.plist │ │ │ │ │ │ ├── MulticastDelegateTest-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ ├── Mobile │ │ │ │ │ ├── MulticastDelegateTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── MulticastDelegateTest │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── MulticastDelegateTest-Info.plist │ │ │ │ │ │ ├── MulticastDelegateTest-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── main.m │ │ │ │ └── Shared │ │ │ │ │ ├── DelegateTesters.h │ │ │ │ │ ├── DelegateTesters.m │ │ │ │ │ ├── MulticastDelegateTest.h │ │ │ │ │ ├── MulticastDelegateTest.m │ │ │ │ │ └── MyProtocol.h │ │ │ ├── ParserTestMac │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── ParserTestMac-Info.plist │ │ │ │ ├── ParserTestMac.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── ParserTestMacAppDelegate.h │ │ │ │ ├── ParserTestMacAppDelegate.m │ │ │ │ ├── ParserTestMac_Prefix.pch │ │ │ │ └── main.m │ │ │ ├── ParserTestPhone │ │ │ │ ├── Classes │ │ │ │ │ ├── ParserTestPhoneAppDelegate.h │ │ │ │ │ └── ParserTestPhoneAppDelegate.m │ │ │ │ ├── MainWindow.xib │ │ │ │ ├── ParserTestPhone-Info.plist │ │ │ │ ├── ParserTestPhone.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── ParserTestPhone_Prefix.pch │ │ │ │ └── main.m │ │ │ ├── TestCapabilitiesHashing │ │ │ │ ├── Mac │ │ │ │ │ └── TestCapabilitiesHashing │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ ├── TestCapabilitiesHashing-Info.plist │ │ │ │ │ │ ├── TestCapabilitiesHashing.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ ├── TestCapabilitiesHashing_Prefix.pch │ │ │ │ │ │ └── main.m │ │ │ │ ├── TestCapabilitiesHashingAppDelegate.h │ │ │ │ ├── TestCapabilitiesHashingAppDelegate.m │ │ │ │ └── iPhone │ │ │ │ │ └── TestCapabilitiesHashing │ │ │ │ │ ├── Classes │ │ │ │ │ ├── TestCapabilitiesHashingViewController.h │ │ │ │ │ └── TestCapabilitiesHashingViewController.m │ │ │ │ │ ├── MainWindow.xib │ │ │ │ │ ├── TestCapabilitiesHashing-Info.plist │ │ │ │ │ ├── TestCapabilitiesHashing.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── TestCapabilitiesHashingViewController.xib │ │ │ │ │ ├── TestCapabilitiesHashing_Prefix.pch │ │ │ │ │ └── main.m │ │ │ ├── TestDDList │ │ │ │ ├── TestDDList.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── TestDDList │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── TestDDList-Info.plist │ │ │ │ │ ├── TestDDList-Prefix.pch │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ ├── TestElementReceipt │ │ │ │ ├── TestElementReceipt.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── TestElementReceipt │ │ │ │ │ ├── TestElementReceipt-Info.plist │ │ │ │ │ ├── TestElementReceipt-Prefix.pch │ │ │ │ │ ├── TestElementReceiptAppDelegate.h │ │ │ │ │ ├── TestElementReceiptAppDelegate.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ ├── TestIDTracker │ │ │ │ ├── TestIDTracker.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── TestIDTracker │ │ │ │ │ ├── TestIDTracker-Info.plist │ │ │ │ │ ├── TestIDTracker-Prefix.pch │ │ │ │ │ ├── TestIDTrackerAppDelegate.h │ │ │ │ │ ├── TestIDTrackerAppDelegate.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ ├── TestJID │ │ │ │ ├── Desktop │ │ │ │ │ ├── TestJID.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── TestJID │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── TestJID-Info.plist │ │ │ │ │ │ ├── TestJID-Prefix.pch │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ └── main.m │ │ │ │ └── Mobile │ │ │ │ │ ├── TestJID.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── TestJID │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── TestJID-Info.plist │ │ │ │ │ ├── TestJID-Prefix.pch │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── main.m │ │ │ ├── TestSRVResolver │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── TestSRVResolver-Info.plist │ │ │ │ ├── TestSRVResolver.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── TestSRVResolverAppDelegate.h │ │ │ │ ├── TestSRVResolverAppDelegate.m │ │ │ │ ├── TestSRVResolver_Prefix.pch │ │ │ │ └── main.m │ │ │ ├── TestXEP82 │ │ │ │ ├── Mac │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── TestXEP82-Info.plist │ │ │ │ │ ├── TestXEP82.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── TestXEP82AppDelegate.h │ │ │ │ │ ├── TestXEP82AppDelegate.m │ │ │ │ │ ├── TestXEP82_Prefix.pch │ │ │ │ │ └── main.m │ │ │ │ ├── TestXEP82.h │ │ │ │ ├── TestXEP82.m │ │ │ │ └── iOS │ │ │ │ │ ├── TestXEP82.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── TestXEP82 │ │ │ │ │ ├── TestXEP82-Info.plist │ │ │ │ │ ├── TestXEP82-Prefix.pch │ │ │ │ │ ├── TestXEP82AppDelegate.h │ │ │ │ │ ├── TestXEP82AppDelegate.m │ │ │ │ │ ├── TestXEP82ViewController.h │ │ │ │ │ ├── TestXEP82ViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainWindow.xib │ │ │ │ │ └── TestXEP82ViewController.xib │ │ │ │ │ └── main.m │ │ │ └── XMPPTesting.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── iPhoneXMPP │ │ │ ├── Classes │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.m │ │ │ ├── SettingsViewController.h │ │ │ ├── SettingsViewController.m │ │ │ ├── SettingsViewController.xib │ │ │ ├── XMPPFramework.h │ │ │ ├── iPhoneXMPPAppDelegate.h │ │ │ └── iPhoneXMPPAppDelegate.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── MainWindow.xib │ │ │ ├── RootViewController.xib │ │ │ ├── defaultPerson.png │ │ │ ├── iPhoneXMPP-Info.plist │ │ │ ├── iPhoneXMPP.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── iPhoneXMPP_Prefix.pch │ │ │ └── main.m │ └── copying.txt ├── brandonemrich │ ├── CLLocation+NSDictionary.h │ ├── CLLocation+NSDictionary.m │ ├── LICENSE │ └── README └── iCal4ObjC │ ├── LICENSE │ ├── README │ └── iCalObjCSDK │ ├── CGICalendar.h │ ├── CGICalendar.m │ ├── CGICalendarComponent.h │ ├── CGICalendarComponent.m │ ├── CGICalendarContentLine.h │ ├── CGICalendarContentLine.m │ ├── CGICalendarObject.h │ ├── CGICalendarObject.m │ ├── CGICalendarParameter.h │ ├── CGICalendarParameter.m │ ├── CGICalendarProperty.h │ ├── CGICalendarProperty.m │ ├── CGICalendarValue.h │ ├── CGICalendarValue.m │ ├── NSDate+CGICalendar.h │ └── NSDate+CGICalendar.m └── tooling └── docs-automation.d └── 01-generate-docs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Cloud Storage paper.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/Cloud Storage paper.pages -------------------------------------------------------------------------------- /Documentation/KAPS state.drawing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/KAPS state.drawing -------------------------------------------------------------------------------- /Documentation/KDF.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/KDF.graffle -------------------------------------------------------------------------------- /Documentation/Key Expansion.drawing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/Key Expansion.drawing -------------------------------------------------------------------------------- /Documentation/Messaging Ecosystem Overview.pages/Metadata/DocumentIdentifier: -------------------------------------------------------------------------------- 1 | AFE40021-365A-42DE-BF3C-E744E9DB3A8A -------------------------------------------------------------------------------- /Documentation/SCIMP 2.0 Sildes.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCIMP 2.0 Sildes.key -------------------------------------------------------------------------------- /Documentation/SCIMP API.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCIMP API.pages -------------------------------------------------------------------------------- /Documentation/SCIMP paper.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCIMP paper.pages -------------------------------------------------------------------------------- /Documentation/SCIMP proto1.drawing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCIMP proto1.drawing -------------------------------------------------------------------------------- /Documentation/SCIMP slides.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCIMP slides.key -------------------------------------------------------------------------------- /Documentation/SCloud slides.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/SCloud slides.key -------------------------------------------------------------------------------- /Documentation/Siren Spec.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/Siren Spec.pages -------------------------------------------------------------------------------- /Documentation/TextFilesToPublish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/TextFilesToPublish.txt -------------------------------------------------------------------------------- /Documentation/gcrypt to tommath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/gcrypt to tommath -------------------------------------------------------------------------------- /Documentation/libTomCryptDoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/libTomCryptDoc.pdf -------------------------------------------------------------------------------- /Documentation/scimplib flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Documentation/scimplib flow.graffle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/libidn/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/config.h -------------------------------------------------------------------------------- /Libraries/libidn/src/gunicomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/gunicomp.h -------------------------------------------------------------------------------- /Libraries/libidn/src/gunidecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/gunidecomp.h -------------------------------------------------------------------------------- /Libraries/libidn/src/idn-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/idn-int.h -------------------------------------------------------------------------------- /Libraries/libidn/src/nfkc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/nfkc.c -------------------------------------------------------------------------------- /Libraries/libidn/src/profiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/profiles.c -------------------------------------------------------------------------------- /Libraries/libidn/src/rfc3454.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/rfc3454.c -------------------------------------------------------------------------------- /Libraries/libidn/src/stringprep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/stringprep.c -------------------------------------------------------------------------------- /Libraries/libidn/src/stringprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/stringprep.h -------------------------------------------------------------------------------- /Libraries/libidn/src/strverscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/strverscmp.c -------------------------------------------------------------------------------- /Libraries/libidn/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/utils.c -------------------------------------------------------------------------------- /Libraries/libidn/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/utils.h -------------------------------------------------------------------------------- /Libraries/libidn/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/libidn/src/version.c -------------------------------------------------------------------------------- /Libraries/openssl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/.gitignore -------------------------------------------------------------------------------- /Libraries/openssl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/.travis.yml -------------------------------------------------------------------------------- /Libraries/openssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/README.md -------------------------------------------------------------------------------- /Libraries/openssl/build-libssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/build-libssl.sh -------------------------------------------------------------------------------- /Libraries/openssl/include/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/LICENSE -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/aes.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/bio.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/cms.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/des.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/dh.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/dsa.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/dso.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/ec.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/err.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/evp.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/md4.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/md5.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/pem.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/rc2.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/rc4.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/rsa.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/srp.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/ssl.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/ts.h -------------------------------------------------------------------------------- /Libraries/openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/include/openssl/ui.h -------------------------------------------------------------------------------- /Libraries/openssl/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/lib/libcrypto.a -------------------------------------------------------------------------------- /Libraries/openssl/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/openssl/lib/libssl.a -------------------------------------------------------------------------------- /Libraries/sccrypto/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/.cproject -------------------------------------------------------------------------------- /Libraries/sccrypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/.gitignore -------------------------------------------------------------------------------- /Libraries/sccrypto/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/.project -------------------------------------------------------------------------------- /Libraries/sccrypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/LICENSE -------------------------------------------------------------------------------- /Libraries/sccrypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/Makefile -------------------------------------------------------------------------------- /Libraries/sccrypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/README.md -------------------------------------------------------------------------------- /Libraries/sccrypto/src/main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/main/Android.mk -------------------------------------------------------------------------------- /Libraries/sccrypto/src/main/jni/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/main/jni/jni.c -------------------------------------------------------------------------------- /Libraries/sccrypto/src/main/yajl/yajl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/main/yajl/yajl.c -------------------------------------------------------------------------------- /Libraries/sccrypto/src/optest/CCMtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/optest/CCMtest.c -------------------------------------------------------------------------------- /Libraries/sccrypto/src/optest/ECCtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/optest/ECCtest.c -------------------------------------------------------------------------------- /Libraries/sccrypto/src/optest/P2Ktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Libraries/sccrypto/src/optest/P2Ktest.c -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/CocoaLumberjack/LICENSE.txt -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Lumberjack/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Lumberjack/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/CocoaLumberjack/Lumberjack/DDLog.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/CocoaLumberjack/README.md -------------------------------------------------------------------------------- /Pods/DAKeyboardControl/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/DAKeyboardControl/LICENSE.md -------------------------------------------------------------------------------- /Pods/DAKeyboardControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/DAKeyboardControl/README.md -------------------------------------------------------------------------------- /Pods/ECPhoneNumberFormatter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ECPhoneNumberFormatter/LICENSE -------------------------------------------------------------------------------- /Pods/ECPhoneNumberFormatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ECPhoneNumberFormatter/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDAssert.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDAssert.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DAKeyboardControl/DAKeyboardControl.h: -------------------------------------------------------------------------------- 1 | ../../../DAKeyboardControl/DAKeyboardControl/DAKeyboardControl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/NSStringEmojize/NSString+Emojize.h: -------------------------------------------------------------------------------- 1 | ../../../NSStringEmojize/NSStringEmojize/NSString+Emojize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OHAlertView/OHAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../OHAlertView/OHAlertView/OHAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SQLCipher/sqlite3.h: -------------------------------------------------------------------------------- 1 | ../../../SQLCipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TITokenField/TITokenField.h: -------------------------------------------------------------------------------- 1 | ../../../TITokenField/TITokenField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YRDropdownView/YRDropdownView.h: -------------------------------------------------------------------------------- 1 | ../../../YRDropdownView/YRDropdownView/YRDropdownView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/NSDictionary+YapDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/NSDictionary+YapDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKAttachRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Internal/YDBCKAttachRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKChangeQueue.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Internal/YDBCKChangeQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKChangeRecord.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Internal/YDBCKChangeRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKChangeSet.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKChangeSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKMergeInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKMergeInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKRecord.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YDBCKRecordInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKRecordInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapCache.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapCollectionKey.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapCollectionKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseCloudKit.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/YapDatabaseCloudKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseCloudKitTypes.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/YapDatabaseCloudKitTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseConnection.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseConnectionDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseConnectionDefaults.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseConnectionState.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseConnectionState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseExtension.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Protocol/YapDatabaseExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseHooks.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Hooks/YapDatabaseHooks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseLogging.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseManager.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseOptions.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabasePrivate.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabasePrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseQuery.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapDatabaseQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseStatement.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseStatement.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseString.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDatabaseString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseView.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseViewConnection.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseViewConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseViewOptions.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseViewOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseViewPage.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/Internal/YapDatabaseViewPage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseViewState.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/Internal/YapDatabaseViewState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDatabaseViewTypes.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseViewTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapDebugDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapDebugDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapMemoryTable.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapMemoryTable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapMurmurHash.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapMurmurHash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapNull.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapNull.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapRowidSet.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapRowidSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapSet.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapTouch.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Internal/YapTouch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YapDatabase/YapWhitelistBlacklist.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapWhitelistBlacklist.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBDateMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDateMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBDictionaryMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDictionaryMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBDigitsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDigitsMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBEntropyCenter.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBEntropyCenter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBL33tMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBL33tMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBPasswordStrength.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPasswordStrength.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBPattern.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPattern.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBPatternCenter.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPatternCenter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPatternMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBRegularExpressionMatchHelper.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBRegularExpressionMatchHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBRepeatMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBRepeatMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBSequenceMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBSequenceMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBSpatialMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBSpatialMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/BBYearMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBYearMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZXCVBN/ZXCVBN.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/ZXCVBN.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/bitstream.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/bitstream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/config.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/config.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/mask.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mask.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/mmask.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mmask.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/mqrspec.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mqrspec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/qrencode.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrencode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/qrinput.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrinput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/qrspec.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrspec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/rscode.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/rscode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libqrencode/split.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/split.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZAESDecryptInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZAESDecryptInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZArchive.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchive.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZConstants.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZDataChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZDataChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZDataProvider.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZDeflateOutputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDeflateOutputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZError.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZFileChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZFileChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZFileChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZFileChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZHeaders.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZHeaders.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZInflateInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZInflateInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZNewArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZNewArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZNewArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZNewArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZOldArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZOldArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZOldArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZOldArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZScopeGuard.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZScopeGuard.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZStandardCryptoEngine.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStandardCryptoEngine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZStandardDecryptInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStandardDecryptInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/ZZStoreOutputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStoreOutputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/zipzap/zipzap.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/zipzap.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAssert.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDAssert.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DAKeyboardControl/DAKeyboardControl.h: -------------------------------------------------------------------------------- 1 | ../../../DAKeyboardControl/DAKeyboardControl/DAKeyboardControl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/NSStringEmojize/NSString+Emojize.h: -------------------------------------------------------------------------------- 1 | ../../../NSStringEmojize/NSStringEmojize/NSString+Emojize.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OHAlertView/OHAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../OHAlertView/OHAlertView/OHAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SQLCipher/sqlite3.h: -------------------------------------------------------------------------------- 1 | ../../../SQLCipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TITokenField/TITokenField.h: -------------------------------------------------------------------------------- 1 | ../../../TITokenField/TITokenField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YRDropdownView/YRDropdownView.h: -------------------------------------------------------------------------------- 1 | ../../../YRDropdownView/YRDropdownView/YRDropdownView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YDBCKChangeSet.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKChangeSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YDBCKMergeInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKMergeInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YDBCKRecord.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YDBCKRecordInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/Utilities/YDBCKRecordInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapCache.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapCollectionKey.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapCollectionKey.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseCloudKit.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/YapDatabaseCloudKit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseCloudKitTypes.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/CloudKit/YapDatabaseCloudKitTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseConnection.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseExtension.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Protocol/YapDatabaseExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseHooks.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Hooks/YapDatabaseHooks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseHooksConnection.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Hooks/YapDatabaseHooksConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseOptions.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseQuery.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapDatabaseQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseSearchQueue.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/SearchResults/YapDatabaseSearchQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/YapDatabaseTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseView.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseViewOptions.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseViewOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapDatabaseViewTypes.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Extensions/Views/YapDatabaseViewTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapMurmurHash.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapMurmurHash.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapSet.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YapDatabase/YapWhitelistBlacklist.h: -------------------------------------------------------------------------------- 1 | ../../../YapDatabase/YapDatabase/Utilities/YapWhitelistBlacklist.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBDateMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDateMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBDictionaryMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDictionaryMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBDigitsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBDigitsMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBEntropyCenter.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBEntropyCenter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBL33tMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBL33tMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBPasswordStrength.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPasswordStrength.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBPattern.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPattern.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBPatternCenter.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPatternCenter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBPatternMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBRegularExpressionMatchHelper.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBRegularExpressionMatchHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBRepeatMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBRepeatMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBSequenceMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBSequenceMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBSpatialMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBSpatialMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/BBYearMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/BBYearMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZXCVBN/ZXCVBN.h: -------------------------------------------------------------------------------- 1 | ../../../ZXCVBN/ZXCVBN/ZXCVBN.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/bitstream.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/bitstream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/config.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/config.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/mask.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mask.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/mmask.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mmask.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/mqrspec.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/mqrspec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/qrencode.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrencode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/qrinput.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrinput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/qrspec.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/qrspec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/rscode.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/rscode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libqrencode/split.h: -------------------------------------------------------------------------------- 1 | ../../../libqrencode/split.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZAESDecryptInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZAESDecryptInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZArchive.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchive.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZConstants.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZDataChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZDataChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZDataProvider.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDataProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZDeflateOutputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZDeflateOutputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZError.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZFileChannel.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZFileChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZFileChannelOutput.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZFileChannelOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZHeaders.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZHeaders.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZInflateInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZInflateInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZNewArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZNewArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZNewArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZNewArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZOldArchiveEntry.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZOldArchiveEntry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZOldArchiveEntryWriter.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZOldArchiveEntryWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZScopeGuard.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZScopeGuard.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZStandardCryptoEngine.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStandardCryptoEngine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZStandardDecryptInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStandardDecryptInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/ZZStoreOutputStream.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/ZZStoreOutputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/zipzap/zipzap.h: -------------------------------------------------------------------------------- 1 | ../../../zipzap/zipzap/zipzap.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/NSStringEmojize/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/NSStringEmojize/LICENSE.md -------------------------------------------------------------------------------- /Pods/NSStringEmojize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/NSStringEmojize/README.md -------------------------------------------------------------------------------- /Pods/OHAlertView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/OHAlertView/LICENSE -------------------------------------------------------------------------------- /Pods/OHAlertView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/OHAlertView/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Reachability/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Reachability/LICENCE.txt -------------------------------------------------------------------------------- /Pods/Reachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Reachability/README.md -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/Reachability/Reachability.m -------------------------------------------------------------------------------- /Pods/SQLCipher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/SQLCipher/LICENSE -------------------------------------------------------------------------------- /Pods/SQLCipher/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/SQLCipher/README -------------------------------------------------------------------------------- /Pods/SQLCipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/SQLCipher/README.md -------------------------------------------------------------------------------- /Pods/SQLCipher/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/SQLCipher/sqlite3.c -------------------------------------------------------------------------------- /Pods/SQLCipher/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/SQLCipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/TITokenField/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/TITokenField/README.markdown -------------------------------------------------------------------------------- /Pods/TITokenField/TITokenField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/TITokenField/TITokenField.h -------------------------------------------------------------------------------- /Pods/TITokenField/TITokenField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/TITokenField/TITokenField.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-CocoaLumberjack/Pods-ST2-CocoaLumberjack.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-DAKeyboardControl/Pods-ST2-DAKeyboardControl.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-ECPhoneNumberFormatter/Pods-ST2-ECPhoneNumberFormatter.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-MSCMoreOptionTableViewCell/Pods-ST2-MSCMoreOptionTableViewCell.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-TITokenField/Pods-ST2-TITokenField.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-YRDropdownView/Pods-ST2-YRDropdownView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-ZXCVBN/Pods-ST2-ZXCVBN.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ST2-libqrencode/Pods-ST2-libqrencode.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/YRDropdownView/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/YRDropdownView/LICENSE.md -------------------------------------------------------------------------------- /Pods/YRDropdownView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/YRDropdownView/README.md -------------------------------------------------------------------------------- /Pods/YapDatabase/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/YapDatabase/LICENSE.txt -------------------------------------------------------------------------------- /Pods/YapDatabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/YapDatabase/README.md -------------------------------------------------------------------------------- /Pods/ZXCVBN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/LICENSE -------------------------------------------------------------------------------- /Pods/ZXCVBN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/README.md -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBDateMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBDateMatcher.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBDateMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBDateMatcher.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBDigitsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBDigitsMatcher.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBDigitsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBDigitsMatcher.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBEntropyCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBEntropyCenter.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBEntropyCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBEntropyCenter.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBL33tMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBL33tMatcher.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBL33tMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBL33tMatcher.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBPattern.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBPattern.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBPatternCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBPatternCenter.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBPatternCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBPatternCenter.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBRepeatMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBRepeatMatcher.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBRepeatMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBRepeatMatcher.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBYearMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBYearMatcher.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/BBYearMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/BBYearMatcher.m -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/ZXCVBN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/ZXCVBN.h -------------------------------------------------------------------------------- /Pods/ZXCVBN/ZXCVBN/ZXCVBN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/ZXCVBN/ZXCVBN/ZXCVBN.m -------------------------------------------------------------------------------- /Pods/libqrencode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/README -------------------------------------------------------------------------------- /Pods/libqrencode/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/bitstream.c -------------------------------------------------------------------------------- /Pods/libqrencode/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/bitstream.h -------------------------------------------------------------------------------- /Pods/libqrencode/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/config.h -------------------------------------------------------------------------------- /Pods/libqrencode/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mask.c -------------------------------------------------------------------------------- /Pods/libqrencode/mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mask.h -------------------------------------------------------------------------------- /Pods/libqrencode/mmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mmask.c -------------------------------------------------------------------------------- /Pods/libqrencode/mmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mmask.h -------------------------------------------------------------------------------- /Pods/libqrencode/mqrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mqrspec.c -------------------------------------------------------------------------------- /Pods/libqrencode/mqrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/mqrspec.h -------------------------------------------------------------------------------- /Pods/libqrencode/qrencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrencode.c -------------------------------------------------------------------------------- /Pods/libqrencode/qrencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrencode.h -------------------------------------------------------------------------------- /Pods/libqrencode/qrinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrinput.c -------------------------------------------------------------------------------- /Pods/libqrencode/qrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrinput.h -------------------------------------------------------------------------------- /Pods/libqrencode/qrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrspec.c -------------------------------------------------------------------------------- /Pods/libqrencode/qrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/qrspec.h -------------------------------------------------------------------------------- /Pods/libqrencode/rscode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/rscode.c -------------------------------------------------------------------------------- /Pods/libqrencode/rscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/rscode.h -------------------------------------------------------------------------------- /Pods/libqrencode/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/split.c -------------------------------------------------------------------------------- /Pods/libqrencode/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/libqrencode/split.h -------------------------------------------------------------------------------- /Pods/zipzap/LICENSE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/LICENSE.text -------------------------------------------------------------------------------- /Pods/zipzap/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/README.markdown -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZArchive.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZArchive.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZArchive.mm -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZArchiveEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZArchiveEntry.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZArchiveEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZArchiveEntry.m -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZChannel.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZChannelOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZChannelOutput.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZConstants.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZConstants.m -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZDataChannel.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZDataChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZDataChannel.m -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZDataProvider.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZError.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZError.m -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZFileChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZFileChannel.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZFileChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZFileChannel.m -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZHeaders.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/ZZScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/ZZScopeGuard.h -------------------------------------------------------------------------------- /Pods/zipzap/zipzap/zipzap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Pods/zipzap/zipzap/zipzap.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/README.md -------------------------------------------------------------------------------- /ST2/Activation/Activation.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/Activation.storyboard -------------------------------------------------------------------------------- /ST2/Activation/ActivationButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/ActivationButton.h -------------------------------------------------------------------------------- /ST2/Activation/ActivationButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/ActivationButton.m -------------------------------------------------------------------------------- /ST2/Activation/DRDynamicSlideShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/DRDynamicSlideShow.h -------------------------------------------------------------------------------- /ST2/Activation/DRDynamicSlideShow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/DRDynamicSlideShow.m -------------------------------------------------------------------------------- /ST2/Activation/LogInViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/LogInViewController.h -------------------------------------------------------------------------------- /ST2/Activation/LogInViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Activation/LogInViewController.m -------------------------------------------------------------------------------- /ST2/App/ActivationBaseVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ActivationBaseVC.h -------------------------------------------------------------------------------- /ST2/App/ActivationBaseVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ActivationBaseVC.m -------------------------------------------------------------------------------- /ST2/App/ActivationVCDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ActivationVCDelegate.h -------------------------------------------------------------------------------- /ST2/App/AppConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppConstants.h -------------------------------------------------------------------------------- /ST2/App/AppConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppConstants.m -------------------------------------------------------------------------------- /ST2/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppDelegate.h -------------------------------------------------------------------------------- /ST2/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppDelegate.m -------------------------------------------------------------------------------- /ST2/App/AppTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppTheme.h -------------------------------------------------------------------------------- /ST2/App/AppTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/AppTheme.m -------------------------------------------------------------------------------- /ST2/App/MZActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/MZActionSheet.h -------------------------------------------------------------------------------- /ST2/App/MZActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/MZActionSheet.m -------------------------------------------------------------------------------- /ST2/App/STMigrationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/STMigrationManager.h -------------------------------------------------------------------------------- /ST2/App/STMigrationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/STMigrationManager.m -------------------------------------------------------------------------------- /ST2/App/SilentTextStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/SilentTextStrings.h -------------------------------------------------------------------------------- /ST2/App/ThemeImages/Blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/Blue.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/Wallp-linen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/Wallp-linen.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/bluesky@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/bluesky@2x.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/green.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/green.jpeg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/mesh@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/mesh@2x.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/pink.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/pink.jpeg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/sand.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/sand@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/sand@2x.jpg -------------------------------------------------------------------------------- /ST2/App/ThemeImages/wispysky@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/ThemeImages/wispysky@2x.jpg -------------------------------------------------------------------------------- /ST2/App/XplatformUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/XplatformUI.h -------------------------------------------------------------------------------- /ST2/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/App/main.m -------------------------------------------------------------------------------- /ST2/Audio/AudioPlaybackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/AudioPlaybackView.h -------------------------------------------------------------------------------- /ST2/Audio/AudioPlaybackView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/AudioPlaybackView.m -------------------------------------------------------------------------------- /ST2/Audio/AudioPlaybackView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/AudioPlaybackView.xib -------------------------------------------------------------------------------- /ST2/Audio/STAudioView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/STAudioView.h -------------------------------------------------------------------------------- /ST2/Audio/STAudioView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/STAudioView.m -------------------------------------------------------------------------------- /ST2/Audio/audioPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/audioPlayerController.h -------------------------------------------------------------------------------- /ST2/Audio/audioPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/audioPlayerController.m -------------------------------------------------------------------------------- /ST2/Audio/bluecenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/bluecenter.png -------------------------------------------------------------------------------- /ST2/Audio/bluecenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/bluecenter@2x.png -------------------------------------------------------------------------------- /ST2/Audio/controlbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/controlbar@2x.png -------------------------------------------------------------------------------- /ST2/Audio/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/forward@2x.png -------------------------------------------------------------------------------- /ST2/Audio/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/pause@2x.png -------------------------------------------------------------------------------- /ST2/Audio/play-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/play-active.png -------------------------------------------------------------------------------- /ST2/Audio/play-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/play-active@2x.png -------------------------------------------------------------------------------- /ST2/Audio/play-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/play-inactive.png -------------------------------------------------------------------------------- /ST2/Audio/play-inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/play-inactive@2x.png -------------------------------------------------------------------------------- /ST2/Audio/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/play@2x.png -------------------------------------------------------------------------------- /ST2/Audio/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/playing.png -------------------------------------------------------------------------------- /ST2/Audio/playing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/playing@2x.png -------------------------------------------------------------------------------- /ST2/Audio/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/record.png -------------------------------------------------------------------------------- /ST2/Audio/record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/record@2x.png -------------------------------------------------------------------------------- /ST2/Audio/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/recording.png -------------------------------------------------------------------------------- /ST2/Audio/recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/recording@2x.png -------------------------------------------------------------------------------- /ST2/Audio/redcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/redcenter.png -------------------------------------------------------------------------------- /ST2/Audio/redcenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/redcenter@2x.png -------------------------------------------------------------------------------- /ST2/Audio/reset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/reset@2x.png -------------------------------------------------------------------------------- /ST2/Audio/rewind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Audio/rewind@2x.png -------------------------------------------------------------------------------- /ST2/AvatarView/SCTAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/AvatarView/SCTAvatarView.h -------------------------------------------------------------------------------- /ST2/AvatarView/SCTAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/AvatarView/SCTAvatarView.m -------------------------------------------------------------------------------- /ST2/AvatarView/SCTAvatarView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/AvatarView/SCTAvatarView.xib -------------------------------------------------------------------------------- /ST2/Camera/SCCameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Camera/SCCameraViewController.h -------------------------------------------------------------------------------- /ST2/Camera/SCCameraViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Camera/SCCameraViewController.m -------------------------------------------------------------------------------- /ST2/Categories/ALAsset+SCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/ALAsset+SCUtilities.h -------------------------------------------------------------------------------- /ST2/Categories/ALAsset+SCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/ALAsset+SCUtilities.m -------------------------------------------------------------------------------- /ST2/Categories/NSDate+SCDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSDate+SCDate.h -------------------------------------------------------------------------------- /ST2/Categories/NSDate+SCDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSDate+SCDate.m -------------------------------------------------------------------------------- /ST2/Categories/NSNumber+Filesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSNumber+Filesize.h -------------------------------------------------------------------------------- /ST2/Categories/NSNumber+Filesize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSNumber+Filesize.m -------------------------------------------------------------------------------- /ST2/Categories/NSURL+SCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSURL+SCUtilities.h -------------------------------------------------------------------------------- /ST2/Categories/NSURL+SCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/NSURL+SCUtilities.m -------------------------------------------------------------------------------- /ST2/Categories/STMessage+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/STMessage+Utilities.h -------------------------------------------------------------------------------- /ST2/Categories/STMessage+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/STMessage+Utilities.m -------------------------------------------------------------------------------- /ST2/Categories/UIColor+Blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIColor+Blender.h -------------------------------------------------------------------------------- /ST2/Categories/UIColor+Blender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIColor+Blender.m -------------------------------------------------------------------------------- /ST2/Categories/UIColor-Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIColor-Expanded.h -------------------------------------------------------------------------------- /ST2/Categories/UIColor-Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIColor-Expanded.m -------------------------------------------------------------------------------- /ST2/Categories/UIImage+Crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+Crop.h -------------------------------------------------------------------------------- /ST2/Categories/UIImage+Crop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+Crop.m -------------------------------------------------------------------------------- /ST2/Categories/UIImage+Thumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+Thumbnail.h -------------------------------------------------------------------------------- /ST2/Categories/UIImage+Thumbnail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+Thumbnail.m -------------------------------------------------------------------------------- /ST2/Categories/UIImage+maskColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+maskColor.h -------------------------------------------------------------------------------- /ST2/Categories/UIImage+maskColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIImage+maskColor.m -------------------------------------------------------------------------------- /ST2/Categories/UIScrollView+Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIScrollView+Util.h -------------------------------------------------------------------------------- /ST2/Categories/UIScrollView+Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/UIScrollView+Util.m -------------------------------------------------------------------------------- /ST2/Categories/XMPPJID+AddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/XMPPJID+AddressBook.h -------------------------------------------------------------------------------- /ST2/Categories/XMPPJID+AddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Categories/XMPPJID+AddressBook.m -------------------------------------------------------------------------------- /ST2/ConversationView/BBCell/BBCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ConversationView/BBCell/BBCell.h -------------------------------------------------------------------------------- /ST2/ConversationView/BBCell/BBCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ConversationView/BBCell/BBCell.m -------------------------------------------------------------------------------- /ST2/Custom/STDynamicHeightView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Custom/STDynamicHeightView.h -------------------------------------------------------------------------------- /ST2/Custom/STDynamicHeightView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Custom/STDynamicHeightView.m -------------------------------------------------------------------------------- /ST2/GeoTracking/GeoTracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/GeoTracking/GeoTracking.h -------------------------------------------------------------------------------- /ST2/GeoTracking/GeoTracking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/GeoTracking/GeoTracking.m -------------------------------------------------------------------------------- /ST2/Help/HelpDetailsVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/HelpDetailsVC.h -------------------------------------------------------------------------------- /ST2/Help/HelpDetailsVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/HelpDetailsVC.m -------------------------------------------------------------------------------- /ST2/Help/HelpDetailsVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/HelpDetailsVC.xib -------------------------------------------------------------------------------- /ST2/Help/SCTHelpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/SCTHelpButton.h -------------------------------------------------------------------------------- /ST2/Help/SCTHelpButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/SCTHelpButton.m -------------------------------------------------------------------------------- /ST2/Help/SCTHelpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/SCTHelpManager.h -------------------------------------------------------------------------------- /ST2/Help/SCTHelpManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Help/SCTHelpManager.m -------------------------------------------------------------------------------- /ST2/Images/37x-Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/37x-Checkmark.png -------------------------------------------------------------------------------- /ST2/Images/37x-Checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/37x-Checkmark@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon29x29.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon40x40.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon50x50.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon50x50@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon57x57.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon57x57@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon60x60.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon72x72.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon72x72@2x.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon76x76.png -------------------------------------------------------------------------------- /ST2/Images/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/AppIcon76x76@2x.png -------------------------------------------------------------------------------- /ST2/Images/Chat_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Chat_64.png -------------------------------------------------------------------------------- /ST2/Images/ObscureScreen-60px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/ObscureScreen-60px.png -------------------------------------------------------------------------------- /ST2/Images/ObscureScreen-60px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/ObscureScreen-60px@2x.png -------------------------------------------------------------------------------- /ST2/Images/ObscureScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/ObscureScreen.png -------------------------------------------------------------------------------- /ST2/Images/ObscureScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/ObscureScreen@2x.png -------------------------------------------------------------------------------- /ST2/Images/PageCurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/PageCurl.png -------------------------------------------------------------------------------- /ST2/Images/Phone_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Phone_64.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof0.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof0@2x.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof1.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof1@2x.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof2.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof2@2x.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof3.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof3@2x.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof4.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof4@2x.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof5.png -------------------------------------------------------------------------------- /ST2/Images/Poof/poof5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/Poof/poof5@2x.png -------------------------------------------------------------------------------- /ST2/Images/X-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/X-circled.png -------------------------------------------------------------------------------- /ST2/Images/X-circled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/X-circled@2x.png -------------------------------------------------------------------------------- /ST2/Images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/android.png -------------------------------------------------------------------------------- /ST2/Images/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/attention.png -------------------------------------------------------------------------------- /ST2/Images/attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/attention@2x.png -------------------------------------------------------------------------------- /ST2/Images/attention_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/attention_error.png -------------------------------------------------------------------------------- /ST2/Images/attention_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/attention_error@2x.png -------------------------------------------------------------------------------- /ST2/Images/avatar_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/avatar_multi.png -------------------------------------------------------------------------------- /ST2/Images/avatar_multi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/avatar_multi@2x.png -------------------------------------------------------------------------------- /ST2/Images/biometric@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/biometric@2x.png -------------------------------------------------------------------------------- /ST2/Images/bluedot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/bluedot@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_activation.png -------------------------------------------------------------------------------- /ST2/Images/button_activation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_activation@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_blue.png -------------------------------------------------------------------------------- /ST2/Images/button_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_blue@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_darkgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_darkgrey.png -------------------------------------------------------------------------------- /ST2/Images/button_darkgrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_darkgrey@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_lightgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_lightgrey.png -------------------------------------------------------------------------------- /ST2/Images/button_lightgrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_lightgrey@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_passcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_passcode.png -------------------------------------------------------------------------------- /ST2/Images/button_passcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_passcode@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_red@2x.png -------------------------------------------------------------------------------- /ST2/Images/button_signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_signup.png -------------------------------------------------------------------------------- /ST2/Images/button_signup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/button_signup@2x.png -------------------------------------------------------------------------------- /ST2/Images/buttongray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/buttongray.png -------------------------------------------------------------------------------- /ST2/Images/buttongray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/buttongray@2x.png -------------------------------------------------------------------------------- /ST2/Images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/calendar.png -------------------------------------------------------------------------------- /ST2/Images/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/chain.png -------------------------------------------------------------------------------- /ST2/Images/checkmark-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/checkmark-circled.png -------------------------------------------------------------------------------- /ST2/Images/checkmark-circled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/checkmark-circled@2x.png -------------------------------------------------------------------------------- /ST2/Images/contact-company_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-company_icon.png -------------------------------------------------------------------------------- /ST2/Images/contact-favorite_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-favorite_btn.png -------------------------------------------------------------------------------- /ST2/Images/contact-info_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-info_btn.png -------------------------------------------------------------------------------- /ST2/Images/contact-info_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-info_btn@2x.png -------------------------------------------------------------------------------- /ST2/Images/contact-info_btn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-info_btn@3x.png -------------------------------------------------------------------------------- /ST2/Images/contact-message_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-message_btn.png -------------------------------------------------------------------------------- /ST2/Images/contact-phone_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-phone_btn.png -------------------------------------------------------------------------------- /ST2/Images/contact-phone_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-phone_btn@2x.png -------------------------------------------------------------------------------- /ST2/Images/contact-phone_btn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/contact-phone_btn@3x.png -------------------------------------------------------------------------------- /ST2/Images/default-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/default-document.png -------------------------------------------------------------------------------- /ST2/Images/default-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/default-map.png -------------------------------------------------------------------------------- /ST2/Images/defaultPerson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/defaultPerson.png -------------------------------------------------------------------------------- /ST2/Images/default_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/default_audio.png -------------------------------------------------------------------------------- /ST2/Images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/directory.png -------------------------------------------------------------------------------- /ST2/Images/dropdown-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/dropdown-alert.png -------------------------------------------------------------------------------- /ST2/Images/dropdown-alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/dropdown-alert@2x.png -------------------------------------------------------------------------------- /ST2/Images/expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/expired.png -------------------------------------------------------------------------------- /ST2/Images/expired@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/expired@2x.png -------------------------------------------------------------------------------- /ST2/Images/failure-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/failure-btn.png -------------------------------------------------------------------------------- /ST2/Images/failure-btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/failure-btn@2x.png -------------------------------------------------------------------------------- /ST2/Images/flame_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/flame_btn.png -------------------------------------------------------------------------------- /ST2/Images/flame_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/flame_btn@2x.png -------------------------------------------------------------------------------- /ST2/Images/gear_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_blue.png -------------------------------------------------------------------------------- /ST2/Images/gear_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_blue@2x.png -------------------------------------------------------------------------------- /ST2/Images/gear_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_color.png -------------------------------------------------------------------------------- /ST2/Images/gear_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_color@2x.png -------------------------------------------------------------------------------- /ST2/Images/gear_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_grey.png -------------------------------------------------------------------------------- /ST2/Images/gear_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gear_grey@2x.png -------------------------------------------------------------------------------- /ST2/Images/gears.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/gears.jpg -------------------------------------------------------------------------------- /ST2/Images/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/iTunesArtwork.png -------------------------------------------------------------------------------- /ST2/Images/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /ST2/Images/ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/ignored.png -------------------------------------------------------------------------------- /ST2/Images/info-1yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-1yellow.png -------------------------------------------------------------------------------- /ST2/Images/info-1yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-1yellow@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-2yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-2yellow.png -------------------------------------------------------------------------------- /ST2/Images/info-2yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-2yellow@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-3green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3green.png -------------------------------------------------------------------------------- /ST2/Images/info-3green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3green@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-3red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3red.png -------------------------------------------------------------------------------- /ST2/Images/info-3red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3red@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-3yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3yellow.png -------------------------------------------------------------------------------- /ST2/Images/info-3yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-3yellow@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-circle.png -------------------------------------------------------------------------------- /ST2/Images/info-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-circle@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-mute.png -------------------------------------------------------------------------------- /ST2/Images/info-mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-mute@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-only.png -------------------------------------------------------------------------------- /ST2/Images/info-only@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-only@2x.png -------------------------------------------------------------------------------- /ST2/Images/info-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-tint.png -------------------------------------------------------------------------------- /ST2/Images/info-tint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/info-tint@2x.png -------------------------------------------------------------------------------- /ST2/Images/itunes-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/itunes-folder.png -------------------------------------------------------------------------------- /ST2/Images/key1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key1.png -------------------------------------------------------------------------------- /ST2/Images/key1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key1@2x.png -------------------------------------------------------------------------------- /ST2/Images/key2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key2.png -------------------------------------------------------------------------------- /ST2/Images/key2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key2@2x.png -------------------------------------------------------------------------------- /ST2/Images/key3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key3.png -------------------------------------------------------------------------------- /ST2/Images/key3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key3@2x.png -------------------------------------------------------------------------------- /ST2/Images/key4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key4.png -------------------------------------------------------------------------------- /ST2/Images/key4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/key4@2x.png -------------------------------------------------------------------------------- /ST2/Images/map_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/map_btn.png -------------------------------------------------------------------------------- /ST2/Images/map_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/map_btn@2x.png -------------------------------------------------------------------------------- /ST2/Images/mapwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/mapwhite.png -------------------------------------------------------------------------------- /ST2/Images/mapwhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/mapwhite@2x.png -------------------------------------------------------------------------------- /ST2/Images/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/movie.png -------------------------------------------------------------------------------- /ST2/Images/movie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/movie@2x.png -------------------------------------------------------------------------------- /ST2/Images/muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/muted.png -------------------------------------------------------------------------------- /ST2/Images/muted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/muted@2x.png -------------------------------------------------------------------------------- /ST2/Images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar.png -------------------------------------------------------------------------------- /ST2/Images/navbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar@2x.png -------------------------------------------------------------------------------- /ST2/Images/navbar_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar_landscape.png -------------------------------------------------------------------------------- /ST2/Images/navbar_landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar_landscape@2x.png -------------------------------------------------------------------------------- /ST2/Images/navbar_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar_portrait.png -------------------------------------------------------------------------------- /ST2/Images/navbar_portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbar_portrait@2x.png -------------------------------------------------------------------------------- /ST2/Images/navbarlandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbarlandscape.png -------------------------------------------------------------------------------- /ST2/Images/navbarlandscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/navbarlandscape@2x.png -------------------------------------------------------------------------------- /ST2/Images/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/offline.png -------------------------------------------------------------------------------- /ST2/Images/offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/offline@2x.png -------------------------------------------------------------------------------- /ST2/Images/pending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/pending@2x.png -------------------------------------------------------------------------------- /ST2/Images/plaintext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/plaintext.png -------------------------------------------------------------------------------- /ST2/Images/qrcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/qrcode@2x.png -------------------------------------------------------------------------------- /ST2/Images/refresh-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/refresh-icon.png -------------------------------------------------------------------------------- /ST2/Images/refresh-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/refresh-icon@2x.png -------------------------------------------------------------------------------- /ST2/Images/refresh_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/refresh_key.png -------------------------------------------------------------------------------- /ST2/Images/refresh_key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/refresh_key@2x.png -------------------------------------------------------------------------------- /ST2/Images/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/reply.png -------------------------------------------------------------------------------- /ST2/Images/reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/reply@2x.png -------------------------------------------------------------------------------- /ST2/Images/reply_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/reply_2.png -------------------------------------------------------------------------------- /ST2/Images/reply_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/reply_3.png -------------------------------------------------------------------------------- /ST2/Images/scloud-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/scloud-folder.png -------------------------------------------------------------------------------- /ST2/Images/seg_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/seg_contacts.png -------------------------------------------------------------------------------- /ST2/Images/seg_silent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/seg_silent.png -------------------------------------------------------------------------------- /ST2/Images/silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/silhouette.png -------------------------------------------------------------------------------- /ST2/Images/silhouette@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/silhouette@2x.png -------------------------------------------------------------------------------- /ST2/Images/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/split.png -------------------------------------------------------------------------------- /ST2/Images/split@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/split@2x.png -------------------------------------------------------------------------------- /ST2/Images/starred-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/starred-checkmark.png -------------------------------------------------------------------------------- /ST2/Images/starred-checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/starred-checkmark@2x.png -------------------------------------------------------------------------------- /ST2/Images/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/subscribe.png -------------------------------------------------------------------------------- /ST2/Images/threebars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/threebars.png -------------------------------------------------------------------------------- /ST2/Images/threebars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/threebars@2x.png -------------------------------------------------------------------------------- /ST2/Images/unchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/unchain.png -------------------------------------------------------------------------------- /ST2/Images/unplayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/unplayed.png -------------------------------------------------------------------------------- /ST2/Images/unplayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/unplayed@2x.png -------------------------------------------------------------------------------- /ST2/Images/unsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/unsplit.png -------------------------------------------------------------------------------- /ST2/Images/unsplit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/unsplit@2x.png -------------------------------------------------------------------------------- /ST2/Images/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/vcard.png -------------------------------------------------------------------------------- /ST2/Images/vcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/vcard@2x.png -------------------------------------------------------------------------------- /ST2/Images/vmemo70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/vmemo70.png -------------------------------------------------------------------------------- /ST2/Images/vmemo70@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/vmemo70@2x.png -------------------------------------------------------------------------------- /ST2/Images/voiceMailIcon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/voiceMailIcon76x76.png -------------------------------------------------------------------------------- /ST2/Images/voiceMailIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/voiceMailIcon76x76@2x.png -------------------------------------------------------------------------------- /ST2/Images/voicemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Images/voicemail.png -------------------------------------------------------------------------------- /ST2/InAppPurchase/ProductVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/InAppPurchase/ProductVO.h -------------------------------------------------------------------------------- /ST2/InAppPurchase/ProductVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/InAppPurchase/ProductVO.m -------------------------------------------------------------------------------- /ST2/InAppPurchase/StoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/InAppPurchase/StoreManager.h -------------------------------------------------------------------------------- /ST2/InAppPurchase/StoreManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/InAppPurchase/StoreManager.m -------------------------------------------------------------------------------- /ST2/LaunchScreen/LaunchScreenVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/LaunchScreen/LaunchScreenVC.h -------------------------------------------------------------------------------- /ST2/LaunchScreen/LaunchScreenVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/LaunchScreen/LaunchScreenVC.m -------------------------------------------------------------------------------- /ST2/Logging/LumberjackUser.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Logging/LumberjackUser.bash -------------------------------------------------------------------------------- /ST2/Logging/STLoggerFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Logging/STLoggerFormatter.h -------------------------------------------------------------------------------- /ST2/Logging/STLoggerFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Logging/STLoggerFormatter.m -------------------------------------------------------------------------------- /ST2/Logging/STLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Logging/STLogging.h -------------------------------------------------------------------------------- /ST2/Managers/AddressBookManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/AddressBookManager.h -------------------------------------------------------------------------------- /ST2/Managers/AddressBookManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/AddressBookManager.m -------------------------------------------------------------------------------- /ST2/Managers/AvatarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/AvatarManager.h -------------------------------------------------------------------------------- /ST2/Managers/AvatarManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/AvatarManager.m -------------------------------------------------------------------------------- /ST2/Managers/DatabaseActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/DatabaseActionManager.h -------------------------------------------------------------------------------- /ST2/Managers/DatabaseActionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/DatabaseActionManager.m -------------------------------------------------------------------------------- /ST2/Managers/DatabaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/DatabaseManager.h -------------------------------------------------------------------------------- /ST2/Managers/DatabaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/DatabaseManager.m -------------------------------------------------------------------------------- /ST2/Managers/MessageStreamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/MessageStreamManager.h -------------------------------------------------------------------------------- /ST2/Managers/MessageStreamManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/MessageStreamManager.m -------------------------------------------------------------------------------- /ST2/Managers/SCFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/SCFileManager.h -------------------------------------------------------------------------------- /ST2/Managers/SCFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/SCFileManager.m -------------------------------------------------------------------------------- /ST2/Managers/SRVManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/SRVManager.h -------------------------------------------------------------------------------- /ST2/Managers/SRVManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/SRVManager.m -------------------------------------------------------------------------------- /ST2/Managers/STSoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/STSoundManager.h -------------------------------------------------------------------------------- /ST2/Managers/STSoundManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/STSoundManager.m -------------------------------------------------------------------------------- /ST2/Managers/STUserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/STUserManager.h -------------------------------------------------------------------------------- /ST2/Managers/STUserManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Managers/STUserManager.m -------------------------------------------------------------------------------- /ST2/MediaPicker/MediaAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MediaPicker/MediaAlbum.h -------------------------------------------------------------------------------- /ST2/MediaPicker/MediaAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MediaPicker/MediaAlbum.m -------------------------------------------------------------------------------- /ST2/MessageStream/FakeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/FakeStream.h -------------------------------------------------------------------------------- /ST2/MessageStream/FakeStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/FakeStream.m -------------------------------------------------------------------------------- /ST2/MessageStream/MessageStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/MessageStream.h -------------------------------------------------------------------------------- /ST2/MessageStream/MessageStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/MessageStream.m -------------------------------------------------------------------------------- /ST2/MessageStream/SCimpUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/SCimpUtilities.h -------------------------------------------------------------------------------- /ST2/MessageStream/SCimpUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/SCimpUtilities.m -------------------------------------------------------------------------------- /ST2/MessageStream/SCimpWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/SCimpWrapper.h -------------------------------------------------------------------------------- /ST2/MessageStream/SCimpWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageStream/SCimpWrapper.m -------------------------------------------------------------------------------- /ST2/MessageView/BubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/BubbleView.h -------------------------------------------------------------------------------- /ST2/MessageView/BubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/BubbleView.m -------------------------------------------------------------------------------- /ST2/MessageView/MessagesInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/MessagesInputView.h -------------------------------------------------------------------------------- /ST2/MessageView/MessagesInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/MessagesInputView.m -------------------------------------------------------------------------------- /ST2/MessageView/RectBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/RectBubbleView.h -------------------------------------------------------------------------------- /ST2/MessageView/RectBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/RectBubbleView.m -------------------------------------------------------------------------------- /ST2/MessageView/STBubbleCellButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STBubbleCellButton.h -------------------------------------------------------------------------------- /ST2/MessageView/STBubbleCellButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STBubbleCellButton.m -------------------------------------------------------------------------------- /ST2/MessageView/STBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STBubbleView.h -------------------------------------------------------------------------------- /ST2/MessageView/STBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STBubbleView.m -------------------------------------------------------------------------------- /ST2/MessageView/STTiledBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STTiledBubbleView.h -------------------------------------------------------------------------------- /ST2/MessageView/STTiledBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/STTiledBubbleView.m -------------------------------------------------------------------------------- /ST2/MessageView/speaker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/MessageView/speaker@2x.png -------------------------------------------------------------------------------- /ST2/Model/SCimpSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/SCimpSnapshot.h -------------------------------------------------------------------------------- /ST2/Model/SCimpSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/SCimpSnapshot.m -------------------------------------------------------------------------------- /ST2/Model/STConversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STConversation.h -------------------------------------------------------------------------------- /ST2/Model/STConversation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STConversation.m -------------------------------------------------------------------------------- /ST2/Model/STDatabaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STDatabaseObject.h -------------------------------------------------------------------------------- /ST2/Model/STDatabaseObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STDatabaseObject.m -------------------------------------------------------------------------------- /ST2/Model/STImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STImage.h -------------------------------------------------------------------------------- /ST2/Model/STImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STImage.m -------------------------------------------------------------------------------- /ST2/Model/STLocalUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STLocalUser.h -------------------------------------------------------------------------------- /ST2/Model/STLocalUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STLocalUser.m -------------------------------------------------------------------------------- /ST2/Model/STMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STMessage.h -------------------------------------------------------------------------------- /ST2/Model/STMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STMessage.m -------------------------------------------------------------------------------- /ST2/Model/STMessageIDCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STMessageIDCache.h -------------------------------------------------------------------------------- /ST2/Model/STMessageIDCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STMessageIDCache.m -------------------------------------------------------------------------------- /ST2/Model/STNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STNotification.h -------------------------------------------------------------------------------- /ST2/Model/STNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STNotification.m -------------------------------------------------------------------------------- /ST2/Model/STPublicKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STPublicKey.h -------------------------------------------------------------------------------- /ST2/Model/STPublicKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STPublicKey.m -------------------------------------------------------------------------------- /ST2/Model/STQueuedMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STQueuedMessages.h -------------------------------------------------------------------------------- /ST2/Model/STQueuedMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STQueuedMessages.m -------------------------------------------------------------------------------- /ST2/Model/STSCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSCloud.h -------------------------------------------------------------------------------- /ST2/Model/STSCloud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSCloud.m -------------------------------------------------------------------------------- /ST2/Model/STSRVRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSRVRecord.h -------------------------------------------------------------------------------- /ST2/Model/STSRVRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSRVRecord.m -------------------------------------------------------------------------------- /ST2/Model/STStreamManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STStreamManagement.h -------------------------------------------------------------------------------- /ST2/Model/STStreamManagement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STStreamManagement.m -------------------------------------------------------------------------------- /ST2/Model/STSymmetricKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSymmetricKey.h -------------------------------------------------------------------------------- /ST2/Model/STSymmetricKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STSymmetricKey.m -------------------------------------------------------------------------------- /ST2/Model/STUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STUser.h -------------------------------------------------------------------------------- /ST2/Model/STUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STUser.m -------------------------------------------------------------------------------- /ST2/Model/STUserGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STUserGroup.h -------------------------------------------------------------------------------- /ST2/Model/STUserGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STUserGroup.m -------------------------------------------------------------------------------- /ST2/Model/STXMPPElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STXMPPElement.h -------------------------------------------------------------------------------- /ST2/Model/STXMPPElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Model/STXMPPElement.m -------------------------------------------------------------------------------- /ST2/Passcode/SCPasscodeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Passcode/SCPasscodeManager.h -------------------------------------------------------------------------------- /ST2/Passcode/SCPasscodeManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Passcode/SCPasscodeManager.m -------------------------------------------------------------------------------- /ST2/Preferences/SCPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Preferences/SCPreferences.h -------------------------------------------------------------------------------- /ST2/Preferences/SCPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Preferences/SCPreferences.m -------------------------------------------------------------------------------- /ST2/Preferences/STPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Preferences/STPreferences.h -------------------------------------------------------------------------------- /ST2/Preferences/STPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Preferences/STPreferences.m -------------------------------------------------------------------------------- /ST2/Resources/ar.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/ar.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/de.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/de.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/en.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/en.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/es.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/es.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/fr.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/fr.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/it.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/it.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/ja.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/ja.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/licenses.html -------------------------------------------------------------------------------- /ST2/Resources/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/licenses.md -------------------------------------------------------------------------------- /ST2/Resources/nl.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/nl.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/Resources/ru.lproj/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Resources/ru.lproj/privacy.html -------------------------------------------------------------------------------- /ST2/SC XMPP/XMPPFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SC XMPP/XMPPFramework.h -------------------------------------------------------------------------------- /ST2/SC XMPP/XMPPJIDSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SC XMPP/XMPPJIDSet.h -------------------------------------------------------------------------------- /ST2/SC XMPP/XMPPJIDSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SC XMPP/XMPPJIDSet.m -------------------------------------------------------------------------------- /ST2/SCloud/AsyncS3uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/AsyncS3uploader.h -------------------------------------------------------------------------------- /ST2/SCloud/AsyncS3uploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/AsyncS3uploader.m -------------------------------------------------------------------------------- /ST2/SCloud/AsyncSCloudOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/AsyncSCloudOp.h -------------------------------------------------------------------------------- /ST2/SCloud/AsyncSCloudOp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/AsyncSCloudOp.m -------------------------------------------------------------------------------- /ST2/SCloud/S3DeleteOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3DeleteOperation.h -------------------------------------------------------------------------------- /ST2/SCloud/S3DeleteOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3DeleteOperation.m -------------------------------------------------------------------------------- /ST2/SCloud/S3DownloadOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3DownloadOperation.h -------------------------------------------------------------------------------- /ST2/SCloud/S3DownloadOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3DownloadOperation.m -------------------------------------------------------------------------------- /ST2/SCloud/S3UploadSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3UploadSession.h -------------------------------------------------------------------------------- /ST2/SCloud/S3UploadSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/S3UploadSession.m -------------------------------------------------------------------------------- /ST2/SCloud/SCloudManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/SCloudManager.h -------------------------------------------------------------------------------- /ST2/SCloud/SCloudManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/SCloudManager.m -------------------------------------------------------------------------------- /ST2/SCloud/SCloudObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/SCloudObject.h -------------------------------------------------------------------------------- /ST2/SCloud/SCloudObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SCloud/SCloudObject.m -------------------------------------------------------------------------------- /ST2/ST2-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ST2-Info.plist -------------------------------------------------------------------------------- /ST2/ST2-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ST2-Prefix.pch -------------------------------------------------------------------------------- /ST2/ST2.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ST2.entitlements -------------------------------------------------------------------------------- /ST2/ST2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ST2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ST2/ScloudPreview/QLItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ScloudPreview/QLItem.h -------------------------------------------------------------------------------- /ST2/ScloudPreview/QLItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ScloudPreview/QLItem.m -------------------------------------------------------------------------------- /ST2/ScloudPreview/SCloudPreviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ScloudPreview/SCloudPreviewer.h -------------------------------------------------------------------------------- /ST2/ScloudPreview/SCloudPreviewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/ScloudPreview/SCloudPreviewer.m -------------------------------------------------------------------------------- /ST2/Scripts/fetch_git_commit_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Scripts/fetch_git_commit_hash.sh -------------------------------------------------------------------------------- /ST2/Scripts/localize_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Scripts/localize_strings.sh -------------------------------------------------------------------------------- /ST2/SearchUsers/PersonSearchResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SearchUsers/PersonSearchResult.h -------------------------------------------------------------------------------- /ST2/SearchUsers/PersonSearchResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SearchUsers/PersonSearchResult.m -------------------------------------------------------------------------------- /ST2/SettingsView/AppThemeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SettingsView/AppThemeView.h -------------------------------------------------------------------------------- /ST2/SettingsView/AppThemeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SettingsView/AppThemeView.m -------------------------------------------------------------------------------- /ST2/SettingsView/SCTPopoverDelegte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SettingsView/SCTPopoverDelegte.h -------------------------------------------------------------------------------- /ST2/Siren/Siren.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Siren/Siren.h -------------------------------------------------------------------------------- /ST2/Siren/Siren.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Siren/Siren.m -------------------------------------------------------------------------------- /ST2/SoundsView/beep.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SoundsView/beep.m4a -------------------------------------------------------------------------------- /ST2/SoundsView/received.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SoundsView/received.wav -------------------------------------------------------------------------------- /ST2/SoundsView/sent.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SoundsView/sent.aiff -------------------------------------------------------------------------------- /ST2/SoundsView/swoosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/SoundsView/swoosh.wav -------------------------------------------------------------------------------- /ST2/UserInfoView/EditUserInfoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/EditUserInfoVC.h -------------------------------------------------------------------------------- /ST2/UserInfoView/EditUserInfoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/EditUserInfoVC.m -------------------------------------------------------------------------------- /ST2/UserInfoView/EditUserInfoVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/EditUserInfoVC.xib -------------------------------------------------------------------------------- /ST2/UserInfoView/UserInfoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/UserInfoVC.h -------------------------------------------------------------------------------- /ST2/UserInfoView/UserInfoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/UserInfoVC.m -------------------------------------------------------------------------------- /ST2/UserInfoView/UserInfoVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/UserInfoView/UserInfoVC.xib -------------------------------------------------------------------------------- /ST2/Utilities/MZAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/MZAlertView.h -------------------------------------------------------------------------------- /ST2/Utilities/MZAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/MZAlertView.m -------------------------------------------------------------------------------- /ST2/Utilities/SCAssetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCAssetInfo.h -------------------------------------------------------------------------------- /ST2/Utilities/SCAssetInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCAssetInfo.m -------------------------------------------------------------------------------- /ST2/Utilities/SCCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCCalendar.h -------------------------------------------------------------------------------- /ST2/Utilities/SCCalendar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCCalendar.m -------------------------------------------------------------------------------- /ST2/Utilities/SCDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCDateFormatter.h -------------------------------------------------------------------------------- /ST2/Utilities/SCDateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCDateFormatter.m -------------------------------------------------------------------------------- /ST2/Utilities/SCMapImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCMapImage.h -------------------------------------------------------------------------------- /ST2/Utilities/SCMapImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SCMapImage.m -------------------------------------------------------------------------------- /ST2/Utilities/SnippetGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SnippetGraphView.h -------------------------------------------------------------------------------- /ST2/Utilities/SnippetGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/Utilities/SnippetGraphView.m -------------------------------------------------------------------------------- /ST2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/main.m -------------------------------------------------------------------------------- /ST2/vCardView/NSDictionary+vCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/vCardView/NSDictionary+vCard.h -------------------------------------------------------------------------------- /ST2/vCardView/NSDictionary+vCard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/vCardView/NSDictionary+vCard.m -------------------------------------------------------------------------------- /ST2/vCardView/vCardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/vCardView/vCardViewController.h -------------------------------------------------------------------------------- /ST2/vCardView/vCardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/ST2/vCardView/vCardViewController.m -------------------------------------------------------------------------------- /Vendors/OHActionSheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/OHActionSheet/.gitignore -------------------------------------------------------------------------------- /Vendors/OHActionSheet/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/OHActionSheet/Example/main.m -------------------------------------------------------------------------------- /Vendors/OHActionSheet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/OHActionSheet/LICENSE -------------------------------------------------------------------------------- /Vendors/OHActionSheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/OHActionSheet/README.md -------------------------------------------------------------------------------- /Vendors/XMPPFramework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/.gitignore -------------------------------------------------------------------------------- /Vendors/XMPPFramework/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/.gitmodules -------------------------------------------------------------------------------- /Vendors/XMPPFramework/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/.hgignore -------------------------------------------------------------------------------- /Vendors/XMPPFramework/Core/XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/Core/XMPP.h -------------------------------------------------------------------------------- /Vendors/XMPPFramework/Core/XMPPIQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/Core/XMPPIQ.h -------------------------------------------------------------------------------- /Vendors/XMPPFramework/Core/XMPPIQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/Core/XMPPIQ.m -------------------------------------------------------------------------------- /Vendors/XMPPFramework/Core/XMPPJID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/Core/XMPPJID.h -------------------------------------------------------------------------------- /Vendors/XMPPFramework/Core/XMPPJID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/Core/XMPPJID.m -------------------------------------------------------------------------------- /Vendors/XMPPFramework/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/XMPPFramework/copying.txt -------------------------------------------------------------------------------- /Vendors/brandonemrich/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/brandonemrich/LICENSE -------------------------------------------------------------------------------- /Vendors/brandonemrich/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/brandonemrich/README -------------------------------------------------------------------------------- /Vendors/iCal4ObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/iCal4ObjC/LICENSE -------------------------------------------------------------------------------- /Vendors/iCal4ObjC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentCircle/silent-text/HEAD/Vendors/iCal4ObjC/README --------------------------------------------------------------------------------