├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── xposed_init │ ├── cpp │ ├── CMakeLists.txt │ ├── Game │ │ ├── GameValues.h │ │ ├── Hooks.h │ │ ├── Patches.h │ │ └── Pointers.h │ ├── Menu.h │ ├── compiled_libs │ │ ├── curl │ │ │ ├── arm64-v8a │ │ │ │ ├── bin │ │ │ │ │ ├── curl │ │ │ │ │ └── curl-config │ │ │ │ ├── include │ │ │ │ │ └── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ ├── urlapi.h │ │ │ │ │ │ └── websockets.h │ │ │ │ └── lib │ │ │ │ │ ├── libcurl.a │ │ │ │ │ ├── libcurl.la │ │ │ │ │ ├── libcurl.so │ │ │ │ │ └── pkgconfig │ │ │ │ │ └── libcurl.pc │ │ │ ├── armeabi-v7a │ │ │ │ ├── bin │ │ │ │ │ ├── curl │ │ │ │ │ └── curl-config │ │ │ │ ├── include │ │ │ │ │ └── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ ├── urlapi.h │ │ │ │ │ │ └── websockets.h │ │ │ │ └── lib │ │ │ │ │ ├── libcurl.a │ │ │ │ │ ├── libcurl.la │ │ │ │ │ ├── libcurl.so │ │ │ │ │ └── pkgconfig │ │ │ │ │ └── libcurl.pc │ │ │ ├── x86 │ │ │ │ ├── bin │ │ │ │ │ ├── curl │ │ │ │ │ └── curl-config │ │ │ │ ├── include │ │ │ │ │ └── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ ├── urlapi.h │ │ │ │ │ │ └── websockets.h │ │ │ │ └── lib │ │ │ │ │ ├── libcurl.a │ │ │ │ │ ├── libcurl.la │ │ │ │ │ ├── libcurl.so │ │ │ │ │ └── pkgconfig │ │ │ │ │ └── libcurl.pc │ │ │ └── x86_64 │ │ │ │ ├── bin │ │ │ │ ├── curl │ │ │ │ └── curl-config │ │ │ │ ├── include │ │ │ │ └── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── header.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ ├── urlapi.h │ │ │ │ │ └── websockets.h │ │ │ │ └── lib │ │ │ │ ├── libcurl.a │ │ │ │ ├── libcurl.la │ │ │ │ ├── libcurl.so │ │ │ │ └── pkgconfig │ │ │ │ └── libcurl.pc │ │ └── openssl │ │ │ ├── arm64-v8a │ │ │ ├── bin │ │ │ │ ├── c_rehash │ │ │ │ └── openssl │ │ │ ├── include │ │ │ │ └── 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 │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── e_ostime.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hpke.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── indicator.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.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 │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── quic.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_acert.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ ├── lib │ │ │ │ ├── cmake │ │ │ │ │ └── OpenSSL │ │ │ │ │ │ ├── OpenSSLConfig.cmake │ │ │ │ │ │ └── OpenSSLConfigVersion.cmake │ │ │ │ ├── engines-3 │ │ │ │ │ ├── capi.so │ │ │ │ │ ├── loader_attic.so │ │ │ │ │ └── padlock.so │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libcrypto.so │ │ │ │ ├── libssl.a │ │ │ │ ├── libssl.so │ │ │ │ ├── ossl-modules │ │ │ │ │ └── legacy.so │ │ │ │ └── pkgconfig │ │ │ │ │ ├── libcrypto.pc │ │ │ │ │ ├── libssl.pc │ │ │ │ │ └── openssl.pc │ │ │ └── ssl │ │ │ │ ├── ct_log_list.cnf │ │ │ │ ├── ct_log_list.cnf.dist │ │ │ │ ├── misc │ │ │ │ ├── CA.pl │ │ │ │ ├── tsget │ │ │ │ └── tsget.pl │ │ │ │ ├── openssl.cnf │ │ │ │ └── openssl.cnf.dist │ │ │ ├── armeabi-v7a │ │ │ ├── bin │ │ │ │ ├── c_rehash │ │ │ │ └── openssl │ │ │ ├── include │ │ │ │ └── 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 │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── e_ostime.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hpke.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── indicator.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.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 │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── quic.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_acert.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ ├── lib │ │ │ │ ├── cmake │ │ │ │ │ └── OpenSSL │ │ │ │ │ │ ├── OpenSSLConfig.cmake │ │ │ │ │ │ └── OpenSSLConfigVersion.cmake │ │ │ │ ├── engines-3 │ │ │ │ │ ├── capi.so │ │ │ │ │ ├── loader_attic.so │ │ │ │ │ └── padlock.so │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libcrypto.so │ │ │ │ ├── libssl.a │ │ │ │ ├── libssl.so │ │ │ │ ├── ossl-modules │ │ │ │ │ └── legacy.so │ │ │ │ └── pkgconfig │ │ │ │ │ ├── libcrypto.pc │ │ │ │ │ ├── libssl.pc │ │ │ │ │ └── openssl.pc │ │ │ └── ssl │ │ │ │ ├── ct_log_list.cnf │ │ │ │ ├── ct_log_list.cnf.dist │ │ │ │ ├── misc │ │ │ │ ├── CA.pl │ │ │ │ ├── tsget │ │ │ │ └── tsget.pl │ │ │ │ ├── openssl.cnf │ │ │ │ └── openssl.cnf.dist │ │ │ ├── x86 │ │ │ ├── bin │ │ │ │ ├── c_rehash │ │ │ │ └── openssl │ │ │ ├── include │ │ │ │ └── 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 │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── e_ostime.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hpke.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── indicator.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.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 │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── quic.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_acert.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ ├── lib │ │ │ │ ├── cmake │ │ │ │ │ └── OpenSSL │ │ │ │ │ │ ├── OpenSSLConfig.cmake │ │ │ │ │ │ └── OpenSSLConfigVersion.cmake │ │ │ │ ├── engines-3 │ │ │ │ │ ├── capi.so │ │ │ │ │ ├── loader_attic.so │ │ │ │ │ └── padlock.so │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libcrypto.so │ │ │ │ ├── libssl.a │ │ │ │ ├── libssl.so │ │ │ │ ├── ossl-modules │ │ │ │ │ └── legacy.so │ │ │ │ └── pkgconfig │ │ │ │ │ ├── libcrypto.pc │ │ │ │ │ ├── libssl.pc │ │ │ │ │ └── openssl.pc │ │ │ └── ssl │ │ │ │ ├── ct_log_list.cnf │ │ │ │ ├── ct_log_list.cnf.dist │ │ │ │ ├── misc │ │ │ │ ├── CA.pl │ │ │ │ ├── tsget │ │ │ │ └── tsget.pl │ │ │ │ ├── openssl.cnf │ │ │ │ └── openssl.cnf.dist │ │ │ └── x86_64 │ │ │ ├── bin │ │ │ ├── c_rehash │ │ │ └── openssl │ │ │ ├── include │ │ │ └── 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 │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── e_ostime.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hpke.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── indicator.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.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 │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── quic.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── thread.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_acert.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ ├── lib │ │ │ ├── cmake │ │ │ │ └── OpenSSL │ │ │ │ │ ├── OpenSSLConfig.cmake │ │ │ │ │ └── OpenSSLConfigVersion.cmake │ │ │ ├── engines-3 │ │ │ │ ├── capi.so │ │ │ │ ├── loader_attic.so │ │ │ │ └── padlock.so │ │ │ ├── libcrypto.a │ │ │ ├── libcrypto.so │ │ │ ├── libssl.a │ │ │ ├── libssl.so │ │ │ ├── ossl-modules │ │ │ │ └── legacy.so │ │ │ └── pkgconfig │ │ │ │ ├── libcrypto.pc │ │ │ │ ├── libssl.pc │ │ │ │ └── openssl.pc │ │ │ └── ssl │ │ │ ├── ct_log_list.cnf │ │ │ ├── ct_log_list.cnf.dist │ │ │ ├── misc │ │ │ ├── CA.pl │ │ │ ├── tsget │ │ │ └── tsget.pl │ │ │ ├── openssl.cnf │ │ │ └── openssl.cnf.dist │ ├── include │ │ ├── JNIStuff.h │ │ ├── Misc.h │ │ ├── includes.h │ │ ├── input.h │ │ ├── log.h │ │ └── ptr.h │ └── main.cpp │ ├── java │ └── org │ │ └── modfs │ │ └── xposedmenu │ │ └── Inject.java │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | org.modfs.xposedmenu.Inject -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Game/GameValues.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | bool some_feature = false; -------------------------------------------------------------------------------- /app/src/main/cpp/Game/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/Game/Hooks.h -------------------------------------------------------------------------------- /app/src/main/cpp/Game/Patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/Game/Patches.h -------------------------------------------------------------------------------- /app/src/main/cpp/Game/Pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/Game/Pointers.h -------------------------------------------------------------------------------- /app/src/main/cpp/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/Menu.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/bin/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/bin/curl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/bin/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/bin/curl-config -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/curl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/curlver.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/easy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/header.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/mprintf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/multi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/options.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/system.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/urlapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/include/curl/websockets.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.la -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/libcurl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/pkgconfig/libcurl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/arm64-v8a/lib/pkgconfig/libcurl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/bin/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/bin/curl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/bin/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/bin/curl-config -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/curl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/curlver.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/easy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/header.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/mprintf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/multi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/options.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/system.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/urlapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/include/curl/websockets.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.la -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/libcurl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/pkgconfig/libcurl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/armeabi-v7a/lib/pkgconfig/libcurl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/bin/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/bin/curl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/bin/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/bin/curl-config -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/curl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/curlver.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/easy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/header.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/mprintf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/multi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/options.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/system.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/urlapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/include/curl/websockets.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.la -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/lib/libcurl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86/lib/pkgconfig/libcurl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86/lib/pkgconfig/libcurl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/bin/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/bin/curl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/bin/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/bin/curl-config -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/curl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/curlver.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/easy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/header.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/mprintf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/multi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/options.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/system.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/urlapi.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/include/curl/websockets.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.la -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/lib/libcurl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/curl/x86_64/lib/pkgconfig/libcurl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/curl/x86_64/lib/pkgconfig/libcurl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/bin/c_rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/bin/c_rehash -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/bin/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/bin/openssl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/aes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asn1t.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/async.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bio.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bioerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/blowfish.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bn.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/bnerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/buffererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/camellia.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmp_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cms.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cmserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/comp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/comperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conf_api.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/conftypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/core.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crmf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crmferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/crypto.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ct.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/cterr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/decoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/des.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dherr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/dtls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/e_os2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/e_ostime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/e_ostime.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ec.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecdh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ecerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/encoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/engine.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/engineerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ess.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/esserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/evp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/evperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/fipskey.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/hmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/hpke.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/http.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/httperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/idea.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/indicator.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/kdf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/kdferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/lhash.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/md5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/mdc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/modes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/objects.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ocsp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/opensslv.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/params.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pem.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pem2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pemerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/prov_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/prov_ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/proverr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/proverr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/provider.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/quic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rand.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/randerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rc5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ripemd.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/safestack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/seed.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/self_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/self_test.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/sha.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/srp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/srtp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ssl3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/sslerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/stack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/store.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/storeerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/symhacks.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/thread.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/tls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/trace.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ts.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/tserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/txt_db.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/ui.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/uierr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509v3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/engines-3/capi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/engines-3/capi.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/engines-3/padlock.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/engines-3/padlock.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libcrypto.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libcrypto.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libssl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/libssl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/ossl-modules/legacy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/ossl-modules/legacy.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/libcrypto.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/lib/pkgconfig/openssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/ct_log_list.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/ct_log_list.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/ct_log_list.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/ct_log_list.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/misc/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/misc/CA.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/misc/tsget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/misc/tsget.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/misc/tsget.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/openssl.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/openssl.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/arm64-v8a/ssl/openssl.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/bin/c_rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/bin/c_rehash -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/bin/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/bin/openssl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/aes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/asn1t.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/async.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bio.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bioerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bn.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/bnerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cms.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cmserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/comp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/comperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/conf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/conferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/core.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crmf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crmferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/crypto.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ct.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/cterr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/decoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/des.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dherr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/dtls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/e_os2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ec.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecdh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ecerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/encoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/engine.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ess.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/esserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/evp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/evperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/fipskey.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/hmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/hpke.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/http.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/httperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/idea.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/kdf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/kdferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/lhash.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/md5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/mdc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/modes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/objects.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ocsp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/params.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pem.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pem2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/quic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rand.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rc5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/rsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/seed.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/sha.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/srp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/srtp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ssl3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/stack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/store.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/tls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/trace.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ts.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/tserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/ui.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/uierr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/include/openssl/x509.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/engines-3/capi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/engines-3/capi.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libcrypto.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libcrypto.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libssl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/libssl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/ct_log_list.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/ct_log_list.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/misc/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/misc/CA.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/misc/tsget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/misc/tsget.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/misc/tsget.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/openssl.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/openssl.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/armeabi-v7a/ssl/openssl.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/bin/c_rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/bin/c_rehash -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/bin/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/bin/openssl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/aes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asn1t.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/async.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bio.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bioerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/blowfish.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bn.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/bnerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/buffererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/camellia.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmp_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cms.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cmserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/comp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/comperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conf_api.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/configuration.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/conftypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_dispatch.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_names.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/core_object.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crmf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crmferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/crypto.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ct.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/cterr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/decoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/decodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/decodererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/des.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dherr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/dtls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/e_os2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/e_ostime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/e_ostime.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ec.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecdh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ecerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/encoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/encodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/encodererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/engine.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/engineerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ess.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/esserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/evp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/evperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/fips_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/fips_names.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/fipskey.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/hmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/hpke.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/http.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/httperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/idea.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/indicator.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/kdf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/kdferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/lhash.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/md5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/mdc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/modes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/objects.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/objectserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ocsp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/opensslv.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/param_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/param_build.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/params.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pem.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pem2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pemerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/prov_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/prov_ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/proverr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/proverr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/provider.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/quic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rand.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/randerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rc5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ripemd.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/safestack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/seed.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/self_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/self_test.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sha.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/srp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/srtp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ssl3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sslerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sslerr_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/sslerr_legacy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/stack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/store.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/storeerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/symhacks.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/thread.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/tls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/trace.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ts.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/tserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/txt_db.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/ui.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/uierr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509_acert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509_acert.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509v3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/capi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/capi.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/loader_attic.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/loader_attic.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/padlock.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/engines-3/padlock.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/libcrypto.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/libcrypto.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/libssl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/libssl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/ossl-modules/legacy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/ossl-modules/legacy.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/libcrypto.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/lib/pkgconfig/openssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/ct_log_list.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/ct_log_list.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/ct_log_list.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/ct_log_list.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/misc/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/misc/CA.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/misc/tsget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/misc/tsget.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/misc/tsget.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/openssl.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86/ssl/openssl.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86/ssl/openssl.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/bin/c_rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/bin/c_rehash -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/bin/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/bin/openssl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/aes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asn1t.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/async.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bio.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bioerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/blowfish.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bn.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/bnerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/buffererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/camellia.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmp_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cms.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cmserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/comp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/comperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conf_api.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/conftypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/core.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/core_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/core_names.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crmf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crmferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/crypto.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ct.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/cterr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/decoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/decodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/decodererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/des.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dherr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/dtls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/e_os2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/e_ostime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/e_ostime.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ec.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecdh.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ecerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/encoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/encodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/encodererr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/engine.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/engineerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ess.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/esserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/evp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/evperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/fips_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/fips_names.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/fipskey.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/hmac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/hpke.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/http.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/httperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/idea.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/indicator.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/kdf.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/kdferr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/lhash.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/md5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/mdc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/modes.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/objects.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/objectserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ocsp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/opensslv.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/params.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pem.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pem2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pemerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/prov_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/prov_ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/proverr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/proverr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/provider.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/quic.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rand.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/randerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc4.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rc5.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ripemd.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rsa.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/safestack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/seed.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/self_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/self_test.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/sha.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/srp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/srtp.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl2.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ssl3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/sslerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/stack.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/store.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/storeerr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/symhacks.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/thread.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/tls1.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/trace.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ts.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/tserr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/txt_db.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/ui.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/uierr.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509_acert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509_acert.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509v3.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/engines-3/capi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/engines-3/capi.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/engines-3/padlock.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/engines-3/padlock.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libcrypto.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libcrypto.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libssl.a -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/libssl.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/ossl-modules/legacy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/ossl-modules/legacy.so -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/libcrypto.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/libssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/lib/pkgconfig/openssl.pc -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/ct_log_list.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/ct_log_list.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/ct_log_list.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/ct_log_list.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/misc/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/misc/CA.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/misc/tsget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/misc/tsget.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/misc/tsget.pl -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/openssl.cnf -------------------------------------------------------------------------------- /app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/openssl.cnf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/compiled_libs/openssl/x86_64/ssl/openssl.cnf.dist -------------------------------------------------------------------------------- /app/src/main/cpp/include/JNIStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/JNIStuff.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/Misc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/includes.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/input.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/log.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/include/ptr.h -------------------------------------------------------------------------------- /app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /app/src/main/java/org/modfs/xposedmenu/Inject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/java/org/modfs/xposedmenu/Inject.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedes1to/XposedImGuiMenu/HEAD/settings.gradle --------------------------------------------------------------------------------