├── Android.mk ├── Application.mk ├── README.md ├── fix.py ├── include ├── Dobby │ └── dobby.h ├── curl │ ├── curl.h │ ├── curlbuild.h │ ├── curlrules.h │ ├── curlver.h │ ├── easy.h │ ├── mprintf.h │ ├── multi.h │ ├── stdcheaders.h │ └── typecheck-gcc.h ├── hookzz │ └── hookzz.h ├── json │ ├── autolink.h │ ├── config.h │ ├── features.h │ ├── forwards.h │ ├── json.h │ ├── reader.h │ ├── value.h │ └── writer.h ├── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1err.h │ ├── asn1t.h │ ├── async.h │ ├── asyncerr.h │ ├── bio.h │ ├── bioerr.h │ ├── blowfish.h │ ├── bn.h │ ├── bnerr.h │ ├── buffer.h │ ├── buffererr.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── cmserr.h │ ├── comp.h │ ├── comperr.h │ ├── conf.h │ ├── conf_api.h │ ├── conferr.h │ ├── crypto.h │ ├── cryptoerr.h │ ├── ct.h │ ├── cterr.h │ ├── des.h │ ├── dh.h │ ├── dherr.h │ ├── dsa.h │ ├── dsaerr.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ecerr.h │ ├── engine.h │ ├── engineerr.h │ ├── err.h │ ├── evp.h │ ├── evperr.h │ ├── hmac.h │ ├── idea.h │ ├── kdf.h │ ├── kdferr.h │ ├── lhash.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── objectserr.h │ ├── ocsp.h │ ├── ocsperr.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pemerr.h │ ├── pkcs12.h │ ├── pkcs12err.h │ ├── pkcs7.h │ ├── pkcs7err.h │ ├── rand.h │ ├── rand_drbg.h │ ├── randerr.h │ ├── rc2.h │ ├── rc4.h │ ├── rc5.h │ ├── ripemd.h │ ├── rsa.h │ ├── rsaerr.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl3.h │ ├── sslerr.h │ ├── stack.h │ ├── store.h │ ├── storeerr.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── tserr.h │ ├── txt_db.h │ ├── ui.h │ ├── uierr.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ ├── x509err.h │ ├── x509v3.h │ └── x509v3err.h ├── substrate │ └── CydiaSubstrate.h └── zip │ ├── config.h │ ├── zip.h │ └── zipint.h ├── libs ├── libcrypto.a ├── libcurl.a ├── libdobby.a ├── libhookzz.a ├── libjsoncpp.a ├── libssl.a ├── libsubstrate.a └── libzip.a ├── pc2phone.bat └── src ├── configs.h ├── fix.h ├── hack.cpp ├── hook ├── dlopen │ ├── dlopen.cpp │ └── dlopen.h ├── hook.h ├── il2cpp │ ├── il2cpp-api-types.h │ ├── il2cpp-api.h │ ├── il2cpp-blob.h │ ├── il2cpp-class-internals.h │ ├── il2cpp-config.h │ ├── il2cpp-metadata.h │ └── il2cpp-runtime-metadata.h ├── loaded │ ├── il2cpp.cpp │ ├── il2cpp.h │ ├── tersafe2.cpp │ └── tersafe2.h ├── logic │ ├── CSharpString.hpp │ ├── ClassLoad.cpp │ ├── ClassLoad.h │ ├── Enum.h │ ├── Functions.cpp │ ├── Functions.h │ └── Noun.h ├── patch │ ├── Const.h │ ├── il2cpp.cpp │ └── il2cpp.h └── utils │ ├── Amend.h │ ├── EnumParse.cpp │ └── EnumParse.h ├── sdk ├── Base.h ├── Bytes.hpp ├── MiHoYoSDK.h ├── SafeChars.hpp ├── crypto │ ├── AESCrypto.cpp │ ├── AESCrypto.h │ ├── Hash.cpp │ ├── Hash.h │ ├── RSACrypto.cpp │ └── RSACrypto.h ├── net │ ├── network.cpp │ └── network.h ├── static │ ├── StaticData.h │ ├── config │ │ ├── config.cpp │ │ ├── config.h │ │ ├── keys.cpp │ │ ├── keys.h │ │ ├── path.cpp │ │ └── path.h │ ├── hook │ │ ├── dlopen │ │ │ ├── dlopen.cpp │ │ │ └── dlopen.h │ │ ├── loaded │ │ │ ├── il2cpp.cpp │ │ │ └── il2cpp.h │ │ └── logic │ │ │ ├── Functions.cpp │ │ │ └── Functions.h │ ├── sdk │ │ ├── crypto │ │ │ ├── Hash.cpp │ │ │ └── Hash.h │ │ ├── net │ │ │ ├── network.cpp │ │ │ └── network.h │ │ └── utils │ │ │ ├── AntiDebug.cpp │ │ │ ├── AntiDebug.h │ │ │ ├── tools.cpp │ │ │ └── tools.h │ ├── sync │ │ ├── sync.cpp │ │ └── sync.h │ └── verify │ │ ├── verify.cpp │ │ └── verify.h └── utils │ ├── AntiDebug.cpp │ ├── AntiDebug.h │ ├── file.cpp │ ├── file.h │ ├── str.cpp │ ├── str.h │ ├── tools.cpp │ └── tools.h ├── sync ├── configs.h ├── sync.cpp └── sync.h └── verify ├── verify.cpp └── verify.h /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/Application.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/README.md -------------------------------------------------------------------------------- /fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/fix.py -------------------------------------------------------------------------------- /include/Dobby/dobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/Dobby/dobby.h -------------------------------------------------------------------------------- /include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/curl.h -------------------------------------------------------------------------------- /include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/curlbuild.h -------------------------------------------------------------------------------- /include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/curlrules.h -------------------------------------------------------------------------------- /include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/curlver.h -------------------------------------------------------------------------------- /include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/easy.h -------------------------------------------------------------------------------- /include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/mprintf.h -------------------------------------------------------------------------------- /include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/multi.h -------------------------------------------------------------------------------- /include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /include/hookzz/hookzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/hookzz/hookzz.h -------------------------------------------------------------------------------- /include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/autolink.h -------------------------------------------------------------------------------- /include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/config.h -------------------------------------------------------------------------------- /include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/features.h -------------------------------------------------------------------------------- /include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/forwards.h -------------------------------------------------------------------------------- /include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/json.h -------------------------------------------------------------------------------- /include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/reader.h -------------------------------------------------------------------------------- /include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/value.h -------------------------------------------------------------------------------- /include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/json/writer.h -------------------------------------------------------------------------------- /include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/aes.h -------------------------------------------------------------------------------- /include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/asn1.h -------------------------------------------------------------------------------- /include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/asn1err.h -------------------------------------------------------------------------------- /include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/asn1t.h -------------------------------------------------------------------------------- /include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/async.h -------------------------------------------------------------------------------- /include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/bio.h -------------------------------------------------------------------------------- /include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/bioerr.h -------------------------------------------------------------------------------- /include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/blowfish.h -------------------------------------------------------------------------------- /include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/bn.h -------------------------------------------------------------------------------- /include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/bnerr.h -------------------------------------------------------------------------------- /include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/buffer.h -------------------------------------------------------------------------------- /include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/buffererr.h -------------------------------------------------------------------------------- /include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/camellia.h -------------------------------------------------------------------------------- /include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cast.h -------------------------------------------------------------------------------- /include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cmac.h -------------------------------------------------------------------------------- /include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cms.h -------------------------------------------------------------------------------- /include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cmserr.h -------------------------------------------------------------------------------- /include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/comp.h -------------------------------------------------------------------------------- /include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/comperr.h -------------------------------------------------------------------------------- /include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/conf.h -------------------------------------------------------------------------------- /include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/conf_api.h -------------------------------------------------------------------------------- /include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/conferr.h -------------------------------------------------------------------------------- /include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/crypto.h -------------------------------------------------------------------------------- /include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ct.h -------------------------------------------------------------------------------- /include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/cterr.h -------------------------------------------------------------------------------- /include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/des.h -------------------------------------------------------------------------------- /include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/dh.h -------------------------------------------------------------------------------- /include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/dherr.h -------------------------------------------------------------------------------- /include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/dsa.h -------------------------------------------------------------------------------- /include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/dtls1.h -------------------------------------------------------------------------------- /include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/e_os2.h -------------------------------------------------------------------------------- /include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ec.h -------------------------------------------------------------------------------- /include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ecdh.h -------------------------------------------------------------------------------- /include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ecerr.h -------------------------------------------------------------------------------- /include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/engine.h -------------------------------------------------------------------------------- /include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/engineerr.h -------------------------------------------------------------------------------- /include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/err.h -------------------------------------------------------------------------------- /include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/evp.h -------------------------------------------------------------------------------- /include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/evperr.h -------------------------------------------------------------------------------- /include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/hmac.h -------------------------------------------------------------------------------- /include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/idea.h -------------------------------------------------------------------------------- /include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/kdf.h -------------------------------------------------------------------------------- /include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/kdferr.h -------------------------------------------------------------------------------- /include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/lhash.h -------------------------------------------------------------------------------- /include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/md2.h -------------------------------------------------------------------------------- /include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/md4.h -------------------------------------------------------------------------------- /include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/md5.h -------------------------------------------------------------------------------- /include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/mdc2.h -------------------------------------------------------------------------------- /include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/modes.h -------------------------------------------------------------------------------- /include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/objects.h -------------------------------------------------------------------------------- /include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/objectserr.h -------------------------------------------------------------------------------- /include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ocsp.h -------------------------------------------------------------------------------- /include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/opensslv.h -------------------------------------------------------------------------------- /include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pem.h -------------------------------------------------------------------------------- /include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pem2.h -------------------------------------------------------------------------------- /include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pemerr.h -------------------------------------------------------------------------------- /include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rand.h -------------------------------------------------------------------------------- /include/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rand_drbg.h -------------------------------------------------------------------------------- /include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/randerr.h -------------------------------------------------------------------------------- /include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rc2.h -------------------------------------------------------------------------------- /include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rc4.h -------------------------------------------------------------------------------- /include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rc5.h -------------------------------------------------------------------------------- /include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ripemd.h -------------------------------------------------------------------------------- /include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rsa.h -------------------------------------------------------------------------------- /include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/safestack.h -------------------------------------------------------------------------------- /include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/seed.h -------------------------------------------------------------------------------- /include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/sha.h -------------------------------------------------------------------------------- /include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/srp.h -------------------------------------------------------------------------------- /include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/srtp.h -------------------------------------------------------------------------------- /include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ssl.h -------------------------------------------------------------------------------- /include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ssl2.h -------------------------------------------------------------------------------- /include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ssl3.h -------------------------------------------------------------------------------- /include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/sslerr.h -------------------------------------------------------------------------------- /include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/stack.h -------------------------------------------------------------------------------- /include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/store.h -------------------------------------------------------------------------------- /include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/storeerr.h -------------------------------------------------------------------------------- /include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/symhacks.h -------------------------------------------------------------------------------- /include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/tls1.h -------------------------------------------------------------------------------- /include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ts.h -------------------------------------------------------------------------------- /include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/tserr.h -------------------------------------------------------------------------------- /include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/txt_db.h -------------------------------------------------------------------------------- /include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/ui.h -------------------------------------------------------------------------------- /include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/uierr.h -------------------------------------------------------------------------------- /include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/x509.h -------------------------------------------------------------------------------- /include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/x509err.h -------------------------------------------------------------------------------- /include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/x509v3.h -------------------------------------------------------------------------------- /include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /include/substrate/CydiaSubstrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/substrate/CydiaSubstrate.h -------------------------------------------------------------------------------- /include/zip/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/zip/config.h -------------------------------------------------------------------------------- /include/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/zip/zip.h -------------------------------------------------------------------------------- /include/zip/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/include/zip/zipint.h -------------------------------------------------------------------------------- /libs/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libcrypto.a -------------------------------------------------------------------------------- /libs/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libcurl.a -------------------------------------------------------------------------------- /libs/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libdobby.a -------------------------------------------------------------------------------- /libs/libhookzz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libhookzz.a -------------------------------------------------------------------------------- /libs/libjsoncpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libjsoncpp.a -------------------------------------------------------------------------------- /libs/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libssl.a -------------------------------------------------------------------------------- /libs/libsubstrate.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libsubstrate.a -------------------------------------------------------------------------------- /libs/libzip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/libs/libzip.a -------------------------------------------------------------------------------- /pc2phone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/pc2phone.bat -------------------------------------------------------------------------------- /src/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/configs.h -------------------------------------------------------------------------------- /src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/fix.h -------------------------------------------------------------------------------- /src/hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hack.cpp -------------------------------------------------------------------------------- /src/hook/dlopen/dlopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/dlopen/dlopen.cpp -------------------------------------------------------------------------------- /src/hook/dlopen/dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/dlopen/dlopen.h -------------------------------------------------------------------------------- /src/hook/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/hook.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-api-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-api-types.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-api.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-blob.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-class-internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-class-internals.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-config.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-metadata.h -------------------------------------------------------------------------------- /src/hook/il2cpp/il2cpp-runtime-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/il2cpp/il2cpp-runtime-metadata.h -------------------------------------------------------------------------------- /src/hook/loaded/il2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/loaded/il2cpp.cpp -------------------------------------------------------------------------------- /src/hook/loaded/il2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/loaded/il2cpp.h -------------------------------------------------------------------------------- /src/hook/loaded/tersafe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/loaded/tersafe2.cpp -------------------------------------------------------------------------------- /src/hook/loaded/tersafe2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/loaded/tersafe2.h -------------------------------------------------------------------------------- /src/hook/logic/CSharpString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/CSharpString.hpp -------------------------------------------------------------------------------- /src/hook/logic/ClassLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/ClassLoad.cpp -------------------------------------------------------------------------------- /src/hook/logic/ClassLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/ClassLoad.h -------------------------------------------------------------------------------- /src/hook/logic/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/Enum.h -------------------------------------------------------------------------------- /src/hook/logic/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/Functions.cpp -------------------------------------------------------------------------------- /src/hook/logic/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/Functions.h -------------------------------------------------------------------------------- /src/hook/logic/Noun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/logic/Noun.h -------------------------------------------------------------------------------- /src/hook/patch/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/patch/Const.h -------------------------------------------------------------------------------- /src/hook/patch/il2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/patch/il2cpp.cpp -------------------------------------------------------------------------------- /src/hook/patch/il2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/patch/il2cpp.h -------------------------------------------------------------------------------- /src/hook/utils/Amend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/utils/Amend.h -------------------------------------------------------------------------------- /src/hook/utils/EnumParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/utils/EnumParse.cpp -------------------------------------------------------------------------------- /src/hook/utils/EnumParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/hook/utils/EnumParse.h -------------------------------------------------------------------------------- /src/sdk/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/Base.h -------------------------------------------------------------------------------- /src/sdk/Bytes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/Bytes.hpp -------------------------------------------------------------------------------- /src/sdk/MiHoYoSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/MiHoYoSDK.h -------------------------------------------------------------------------------- /src/sdk/SafeChars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/SafeChars.hpp -------------------------------------------------------------------------------- /src/sdk/crypto/AESCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/AESCrypto.cpp -------------------------------------------------------------------------------- /src/sdk/crypto/AESCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/AESCrypto.h -------------------------------------------------------------------------------- /src/sdk/crypto/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/Hash.cpp -------------------------------------------------------------------------------- /src/sdk/crypto/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/Hash.h -------------------------------------------------------------------------------- /src/sdk/crypto/RSACrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/RSACrypto.cpp -------------------------------------------------------------------------------- /src/sdk/crypto/RSACrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/crypto/RSACrypto.h -------------------------------------------------------------------------------- /src/sdk/net/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/net/network.cpp -------------------------------------------------------------------------------- /src/sdk/net/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/net/network.h -------------------------------------------------------------------------------- /src/sdk/static/StaticData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/StaticData.h -------------------------------------------------------------------------------- /src/sdk/static/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/config.cpp -------------------------------------------------------------------------------- /src/sdk/static/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/config.h -------------------------------------------------------------------------------- /src/sdk/static/config/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/keys.cpp -------------------------------------------------------------------------------- /src/sdk/static/config/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/keys.h -------------------------------------------------------------------------------- /src/sdk/static/config/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/path.cpp -------------------------------------------------------------------------------- /src/sdk/static/config/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/config/path.h -------------------------------------------------------------------------------- /src/sdk/static/hook/dlopen/dlopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/dlopen/dlopen.cpp -------------------------------------------------------------------------------- /src/sdk/static/hook/dlopen/dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/dlopen/dlopen.h -------------------------------------------------------------------------------- /src/sdk/static/hook/loaded/il2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/loaded/il2cpp.cpp -------------------------------------------------------------------------------- /src/sdk/static/hook/loaded/il2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/loaded/il2cpp.h -------------------------------------------------------------------------------- /src/sdk/static/hook/logic/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/logic/Functions.cpp -------------------------------------------------------------------------------- /src/sdk/static/hook/logic/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/hook/logic/Functions.h -------------------------------------------------------------------------------- /src/sdk/static/sdk/crypto/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/crypto/Hash.cpp -------------------------------------------------------------------------------- /src/sdk/static/sdk/crypto/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/crypto/Hash.h -------------------------------------------------------------------------------- /src/sdk/static/sdk/net/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/net/network.cpp -------------------------------------------------------------------------------- /src/sdk/static/sdk/net/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/net/network.h -------------------------------------------------------------------------------- /src/sdk/static/sdk/utils/AntiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/utils/AntiDebug.cpp -------------------------------------------------------------------------------- /src/sdk/static/sdk/utils/AntiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/utils/AntiDebug.h -------------------------------------------------------------------------------- /src/sdk/static/sdk/utils/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/utils/tools.cpp -------------------------------------------------------------------------------- /src/sdk/static/sdk/utils/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sdk/utils/tools.h -------------------------------------------------------------------------------- /src/sdk/static/sync/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sync/sync.cpp -------------------------------------------------------------------------------- /src/sdk/static/sync/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/sync/sync.h -------------------------------------------------------------------------------- /src/sdk/static/verify/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/verify/verify.cpp -------------------------------------------------------------------------------- /src/sdk/static/verify/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/static/verify/verify.h -------------------------------------------------------------------------------- /src/sdk/utils/AntiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/AntiDebug.cpp -------------------------------------------------------------------------------- /src/sdk/utils/AntiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/AntiDebug.h -------------------------------------------------------------------------------- /src/sdk/utils/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/file.cpp -------------------------------------------------------------------------------- /src/sdk/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/file.h -------------------------------------------------------------------------------- /src/sdk/utils/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/str.cpp -------------------------------------------------------------------------------- /src/sdk/utils/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/str.h -------------------------------------------------------------------------------- /src/sdk/utils/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/tools.cpp -------------------------------------------------------------------------------- /src/sdk/utils/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sdk/utils/tools.h -------------------------------------------------------------------------------- /src/sync/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sync/configs.h -------------------------------------------------------------------------------- /src/sync/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sync/sync.cpp -------------------------------------------------------------------------------- /src/sync/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/sync/sync.h -------------------------------------------------------------------------------- /src/verify/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/verify/verify.cpp -------------------------------------------------------------------------------- /src/verify/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimekoEx/cxk/HEAD/src/verify/verify.h --------------------------------------------------------------------------------