├── README.md ├── openssl-1.0.2 ├── Android.mk ├── armeabi-v7a │ └── lib │ │ ├── libcrypto.a │ │ ├── libcrypto.so │ │ ├── libcrypto_1_0_0.so │ │ ├── libssl.a │ │ ├── libssl.so │ │ ├── libssl_1_0_0.so │ │ ├── original_so.tgz │ │ └── symlink-windows.bat ├── include │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h └── x86 │ └── lib │ ├── libcrypto.a │ ├── libcrypto.so │ ├── libcrypto_1_0_0.so │ ├── libssl.a │ ├── libssl.so │ ├── libssl_1_0_0.so │ └── symlink-windows.bat └── openssl-1.1.1k-clang ├── arm64-v8a └── lib │ ├── libcrypto.a │ ├── libcrypto.so │ ├── libcrypto.so.1.1 │ ├── libssl.a │ ├── libssl.so │ └── libssl.so.1.1 ├── armeabi-v7a └── lib │ ├── libcrypto.a │ ├── libcrypto.so │ ├── libcrypto.so.1.1 │ ├── libssl.a │ ├── libssl.so │ └── libssl.so.1.1 ├── include ├── crypto │ ├── __DECC_INCLUDE_EPILOGUE.H │ ├── __DECC_INCLUDE_PROLOGUE.H │ ├── aria.h │ ├── asn1.h │ ├── async.h │ ├── bn.h │ ├── bn_conf.h │ ├── bn_conf.h.in │ ├── bn_dh.h │ ├── bn_srp.h │ ├── chacha.h │ ├── cryptlib.h │ ├── ctype.h │ ├── dso_conf.h │ ├── dso_conf.h.in │ ├── ec.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── lhash.h │ ├── md32_common.h │ ├── objects.h │ ├── poly1305.h │ ├── rand.h │ ├── sha.h │ ├── siphash.h │ ├── sm2.h │ ├── sm2err.h │ ├── sm3.h │ ├── sm4.h │ ├── store.h │ └── x509.h ├── internal │ ├── __DECC_INCLUDE_EPILOGUE.H │ ├── __DECC_INCLUDE_PROLOGUE.H │ ├── bio.h │ ├── comp.h │ ├── conf.h │ ├── constant_time.h │ ├── cryptlib.h │ ├── dane.h │ ├── dso.h │ ├── dsoerr.h │ ├── err.h │ ├── nelem.h │ ├── numbers.h │ ├── o_dir.h │ ├── o_str.h │ ├── refcount.h │ ├── sockets.h │ ├── sslconf.h │ ├── thread_once.h │ └── tsan_assist.h └── openssl │ ├── __DECC_INCLUDE_EPILOGUE.H │ ├── __DECC_INCLUDE_PROLOGUE.H │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1err.h │ ├── asn1t.h │ ├── async.h │ ├── asyncerr.h │ ├── bio.h │ ├── bioerr.h │ ├── blowfish.h │ ├── bn.h │ ├── bnerr.h │ ├── buffer.h │ ├── buffererr.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── cmserr.h │ ├── comp.h │ ├── comperr.h │ ├── conf.h │ ├── conf_api.h │ ├── conferr.h │ ├── crypto.h │ ├── cryptoerr.h │ ├── ct.h │ ├── cterr.h │ ├── des.h │ ├── dh.h │ ├── dherr.h │ ├── dsa.h │ ├── dsaerr.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ecerr.h │ ├── engine.h │ ├── engineerr.h │ ├── err.h │ ├── evp.h │ ├── evperr.h │ ├── hmac.h │ ├── idea.h │ ├── kdf.h │ ├── kdferr.h │ ├── lhash.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── objectserr.h │ ├── ocsp.h │ ├── ocsperr.h │ ├── opensslconf.h │ ├── opensslconf.h.in │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pemerr.h │ ├── pkcs12.h │ ├── pkcs12err.h │ ├── pkcs7.h │ ├── pkcs7err.h │ ├── rand.h │ ├── rand_drbg.h │ ├── randerr.h │ ├── rc2.h │ ├── rc4.h │ ├── rc5.h │ ├── ripemd.h │ ├── rsa.h │ ├── rsaerr.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl3.h │ ├── sslerr.h │ ├── stack.h │ ├── store.h │ ├── storeerr.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── tserr.h │ ├── txt_db.h │ ├── ui.h │ ├── uierr.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ ├── x509err.h │ ├── x509v3.h │ └── x509v3err.h ├── x86 └── lib │ ├── libcrypto.a │ ├── libcrypto.so │ ├── libcrypto.so.1.1 │ ├── libssl.a │ ├── libssl.so │ └── libssl.so.1.1 └── x86_64 └── lib ├── libcrypto.a ├── libcrypto.so ├── libcrypto.so.1.1 ├── libssl.a ├── libssl.so └── libssl.so.1.1 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/README.md -------------------------------------------------------------------------------- /openssl-1.0.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/Android.mk -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libcrypto_1_0_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/libcrypto_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/libssl_1_0_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/libssl_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/original_so.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/original_so.tgz -------------------------------------------------------------------------------- /openssl-1.0.2/armeabi-v7a/lib/symlink-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/armeabi-v7a/lib/symlink-windows.bat -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/aes.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/asn1.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/asn1t.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/bio.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/blowfish.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/bn.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/buffer.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/camellia.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/cast.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/cmac.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/cms.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/comp.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/conf.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/conf_api.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/crypto.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/des.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/des_old.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/dh.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/dsa.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/dso.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/dtls1.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/e_os2.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ec.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ecdh.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/engine.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/err.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/evp.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/hmac.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/idea.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/kssl.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/lhash.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/md4.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/md5.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/mdc2.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/modes.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/objects.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ocsp.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/opensslv.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/pem.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/pem2.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/pqueue.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/rand.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/rc2.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/rc4.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ripemd.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/rsa.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/safestack.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/seed.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/sha.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/srp.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/srtp.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ssl.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ssl2.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ssl23.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ssl3.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/stack.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/symhacks.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/tls1.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ts.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/txt_db.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ui.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/x509.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /openssl-1.0.2/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/include/openssl/x509v3.h -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/x86/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libcrypto_1_0_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/x86/lib/libcrypto_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/x86/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/libssl_1_0_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/x86/lib/libssl_1_0_0.so -------------------------------------------------------------------------------- /openssl-1.0.2/x86/lib/symlink-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.0.2/x86/lib/symlink-windows.bat -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/arm64-v8a/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/arm64-v8a/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/arm64-v8a/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/arm64-v8a/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/arm64-v8a/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/armeabi-v7a/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/armeabi-v7a/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/armeabi-v7a/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/armeabi-v7a/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/armeabi-v7a/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/aria.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/asn1.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/async.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/bn.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/bn_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/bn_conf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/bn_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/bn_conf.h.in -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/bn_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/bn_dh.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/bn_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/bn_srp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/chacha.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/cryptlib.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/ctype.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/dso_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/dso_conf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/dso_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/dso_conf.h.in -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/ec.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/engine.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/evp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/lhash.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/md32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/md32_common.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/objects.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/poly1305.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/rand.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/sha.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/siphash.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/sm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/sm2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/sm2err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/sm2err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/sm3.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/sm4.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/store.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/crypto/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/crypto/x509.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/bio.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/comp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/conf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/constant_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/constant_time.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/cryptlib.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/dane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/dane.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/dso.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/dsoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/dsoerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/nelem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/nelem.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/numbers.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/o_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/o_dir.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/o_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/o_str.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/refcount.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/sockets.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/sslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/sslconf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/thread_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/thread_once.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/internal/tsan_assist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/internal/tsan_assist.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/aes.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/asn1.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/asn1err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/asn1t.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/async.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/asyncerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/bio.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/bioerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/blowfish.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/bn.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/bnerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/buffer.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/buffererr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/camellia.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cast.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cmac.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cms.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cmserr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/comp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/comperr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/conf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/conf_api.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/conferr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/crypto.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cryptoerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ct.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/cterr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/des.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/dh.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/dherr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/dsa.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/dsaerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/dtls1.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/e_os2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ec.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ecdh.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ecerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/engine.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/engineerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/evp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/evperr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/hmac.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/idea.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/kdf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/kdferr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/lhash.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/md2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/md4.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/md5.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/mdc2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/modes.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/objects.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/objectserr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ocsp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ocsperr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/opensslconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/opensslconf.h.in -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/opensslv.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pem.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pem2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pemerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pkcs12err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/pkcs7err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rand.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rand_drbg.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/randerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rc2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rc4.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rc5.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ripemd.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rsa.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/rsaerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/safestack.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/seed.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/sha.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/srp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/srtp.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ssl.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ssl2.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ssl3.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/sslerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/stack.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/store.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/storeerr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/symhacks.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/tls1.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ts.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/tserr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/txt_db.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/ui.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/uierr.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/x509.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/x509err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/x509v3.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/include/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/include/openssl/x509v3err.h -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86_64/lib/libcrypto.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libcrypto.so: -------------------------------------------------------------------------------- 1 | libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86_64/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86_64/lib/libssl.a -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libssl.so: -------------------------------------------------------------------------------- 1 | libssl.so.1.1 -------------------------------------------------------------------------------- /openssl-1.1.1k-clang/x86_64/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PurpleI2P/OpenSSL-for-Android-Prebuilt/HEAD/openssl-1.1.1k-clang/x86_64/lib/libssl.so.1.1 --------------------------------------------------------------------------------