├── .classpath ├── .directory ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── CHANGELOG ├── LICENSE ├── README ├── TODO ├── bin └── droid-VNC-server.apk ├── jni ├── Android.mk ├── Application.mk ├── jpeg │ ├── Android.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── NOTICE │ ├── README │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.doc │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── filelist.doc │ ├── install-sh │ ├── install.doc │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.doc │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.S │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmem-android.c │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.doc │ ├── ltconfig │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeapps.ds │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.cfg │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makelib.ds │ ├── makeproj.mac │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── structure.doc │ ├── testimg.bmp │ ├── testimg.jpg │ ├── testimg.ppm │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.doc │ ├── wizard.doc │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libpng │ ├── ANNOUNCE │ ├── Android.mk │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── arm │ │ └── filter_neon.S │ ├── autogen.sh │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── README.txt │ │ ├── gregbook │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile.mingw32 │ │ │ ├── Makefile.sgi │ │ │ ├── Makefile.unx │ │ │ ├── Makefile.w32 │ │ │ ├── README │ │ │ ├── makevms.com │ │ │ ├── readpng.c │ │ │ ├── readpng.h │ │ │ ├── readpng2.c │ │ │ ├── readpng2.h │ │ │ ├── readppm.c │ │ │ ├── rpng-win.c │ │ │ ├── rpng-x.c │ │ │ ├── rpng2-win.c │ │ │ ├── rpng2-x.c │ │ │ ├── toucan.png │ │ │ ├── wpng.c │ │ │ ├── writepng.c │ │ │ └── writepng.h │ │ ├── libtests │ │ │ └── pngvalid.c │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ ├── pngminus │ │ │ ├── README │ │ │ ├── makefile.std │ │ │ ├── makefile.tc3 │ │ │ ├── makevms.com │ │ │ ├── png2pnm.bat │ │ │ ├── png2pnm.c │ │ │ ├── png2pnm.sh │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── pnm2png.bat │ │ │ ├── pnm2png.c │ │ │ └── pnm2png.sh │ │ ├── pngsuite │ │ │ ├── README │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── ftbbn1g04.png │ │ │ ├── ftbbn2c16.png │ │ │ ├── ftbbn3p08.png │ │ │ ├── ftbgn2c16.png │ │ │ ├── ftbgn3p08.png │ │ │ ├── ftbrn2c08.png │ │ │ ├── ftbwn1g16.png │ │ │ ├── ftbwn3p08.png │ │ │ ├── ftbyn3p08.png │ │ │ ├── ftp0n1g08.png │ │ │ ├── ftp0n2c08.png │ │ │ ├── ftp0n3p08.png │ │ │ └── ftp1n3p08.png │ │ └── visupng │ │ │ ├── PngFile.c │ │ │ ├── PngFile.h │ │ │ ├── README.txt │ │ │ ├── VisualPng.c │ │ │ ├── VisualPng.dsp │ │ │ ├── VisualPng.dsw │ │ │ ├── VisualPng.ico │ │ │ ├── VisualPng.png │ │ │ ├── VisualPng.rc │ │ │ ├── cexcept.h │ │ │ └── resource.h │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── missing │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── projects │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── readme.txt │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── chkfmt │ │ ├── def.dfn │ │ ├── descrip.mms │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.elf │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.h.prebuilt │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── smakefile.ppc │ │ ├── sym.dfn │ │ ├── symbols.def │ │ ├── symbols.dfn │ │ └── vers.dfn │ ├── test-pngtest.sh │ ├── test-pngvalid-full.sh │ └── test-pngvalid-simple.sh ├── openssl │ ├── Android.mk │ ├── CleanSpec.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── NOTICE │ ├── README.android │ ├── ThirdPartyProject.prop │ ├── android-config.mk │ ├── android.testssl │ │ ├── CAss.cnf │ │ ├── Uss.cnf │ │ ├── server2.pem │ │ ├── testssl │ │ └── testssl.sh │ ├── apps │ │ ├── Android.mk │ │ ├── CA.pl │ │ ├── CA.pl.in │ │ ├── CA.sh │ │ ├── app_rand.c │ │ ├── apps.c │ │ ├── apps.h │ │ ├── asn1pars.c │ │ ├── ca-cert.srl │ │ ├── ca-key.pem │ │ ├── ca-req.pem │ │ ├── ca.c │ │ ├── cert.pem │ │ ├── ciphers.c │ │ ├── client.pem │ │ ├── cms.c │ │ ├── crl.c │ │ ├── crl2p7.c │ │ ├── dgst.c │ │ ├── dh.c │ │ ├── dh1024.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dhparam.c │ │ ├── dsa-ca.pem │ │ ├── dsa-pca.pem │ │ ├── dsa.c │ │ ├── dsa1024.pem │ │ ├── dsa512.pem │ │ ├── dsap.pem │ │ ├── dsaparam.c │ │ ├── ec.c │ │ ├── ecparam.c │ │ ├── enc.c │ │ ├── engine.c │ │ ├── errstr.c │ │ ├── gendh.c │ │ ├── gendsa.c │ │ ├── genpkey.c │ │ ├── genrsa.c │ │ ├── md4.c │ │ ├── nseq.c │ │ ├── ocsp.c │ │ ├── oid.cnf │ │ ├── openssl.c │ │ ├── openssl.cnf │ │ ├── passwd.c │ │ ├── pca-cert.srl │ │ ├── pca-key.pem │ │ ├── pca-req.pem │ │ ├── pkcs12.c │ │ ├── pkcs7.c │ │ ├── pkcs8.c │ │ ├── pkey.c │ │ ├── pkeyparam.c │ │ ├── pkeyutl.c │ │ ├── prime.c │ │ ├── privkey.pem │ │ ├── progs.h │ │ ├── progs.pl │ │ ├── rand.c │ │ ├── req.c │ │ ├── req.pem │ │ ├── rsa.c │ │ ├── rsa8192.pem │ │ ├── rsautl.c │ │ ├── s1024key.pem │ │ ├── s1024req.pem │ │ ├── s512-key.pem │ │ ├── s512-req.pem │ │ ├── s_apps.h │ │ ├── s_cb.c │ │ ├── s_client.c │ │ ├── s_server.c │ │ ├── s_socket.c │ │ ├── s_time.c │ │ ├── server.pem │ │ ├── server.srl │ │ ├── server2.pem │ │ ├── sess_id.c │ │ ├── smime.c │ │ ├── speed.c │ │ ├── spkac.c │ │ ├── testCA.pem │ │ ├── testdsa.h │ │ ├── testrsa.h │ │ ├── timeouts.h │ │ ├── verify.c │ │ ├── version.c │ │ ├── winrand.c │ │ └── x509.c │ ├── crypto │ │ ├── Android.mk │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_win.c │ │ ├── LPdir_wince.c │ │ ├── aes │ │ │ ├── README │ │ │ ├── aes.h │ │ │ ├── aes_cbc.c │ │ │ ├── aes_cfb.c │ │ │ ├── aes_core.c │ │ │ ├── aes_ctr.c │ │ │ ├── aes_ecb.c │ │ │ ├── aes_ige.c │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.c │ │ │ ├── aes_ofb.c │ │ │ ├── aes_wrap.c │ │ │ ├── aes_x86core.c │ │ │ └── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-armv4.pl │ │ │ │ ├── aes-armv4.s │ │ │ │ ├── aes-ia64.S │ │ │ │ ├── aes-ppc.pl │ │ │ │ ├── aes-s390x.pl │ │ │ │ ├── aes-sparcv9.pl │ │ │ │ └── aes-x86_64.pl │ │ ├── alphacpuid.pl │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1.h │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_par.c │ │ │ ├── asn1t.h │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── charmap.pl │ │ │ ├── d2i_pr.c │ │ │ ├── d2i_pu.c │ │ │ ├── evp_asn1.c │ │ │ ├── f_enum.c │ │ │ ├── f_int.c │ │ │ ├── f_string.c │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pu.c │ │ │ ├── n_pkey.c │ │ │ ├── nsseq.c │ │ │ ├── p5_pbe.c │ │ │ ├── p5_pbev2.c │ │ │ ├── p8_pkey.c │ │ │ ├── t_bitst.c │ │ │ ├── t_crl.c │ │ │ ├── t_pkey.c │ │ │ ├── t_req.c │ │ │ ├── t_spki.c │ │ │ ├── t_x509.c │ │ │ ├── t_x509a.c │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_new.c │ │ │ ├── tasn_prn.c │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_utl.c │ │ │ ├── x_algor.c │ │ │ ├── x_attrib.c │ │ │ ├── x_bignum.c │ │ │ ├── x_crl.c │ │ │ ├── x_exten.c │ │ │ ├── x_info.c │ │ │ ├── x_long.c │ │ │ ├── x_name.c │ │ │ ├── x_nx509.c │ │ │ ├── x_pkey.c │ │ │ ├── x_pubkey.c │ │ │ ├── x_req.c │ │ │ ├── x_sig.c │ │ │ ├── x_spki.c │ │ │ ├── x_val.c │ │ │ ├── x_x509.c │ │ │ └── x_x509a.c │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ └── bf-686.pl │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ └── blowfish.h │ │ ├── bio │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_lbuf.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio.h │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── alpha-mont.pl │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── armv4-mont.s │ │ │ │ ├── bn-586.pl │ │ │ │ ├── co-586.pl │ │ │ │ ├── ia64.S │ │ │ │ ├── mips3-mont.pl │ │ │ │ ├── mips3.s │ │ │ │ ├── pa-risc2.s │ │ │ │ ├── pa-risc2W.s │ │ │ │ ├── ppc-mont.pl │ │ │ │ ├── ppc.pl │ │ │ │ ├── ppc64-mont.pl │ │ │ │ ├── s390x-mont.pl │ │ │ │ ├── s390x.S │ │ │ │ ├── sparcv8.S │ │ │ │ ├── sparcv8plus.S │ │ │ │ ├── sparcv9-mont.pl │ │ │ │ ├── sparcv9a-mont.pl │ │ │ │ ├── via-mont.pl │ │ │ │ ├── x86-mont.pl │ │ │ │ ├── x86.pl │ │ │ │ ├── x86 │ │ │ │ │ ├── add.pl │ │ │ │ │ ├── comba.pl │ │ │ │ │ ├── div.pl │ │ │ │ │ ├── f │ │ │ │ │ ├── mul.pl │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ ├── sqr.pl │ │ │ │ │ └── sub.pl │ │ │ │ ├── x86_64-gcc.c │ │ │ │ └── x86_64-mont.pl │ │ │ ├── bn.h │ │ │ ├── bn.mul │ │ │ ├── bn_add.c │ │ │ ├── bn_asm.c │ │ │ ├── bn_blind.c │ │ │ ├── bn_const.c │ │ │ ├── bn_ctx.c │ │ │ ├── bn_depr.c │ │ │ ├── bn_div.c │ │ │ ├── bn_err.c │ │ │ ├── bn_exp.c │ │ │ ├── bn_exp2.c │ │ │ ├── bn_gcd.c │ │ │ ├── bn_gf2m.c │ │ │ ├── bn_kron.c │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.c │ │ │ ├── bn_mod.c │ │ │ ├── bn_mont.c │ │ │ ├── bn_mpi.c │ │ │ ├── bn_mul.c │ │ │ ├── bn_nist.c │ │ │ ├── bn_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_prime.pl │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bnspeed.c │ │ │ ├── bntest.c │ │ │ ├── divtest.c │ │ │ ├── exp.c │ │ │ ├── expspeed.c │ │ │ ├── exptest.c │ │ │ └── todo │ │ ├── buffer │ │ │ ├── buf_err.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── comp │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── README │ │ │ ├── cnf_save.c │ │ │ ├── conf.h │ │ │ ├── conf_api.c │ │ │ ├── conf_api.h │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ ├── conf_sap.c │ │ │ ├── keysets.pl │ │ │ ├── ssleay.cnf │ │ │ └── test.c │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── crypto.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── crypt586.pl │ │ │ │ ├── des-586.pl │ │ │ │ ├── des_enc.m4 │ │ │ │ ├── desboth.pl │ │ │ │ └── readme │ │ │ ├── cbc3_enc.c │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des.c │ │ │ ├── des.h │ │ │ ├── des.pod │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── des_old.c │ │ │ ├── des_old.h │ │ │ ├── des_old2.c │ │ │ ├── des_opts.c │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── destest.c │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── makefile.bc │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── read2pwd.c │ │ │ ├── read_pwd.c │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.c │ │ │ ├── rpw.c │ │ │ ├── set_key.c │ │ │ ├── speed.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ ├── t │ │ │ │ └── test │ │ │ ├── times │ │ │ │ ├── 486-50.sol │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 686-200.fre │ │ │ │ ├── aix.cc │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ ├── sparc.gcc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── dh.h │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_ameth.c │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dh_pmeth.c │ │ │ ├── dhtest.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── README │ │ │ ├── dsa.h │ │ │ ├── dsa_ameth.c │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_pmeth.c │ │ │ ├── dsa_prn.c │ │ │ ├── dsa_sign.c │ │ │ ├── dsa_vrf.c │ │ │ ├── dsagen.c │ │ │ ├── dsatest.c │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── README │ │ │ ├── dso.h │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ └── dso_openssl.c │ │ ├── ebcdic.c │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── ec.h │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec_ameth.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_pmeth.c │ │ │ ├── ec_print.c │ │ │ ├── eck_prn.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_smpl.c │ │ │ └── ectest.c │ │ ├── ecdh │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── ecdsa.h │ │ │ ├── ecdsatest.c │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── README │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.c │ │ │ ├── eng_cryptodev.c │ │ │ ├── eng_ctrl.c │ │ │ ├── eng_dyn.c │ │ │ ├── eng_err.c │ │ │ ├── eng_fat.c │ │ │ ├── eng_init.c │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.c │ │ │ ├── eng_list.c │ │ │ ├── eng_openssl.c │ │ │ ├── eng_pkey.c │ │ │ ├── eng_table.c │ │ │ ├── engine.h │ │ │ ├── enginetest.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_dsa.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp.h │ │ │ ├── evp_acnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── evp_test.c │ │ │ ├── evptests.txt │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha1.c │ │ │ ├── m_sigver.c │ │ │ ├── m_wp.c │ │ │ ├── names.c │ │ │ ├── openbsd_hw.c │ │ │ ├── p5_crpt.c │ │ │ ├── p5_crpt2.c │ │ │ ├── p_dec.c │ │ │ ├── p_enc.c │ │ │ ├── p_lib.c │ │ │ ├── p_open.c │ │ │ ├── p_seal.c │ │ │ ├── p_sign.c │ │ │ ├── p_verify.c │ │ │ ├── pmeth_fn.c │ │ │ ├── pmeth_gn.c │ │ │ └── pmeth_lib.c │ │ ├── ex_data.c │ │ ├── hmac │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── jpake │ │ │ ├── jpake.c │ │ │ ├── jpake.h │ │ │ ├── jpake_err.c │ │ │ └── jpaketest.c │ │ ├── krb5 │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── lh_stats.c │ │ │ ├── lh_test.c │ │ │ ├── lhash.c │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── asm │ │ │ │ ├── md5-586.pl │ │ │ │ ├── md5-ia64.S │ │ │ │ └── md5-x86_64.pl │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.c │ │ │ ├── md5s.cpp │ │ │ └── md5test.c │ │ ├── mdc2 │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── cbc128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ └── ofb128.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_dir_test.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.pl │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.num │ │ │ ├── obj_xref.c │ │ │ ├── obj_xref.h │ │ │ ├── obj_xref.txt │ │ │ ├── objects.README │ │ │ ├── objects.h │ │ │ ├── objects.pl │ │ │ ├── objects.txt │ │ │ └── objxref.pl │ │ ├── ocsp │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── message │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pem_all.c │ │ │ ├── pem_err.c │ │ │ ├── pem_info.c │ │ │ ├── pem_lib.c │ │ │ ├── pem_oth.c │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pkey.c │ │ │ ├── pem_seal.c │ │ │ ├── pem_sign.c │ │ │ ├── pem_x509.c │ │ │ ├── pem_xaux.c │ │ │ ├── pkcs7.lis │ │ │ └── pvkfmt.c │ │ ├── perlasm │ │ │ ├── cbc.pl │ │ │ ├── ppc-xlate.pl │ │ │ ├── readme │ │ │ ├── x86_64-xlate.pl │ │ │ ├── x86asm.pl │ │ │ ├── x86gas.pl │ │ │ ├── x86masm.pl │ │ │ └── x86nasm.pl │ │ ├── pkcs12 │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ ├── pk12err.c │ │ │ └── pkcs12.h │ │ ├── pkcs7 │ │ │ ├── bio_ber.c │ │ │ ├── dec.c │ │ │ ├── des.pem │ │ │ ├── doc │ │ │ ├── enc.c │ │ │ ├── es1.pem │ │ │ ├── example.c │ │ │ ├── example.h │ │ │ ├── info.pem │ │ │ ├── infokey.pem │ │ │ ├── p7 │ │ │ │ ├── a1 │ │ │ │ ├── a2 │ │ │ │ ├── cert.p7c │ │ │ │ ├── smime.p7m │ │ │ │ └── smime.p7s │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_dgst.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_enc.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.c │ │ │ ├── server.pem │ │ │ ├── sign.c │ │ │ ├── t │ │ │ │ ├── 3des.pem │ │ │ │ ├── 3dess.pem │ │ │ │ ├── c.pem │ │ │ │ ├── ff │ │ │ │ ├── msie-e │ │ │ │ ├── msie-e.pem │ │ │ │ ├── msie-enc-01 │ │ │ │ ├── msie-enc-01.pem │ │ │ │ ├── msie-enc-02 │ │ │ │ ├── msie-enc-02.pem │ │ │ │ ├── msie-s-a-e │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ ├── nav-smime │ │ │ │ ├── s.pem │ │ │ │ └── server.pem │ │ │ └── verify.c │ │ ├── ppccpuid.pl │ │ ├── pqueue │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── md_rand.c │ │ │ ├── rand.h │ │ │ ├── rand_egd.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_nw.c │ │ │ ├── rand_os2.c │ │ │ ├── rand_unix.c │ │ │ ├── rand_win.c │ │ │ ├── randfile.c │ │ │ └── randtest.c │ │ ├── rc2 │ │ │ ├── rc2.h │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ ├── rc2ofb64.c │ │ │ ├── rc2speed.c │ │ │ ├── rc2test.c │ │ │ ├── rrc2.doc │ │ │ ├── tab.c │ │ │ └── version │ │ ├── rc4 │ │ │ ├── asm │ │ │ │ ├── rc4-586.pl │ │ │ │ ├── rc4-ia64.pl │ │ │ │ ├── rc4-s390x.pl │ │ │ │ └── rc4-x86_64.pl │ │ │ ├── rc4.c │ │ │ ├── rc4.h │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.c │ │ │ ├── rc4test.c │ │ │ └── rrc4.doc │ │ ├── ripemd │ │ │ ├── README │ │ │ ├── asm │ │ │ │ ├── rips.cpp │ │ │ │ └── rmd-586.pl │ │ │ ├── ripemd.h │ │ │ ├── rmd160.c │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ ├── rmdconst.h │ │ │ └── rmdtest.c │ │ ├── rsa │ │ │ ├── rsa.h │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_none.c │ │ │ ├── rsa_null.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pmeth.c │ │ │ ├── rsa_prn.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_ssl.c │ │ │ ├── rsa_test.c │ │ │ └── rsa_x931.c │ │ ├── s390xcap.c │ │ ├── s390xcpuid.S │ │ ├── sha │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-armv4-large.pl │ │ │ │ ├── sha1-armv4-large.s │ │ │ │ ├── sha1-ia64.pl │ │ │ │ ├── sha1-ppc.pl │ │ │ │ ├── sha1-s390x.pl │ │ │ │ ├── sha1-sparcv9.pl │ │ │ │ ├── sha1-sparcv9a.pl │ │ │ │ ├── sha1-thumb.pl │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ ├── sha256-586.pl │ │ │ │ ├── sha256-armv4.pl │ │ │ │ ├── sha256-armv4.s │ │ │ │ ├── sha512-586.pl │ │ │ │ ├── sha512-armv4.pl │ │ │ │ ├── sha512-armv4.s │ │ │ │ ├── sha512-ia64.pl │ │ │ │ ├── sha512-ppc.pl │ │ │ │ ├── sha512-s390x.pl │ │ │ │ ├── sha512-sparcv9.pl │ │ │ │ └── sha512-x86_64.pl │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── sha1.c │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha1test.c │ │ │ ├── sha256.c │ │ │ ├── sha256t.c │ │ │ ├── sha512.c │ │ │ ├── sha512t.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ └── shatest.c │ │ ├── sparccpuid.S │ │ ├── sparcv9cap.c │ │ ├── stack │ │ │ ├── safestack.h │ │ │ ├── stack.c │ │ │ └── stack.h │ │ ├── store │ │ │ ├── README │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── symhacks.h │ │ ├── threads │ │ │ ├── README │ │ │ ├── mttest.c │ │ │ ├── netware.bat │ │ │ ├── profile.sh │ │ │ ├── ptest.bat │ │ │ ├── pthread.sh │ │ │ ├── pthread2.sh │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ └── th-lock.c │ │ ├── ts │ │ │ └── ts_err.c │ │ ├── txt_db │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── ui.h │ │ │ ├── ui_compat.c │ │ │ ├── ui_compat.h │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ └── ui_util.c │ │ ├── uid.c │ │ ├── x509 │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── x509.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lu.c │ │ │ ├── x509_obj.c │ │ │ ├── x509_r2x.c │ │ │ ├── x509_req.c │ │ │ ├── x509_set.c │ │ │ ├── x509_trs.c │ │ │ ├── x509_txt.c │ │ │ ├── x509_v3.c │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ ├── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── tabtest.c │ │ │ ├── v3_addr.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.c │ │ │ ├── v3_asid.c │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bitst.c │ │ │ ├── v3_conf.c │ │ │ ├── v3_cpols.c │ │ │ ├── v3_crld.c │ │ │ ├── v3_enum.c │ │ │ ├── v3_extku.c │ │ │ ├── v3_genn.c │ │ │ ├── v3_ia5.c │ │ │ ├── v3_info.c │ │ │ ├── v3_int.c │ │ │ ├── v3_lib.c │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_pci.c │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pku.c │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_prn.c │ │ │ ├── v3_purp.c │ │ │ ├── v3_skey.c │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_utl.c │ │ │ ├── v3conf.c │ │ │ ├── v3err.c │ │ │ ├── v3prin.c │ │ │ └── x509v3.h │ │ ├── x86_64cpuid.pl │ │ └── x86cpuid.pl │ ├── e_os.h │ ├── e_os2.h │ ├── import_openssl.sh │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.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 │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.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 │ │ │ ├── sha.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 │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── openssl.config │ ├── openssl.version │ ├── patches │ │ ├── README │ │ ├── apps_Android.mk │ │ ├── crypto_Android.mk │ │ ├── handshake_cutthrough.patch │ │ ├── jsse.patch │ │ ├── npn.patch │ │ ├── progs.patch │ │ ├── small_records.patch │ │ ├── ssl_Android.mk │ │ └── testssl.sh │ └── ssl │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── bio_ssl.c │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_enc.c │ │ ├── d1_lib.c │ │ ├── d1_meth.c │ │ ├── d1_pkt.c │ │ ├── d1_srvr.c │ │ ├── dtls1.h │ │ ├── kssl.c │ │ ├── kssl.h │ │ ├── kssl_lcl.h │ │ ├── s23_clnt.c │ │ ├── s23_lib.c │ │ ├── s23_meth.c │ │ ├── s23_pkt.c │ │ ├── s23_srvr.c │ │ ├── s2_clnt.c │ │ ├── s2_enc.c │ │ ├── s2_lib.c │ │ ├── s2_meth.c │ │ ├── s2_pkt.c │ │ ├── s2_srvr.c │ │ ├── s3_both.c │ │ ├── s3_clnt.c │ │ ├── s3_enc.c │ │ ├── s3_lib.c │ │ ├── s3_meth.c │ │ ├── s3_pkt.c │ │ ├── s3_srvr.c │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_err.c │ │ ├── ssl_err2.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_stat.c │ │ ├── ssl_txt.c │ │ ├── ssltest.c │ │ ├── t1_clnt.c │ │ ├── t1_enc.c │ │ ├── t1_lib.c │ │ ├── t1_meth.c │ │ ├── t1_reneg.c │ │ ├── t1_srvr.c │ │ └── tls1.h └── vnc │ ├── Android.mk │ ├── LibVNCServer-0.9.9 │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LibVNCServer.spec.in │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── TODO │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── client_examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SDLvncviewer.c │ │ ├── backchannel.c │ │ ├── gtkvncviewer.c │ │ ├── ppmtest.c │ │ ├── scrap.c │ │ ├── scrap.h │ │ └── vnc2mpg.c │ ├── common │ │ ├── d3des.c │ │ ├── d3des.h │ │ ├── lzoconf.h │ │ ├── lzodefs.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── minilzo.c │ │ ├── minilzo.h │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── turbojpeg.c │ │ ├── turbojpeg.h │ │ ├── vncauth.c │ │ └── zywrletemplate.c │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── android │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── fbvncserver.c │ │ ├── backchannel.c │ │ ├── blooptest.c │ │ ├── camera.c │ │ ├── colourmaptest.c │ │ ├── example.c │ │ ├── filetransfer.c │ │ ├── fontsel.c │ │ ├── mac.c │ │ ├── pnmshow.c │ │ ├── pnmshow24.c │ │ ├── radon.h │ │ ├── regiontest.c │ │ ├── rotate.c │ │ ├── rotatetemplate.c │ │ ├── simple.c │ │ ├── simple15.c │ │ ├── storepasswd.c │ │ ├── vncev.c │ │ └── zippy.c │ ├── install-sh │ ├── libvncclient.pc.in │ ├── libvncclient │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── corre.c │ │ ├── cursor.c │ │ ├── hextile.c │ │ ├── listen.c │ │ ├── rfbproto.c │ │ ├── rre.c │ │ ├── sockets.c │ │ ├── tight.c │ │ ├── tls.h │ │ ├── tls_gnutls.c │ │ ├── tls_none.c │ │ ├── tls_openssl.c │ │ ├── ultra.c │ │ ├── vncviewer.c │ │ ├── zlib.c │ │ └── zrle.c │ ├── libvncserver-config.in │ ├── libvncserver.pc.in │ ├── libvncserver │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── auth.c │ │ ├── cargs.c │ │ ├── corre.c │ │ ├── cursor.c │ │ ├── cutpaste.c │ │ ├── draw.c │ │ ├── font.c │ │ ├── hextile.c │ │ ├── httpd.c │ │ ├── main.c │ │ ├── private.h │ │ ├── rfbcrypto.h │ │ ├── rfbcrypto_gnutls.c │ │ ├── rfbcrypto_included.c │ │ ├── rfbcrypto_openssl.c │ │ ├── rfbregion.c │ │ ├── rfbserver.c │ │ ├── rfbssl.h │ │ ├── rfbssl_gnutls.c │ │ ├── rfbssl_none.c │ │ ├── rfbssl_openssl.c │ │ ├── rre.c │ │ ├── scale.c │ │ ├── scale.h │ │ ├── selbox.c │ │ ├── sockets.c │ │ ├── stats.c │ │ ├── tableinit24.c │ │ ├── tableinitcmtemplate.c │ │ ├── tableinittctemplate.c │ │ ├── tabletrans24template.c │ │ ├── tabletranstemplate.c │ │ ├── tight.c │ │ ├── tightvnc-filetransfer │ │ │ ├── filelistinfo.c │ │ │ ├── filelistinfo.h │ │ │ ├── filetransfermsg.c │ │ │ ├── filetransfermsg.h │ │ │ ├── handlefiletransferrequest.c │ │ │ ├── handlefiletransferrequest.h │ │ │ ├── rfbtightproto.h │ │ │ └── rfbtightserver.c │ │ ├── translate.c │ │ ├── ultra.c │ │ ├── websockets.c │ │ ├── zlib.c │ │ ├── zrle.c │ │ ├── zrleencodetemplate.c │ │ ├── zrleoutstream.c │ │ ├── zrleoutstream.h │ │ ├── zrlepalettehelper.c │ │ ├── zrlepalettehelper.h │ │ └── zrletypes.h │ ├── ltmain.sh │ ├── missing │ ├── rfb │ │ ├── default8x16.h │ │ ├── keysym.h │ │ ├── rfb.h │ │ ├── rfbclient.h │ │ ├── rfbconfig.h │ │ ├── rfbconfig.h.cmake │ │ ├── rfbint.h │ │ ├── rfbint.h.cmake │ │ ├── rfbproto.h │ │ └── rfbregion.h │ ├── rfbconfig.h.in │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── blooptest.c │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── cargstest.c │ │ ├── copyrecttest.c │ │ ├── cursortest.c │ │ ├── encodingstest.c │ │ ├── tjbench.c │ │ ├── tjunittest.c │ │ ├── tjutil.c │ │ └── tjutil.h │ ├── vncterm │ │ ├── ChangeLog │ │ ├── LinuxVNC.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── TODO │ │ ├── VNCommand.c │ │ ├── VNConsole.c │ │ ├── VNConsole.h │ │ ├── example.c │ │ └── vga.h │ └── webclients │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── index.vnc │ │ ├── java-applet │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VncViewer.jar │ │ ├── javaviewer.pseudo_proxy.patch │ │ └── ssl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── SignedUltraViewerSSL.jar │ │ │ ├── SignedVncViewer.jar │ │ │ ├── UltraViewerSSL.jar │ │ │ ├── VncViewer.jar │ │ │ ├── index.vnc │ │ │ ├── onetimekey │ │ │ ├── proxy.vnc │ │ │ ├── ss_vncviewer │ │ │ ├── ultra.vnc │ │ │ ├── ultraproxy.vnc │ │ │ └── ultrasigned.vnc │ │ └── novnc │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── favicon.ico │ │ ├── images │ │ ├── clipboard.png │ │ ├── connect.png │ │ ├── ctrlaltdel.png │ │ ├── disconnect.png │ │ ├── drag.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── keyboard.png │ │ ├── mouse_left.png │ │ ├── mouse_middle.png │ │ ├── mouse_none.png │ │ ├── mouse_right.png │ │ ├── screen_320x460.png │ │ ├── screen_57x57.png │ │ ├── screen_700x700.png │ │ └── settings.png │ │ ├── include │ │ ├── Orbitron700.ttf │ │ ├── Orbitron700.woff │ │ ├── base.css │ │ ├── base64.js │ │ ├── black.css │ │ ├── blue.css │ │ ├── des.js │ │ ├── display.js │ │ ├── input.js │ │ ├── jsunzip.js │ │ ├── logo.js │ │ ├── playback.js │ │ ├── rfb.js │ │ ├── ui.js │ │ ├── util.js │ │ ├── vnc.js │ │ ├── web-socket-js │ │ │ ├── README.txt │ │ │ ├── WebSocketMain.swf │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ │ ├── websock.js │ │ └── webutil.js │ │ ├── vnc.html │ │ └── vnc_auto.html │ ├── droidvncserver.c │ ├── gui.c │ ├── gui.h │ ├── inputMethods │ ├── input.c │ └── input.h │ ├── linux │ └── uinput.h │ ├── screenMethods │ ├── adb.c │ ├── adb.h │ ├── flinger.c │ ├── flinger.h │ ├── framebuffer.c │ ├── framebuffer.h │ ├── gralloc.c │ └── gralloc.h │ ├── suinput │ ├── suinput.c │ └── suinput.h │ └── updateScreen.c ├── libs └── GoogleAdMobAdsSdk-6.0.1.jar ├── nativeMethods ├── Android.mk ├── common.h ├── flinger │ ├── Android.mk │ ├── README │ ├── flinger.cpp │ └── flinger.h ├── gralloc │ ├── Android.mk │ ├── README │ ├── gralloc.c │ └── gralloc.h ├── libs │ ├── armeabi-v7a │ │ ├── libdvnc_flinger_sdk14.so │ │ ├── libdvnc_flinger_sdk15.so │ │ ├── libdvnc_gralloc_sdk14.so │ │ └── libdvnc_gralloc_sdk15.so │ ├── armeabi │ │ ├── libdvnc_flinger_sdk10.so │ │ └── libdvnc_gralloc_sdk10.so │ ├── mips-r2 │ │ ├── libdvnc_flinger_sdk15.so │ │ └── libdvnc_gralloc_sdk15.so │ └── x86 │ │ ├── libdvnc_flinger_sdk14.so │ │ ├── libdvnc_flinger_sdk15.so │ │ ├── libdvnc_gralloc_sdk14.so │ │ └── libdvnc_gralloc_sdk15.so └── screenFormat.h ├── project.properties ├── res ├── anim │ └── animation.xml ├── drawable │ ├── .directory │ ├── bg.png │ ├── btnstart.xml │ ├── btnstart_normal.png │ ├── btnstop.xml │ ├── btnstop_normal.png │ ├── droidvnclogo.png │ ├── icon.png │ └── restart_normal.png ├── layout-land │ └── main.xml ├── layout │ └── main.xml ├── menu │ └── menu.xml ├── raw │ ├── self.pem │ └── webclients.zip ├── values │ ├── attrs.xml │ └── strings.xml └── xml │ └── preferences.xml ├── src └── org │ └── onaips │ └── vnc │ ├── MainActivity.java │ ├── MainApplication.java │ ├── ResLoader.java │ ├── ServerManager.java │ ├── StartServiceAtBootReceiver.java │ └── preferences.java └── updateExecsAndLibs.sh /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/.classpath -------------------------------------------------------------------------------- /.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | ShowPreview=true 3 | Timestamp=2010,9,24,20,26,16 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | libs 4 | obj 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/TODO -------------------------------------------------------------------------------- /bin/droid-VNC-server.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/bin/droid-VNC-server.apk -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /jni/jpeg/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/Android.mk -------------------------------------------------------------------------------- /jni/jpeg/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/jpeg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/NOTICE -------------------------------------------------------------------------------- /jni/jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/README -------------------------------------------------------------------------------- /jni/jpeg/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/ansi2knr.1 -------------------------------------------------------------------------------- /jni/jpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/ansi2knr.c -------------------------------------------------------------------------------- /jni/jpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/cderror.h -------------------------------------------------------------------------------- /jni/jpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/cdjpeg.c -------------------------------------------------------------------------------- /jni/jpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/cdjpeg.h -------------------------------------------------------------------------------- /jni/jpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/change.log -------------------------------------------------------------------------------- /jni/jpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/cjpeg.1 -------------------------------------------------------------------------------- /jni/jpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/cjpeg.c -------------------------------------------------------------------------------- /jni/jpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/ckconfig.c -------------------------------------------------------------------------------- /jni/jpeg/coderules.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/coderules.doc -------------------------------------------------------------------------------- /jni/jpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/config.guess -------------------------------------------------------------------------------- /jni/jpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/config.sub -------------------------------------------------------------------------------- /jni/jpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/configure -------------------------------------------------------------------------------- /jni/jpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/djpeg.1 -------------------------------------------------------------------------------- /jni/jpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/djpeg.c -------------------------------------------------------------------------------- /jni/jpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/example.c -------------------------------------------------------------------------------- /jni/jpeg/filelist.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/filelist.doc -------------------------------------------------------------------------------- /jni/jpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/install-sh -------------------------------------------------------------------------------- /jni/jpeg/install.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/install.doc -------------------------------------------------------------------------------- /jni/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcapimin.c -------------------------------------------------------------------------------- /jni/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcapistd.c -------------------------------------------------------------------------------- /jni/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jccoefct.c -------------------------------------------------------------------------------- /jni/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jccolor.c -------------------------------------------------------------------------------- /jni/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /jni/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jchuff.c -------------------------------------------------------------------------------- /jni/jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jchuff.h -------------------------------------------------------------------------------- /jni/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcinit.c -------------------------------------------------------------------------------- /jni/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcmainct.c -------------------------------------------------------------------------------- /jni/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcmarker.c -------------------------------------------------------------------------------- /jni/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcmaster.c -------------------------------------------------------------------------------- /jni/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcomapi.c -------------------------------------------------------------------------------- /jni/jpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.bcc -------------------------------------------------------------------------------- /jni/jpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.cfg -------------------------------------------------------------------------------- /jni/jpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.dj -------------------------------------------------------------------------------- /jni/jpeg/jconfig.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.doc -------------------------------------------------------------------------------- /jni/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.h -------------------------------------------------------------------------------- /jni/jpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.mac -------------------------------------------------------------------------------- /jni/jpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.manx -------------------------------------------------------------------------------- /jni/jpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.mc6 -------------------------------------------------------------------------------- /jni/jpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.sas -------------------------------------------------------------------------------- /jni/jpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.st -------------------------------------------------------------------------------- /jni/jpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.vc -------------------------------------------------------------------------------- /jni/jpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.vms -------------------------------------------------------------------------------- /jni/jpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jconfig.wat -------------------------------------------------------------------------------- /jni/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcparam.c -------------------------------------------------------------------------------- /jni/jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcphuff.c -------------------------------------------------------------------------------- /jni/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcprepct.c -------------------------------------------------------------------------------- /jni/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jcsample.c -------------------------------------------------------------------------------- /jni/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jctrans.c -------------------------------------------------------------------------------- /jni/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdapimin.c -------------------------------------------------------------------------------- /jni/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdapistd.c -------------------------------------------------------------------------------- /jni/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdatadst.c -------------------------------------------------------------------------------- /jni/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /jni/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /jni/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdcolor.c -------------------------------------------------------------------------------- /jni/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdct.h -------------------------------------------------------------------------------- /jni/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /jni/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdhuff.c -------------------------------------------------------------------------------- /jni/jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdhuff.h -------------------------------------------------------------------------------- /jni/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdinput.c -------------------------------------------------------------------------------- /jni/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdmainct.c -------------------------------------------------------------------------------- /jni/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdmarker.c -------------------------------------------------------------------------------- /jni/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdmaster.c -------------------------------------------------------------------------------- /jni/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdmerge.c -------------------------------------------------------------------------------- /jni/jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdphuff.c -------------------------------------------------------------------------------- /jni/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdpostct.c -------------------------------------------------------------------------------- /jni/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdsample.c -------------------------------------------------------------------------------- /jni/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jdtrans.c -------------------------------------------------------------------------------- /jni/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jerror.c -------------------------------------------------------------------------------- /jni/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jerror.h -------------------------------------------------------------------------------- /jni/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /jni/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /jni/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jfdctint.c -------------------------------------------------------------------------------- /jni/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jidctflt.c -------------------------------------------------------------------------------- /jni/jpeg/jidctfst.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jidctfst.S -------------------------------------------------------------------------------- /jni/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jidctfst.c -------------------------------------------------------------------------------- /jni/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jidctint.c -------------------------------------------------------------------------------- /jni/jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jidctred.c -------------------------------------------------------------------------------- /jni/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jinclude.h -------------------------------------------------------------------------------- /jni/jpeg/jmem-android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmem-android.c -------------------------------------------------------------------------------- /jni/jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemansi.c -------------------------------------------------------------------------------- /jni/jpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemdos.c -------------------------------------------------------------------------------- /jni/jpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemdosa.asm -------------------------------------------------------------------------------- /jni/jpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemmac.c -------------------------------------------------------------------------------- /jni/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /jni/jpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemname.c -------------------------------------------------------------------------------- /jni/jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /jni/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmemsys.h -------------------------------------------------------------------------------- /jni/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /jni/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jpegint.h -------------------------------------------------------------------------------- /jni/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jpeglib.h -------------------------------------------------------------------------------- /jni/jpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jpegtran.1 -------------------------------------------------------------------------------- /jni/jpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jpegtran.c -------------------------------------------------------------------------------- /jni/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jquant1.c -------------------------------------------------------------------------------- /jni/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jquant2.c -------------------------------------------------------------------------------- /jni/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jutils.c -------------------------------------------------------------------------------- /jni/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/jversion.h -------------------------------------------------------------------------------- /jni/jpeg/libjpeg.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/libjpeg.doc -------------------------------------------------------------------------------- /jni/jpeg/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/ltconfig -------------------------------------------------------------------------------- /jni/jpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/ltmain.sh -------------------------------------------------------------------------------- /jni/jpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makcjpeg.st -------------------------------------------------------------------------------- /jni/jpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makdjpeg.st -------------------------------------------------------------------------------- /jni/jpeg/makeapps.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makeapps.ds -------------------------------------------------------------------------------- /jni/jpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.ansi -------------------------------------------------------------------------------- /jni/jpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.bcc -------------------------------------------------------------------------------- /jni/jpeg/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.cfg -------------------------------------------------------------------------------- /jni/jpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.dj -------------------------------------------------------------------------------- /jni/jpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.manx -------------------------------------------------------------------------------- /jni/jpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.mc6 -------------------------------------------------------------------------------- /jni/jpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.mms -------------------------------------------------------------------------------- /jni/jpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.sas -------------------------------------------------------------------------------- /jni/jpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.unix -------------------------------------------------------------------------------- /jni/jpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.vc -------------------------------------------------------------------------------- /jni/jpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.vms -------------------------------------------------------------------------------- /jni/jpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makefile.wat -------------------------------------------------------------------------------- /jni/jpeg/makelib.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makelib.ds -------------------------------------------------------------------------------- /jni/jpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makeproj.mac -------------------------------------------------------------------------------- /jni/jpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makljpeg.st -------------------------------------------------------------------------------- /jni/jpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/maktjpeg.st -------------------------------------------------------------------------------- /jni/jpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/makvms.opt -------------------------------------------------------------------------------- /jni/jpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdbmp.c -------------------------------------------------------------------------------- /jni/jpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdcolmap.c -------------------------------------------------------------------------------- /jni/jpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdgif.c -------------------------------------------------------------------------------- /jni/jpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /jni/jpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdjpgcom.c -------------------------------------------------------------------------------- /jni/jpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdppm.c -------------------------------------------------------------------------------- /jni/jpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdrle.c -------------------------------------------------------------------------------- /jni/jpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdswitch.c -------------------------------------------------------------------------------- /jni/jpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/rdtarga.c -------------------------------------------------------------------------------- /jni/jpeg/structure.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/structure.doc -------------------------------------------------------------------------------- /jni/jpeg/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testimg.bmp -------------------------------------------------------------------------------- /jni/jpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testimg.jpg -------------------------------------------------------------------------------- /jni/jpeg/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testimg.ppm -------------------------------------------------------------------------------- /jni/jpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testimgp.jpg -------------------------------------------------------------------------------- /jni/jpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testorig.jpg -------------------------------------------------------------------------------- /jni/jpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/testprog.jpg -------------------------------------------------------------------------------- /jni/jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/transupp.c -------------------------------------------------------------------------------- /jni/jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/transupp.h -------------------------------------------------------------------------------- /jni/jpeg/usage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/usage.doc -------------------------------------------------------------------------------- /jni/jpeg/wizard.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wizard.doc -------------------------------------------------------------------------------- /jni/jpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrbmp.c -------------------------------------------------------------------------------- /jni/jpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrgif.c -------------------------------------------------------------------------------- /jni/jpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /jni/jpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrjpgcom.c -------------------------------------------------------------------------------- /jni/jpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrppm.c -------------------------------------------------------------------------------- /jni/jpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrrle.c -------------------------------------------------------------------------------- /jni/jpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/jpeg/wrtarga.c -------------------------------------------------------------------------------- /jni/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/ANNOUNCE -------------------------------------------------------------------------------- /jni/libpng/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/Android.mk -------------------------------------------------------------------------------- /jni/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/CHANGES -------------------------------------------------------------------------------- /jni/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /jni/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/INSTALL -------------------------------------------------------------------------------- /jni/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/LICENSE -------------------------------------------------------------------------------- /jni/libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/Makefile.am -------------------------------------------------------------------------------- /jni/libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/Makefile.in -------------------------------------------------------------------------------- /jni/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/README -------------------------------------------------------------------------------- /jni/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/TODO -------------------------------------------------------------------------------- /jni/libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/aclocal.m4 -------------------------------------------------------------------------------- /jni/libpng/arm/filter_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/arm/filter_neon.S -------------------------------------------------------------------------------- /jni/libpng/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/autogen.sh -------------------------------------------------------------------------------- /jni/libpng/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/config.guess -------------------------------------------------------------------------------- /jni/libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/config.h.in -------------------------------------------------------------------------------- /jni/libpng/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/config.sub -------------------------------------------------------------------------------- /jni/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/configure -------------------------------------------------------------------------------- /jni/libpng/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/configure.ac -------------------------------------------------------------------------------- /jni/libpng/contrib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/contrib/README.txt -------------------------------------------------------------------------------- /jni/libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/depcomp -------------------------------------------------------------------------------- /jni/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/example.c -------------------------------------------------------------------------------- /jni/libpng/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/install-sh -------------------------------------------------------------------------------- /jni/libpng/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/libpng-config.in -------------------------------------------------------------------------------- /jni/libpng/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/libpng-manual.txt -------------------------------------------------------------------------------- /jni/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/libpng.3 -------------------------------------------------------------------------------- /jni/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/libpng.pc.in -------------------------------------------------------------------------------- /jni/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/libpngpf.3 -------------------------------------------------------------------------------- /jni/libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/ltmain.sh -------------------------------------------------------------------------------- /jni/libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/missing -------------------------------------------------------------------------------- /jni/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/png.5 -------------------------------------------------------------------------------- /jni/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/png.c -------------------------------------------------------------------------------- /jni/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/png.h -------------------------------------------------------------------------------- /jni/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngbar.jpg -------------------------------------------------------------------------------- /jni/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngbar.png -------------------------------------------------------------------------------- /jni/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngconf.h -------------------------------------------------------------------------------- /jni/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngdebug.h -------------------------------------------------------------------------------- /jni/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngerror.c -------------------------------------------------------------------------------- /jni/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngget.c -------------------------------------------------------------------------------- /jni/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pnginfo.h -------------------------------------------------------------------------------- /jni/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pnglibconf.h -------------------------------------------------------------------------------- /jni/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngmem.c -------------------------------------------------------------------------------- /jni/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngnow.png -------------------------------------------------------------------------------- /jni/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngpread.c -------------------------------------------------------------------------------- /jni/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngpriv.h -------------------------------------------------------------------------------- /jni/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngread.c -------------------------------------------------------------------------------- /jni/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngrio.c -------------------------------------------------------------------------------- /jni/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngrtran.c -------------------------------------------------------------------------------- /jni/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngrutil.c -------------------------------------------------------------------------------- /jni/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngset.c -------------------------------------------------------------------------------- /jni/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngstruct.h -------------------------------------------------------------------------------- /jni/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngtest.c -------------------------------------------------------------------------------- /jni/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngtest.png -------------------------------------------------------------------------------- /jni/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngtrans.c -------------------------------------------------------------------------------- /jni/libpng/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngusr.dfa -------------------------------------------------------------------------------- /jni/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngwio.c -------------------------------------------------------------------------------- /jni/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngwrite.c -------------------------------------------------------------------------------- /jni/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngwtran.c -------------------------------------------------------------------------------- /jni/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/pngwutil.c -------------------------------------------------------------------------------- /jni/libpng/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/README.txt -------------------------------------------------------------------------------- /jni/libpng/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/SCOPTIONS.ppc -------------------------------------------------------------------------------- /jni/libpng/scripts/checksym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/checksym.awk -------------------------------------------------------------------------------- /jni/libpng/scripts/chkfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/chkfmt -------------------------------------------------------------------------------- /jni/libpng/scripts/def.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/def.dfn -------------------------------------------------------------------------------- /jni/libpng/scripts/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/descrip.mms -------------------------------------------------------------------------------- /jni/libpng/scripts/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/libpng.pc.in -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.acorn -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.aix -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.amiga -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.atari: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.atari -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.bc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.bc32 -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.beos -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.bor -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.cegcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.cegcc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.dec -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.dj2 -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.elf -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.gcc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.hp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.hp64 -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.hpgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.hpgcc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.hpux -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.ibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.ibmc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.intel -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.knr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.knr -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.linux -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.mips -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.msc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.sco -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.sggcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.sggcc -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.sgi -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.so9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.so9 -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.std -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.sunos -------------------------------------------------------------------------------- /jni/libpng/scripts/makefile.tc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makefile.tc3 -------------------------------------------------------------------------------- /jni/libpng/scripts/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/makevms.com -------------------------------------------------------------------------------- /jni/libpng/scripts/options.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/options.awk -------------------------------------------------------------------------------- /jni/libpng/scripts/pnglibconf.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/pnglibconf.dfa -------------------------------------------------------------------------------- /jni/libpng/scripts/pnglibconf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/pnglibconf.mak -------------------------------------------------------------------------------- /jni/libpng/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/pngwin.rc -------------------------------------------------------------------------------- /jni/libpng/scripts/smakefile.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/smakefile.ppc -------------------------------------------------------------------------------- /jni/libpng/scripts/sym.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/sym.dfn -------------------------------------------------------------------------------- /jni/libpng/scripts/symbols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/symbols.def -------------------------------------------------------------------------------- /jni/libpng/scripts/symbols.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/symbols.dfn -------------------------------------------------------------------------------- /jni/libpng/scripts/vers.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/scripts/vers.dfn -------------------------------------------------------------------------------- /jni/libpng/test-pngtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/test-pngtest.sh -------------------------------------------------------------------------------- /jni/libpng/test-pngvalid-full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/libpng/test-pngvalid-full.sh -------------------------------------------------------------------------------- /jni/openssl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/Android.mk -------------------------------------------------------------------------------- /jni/openssl/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/CleanSpec.mk -------------------------------------------------------------------------------- /jni/openssl/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/openssl/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/NOTICE -------------------------------------------------------------------------------- /jni/openssl/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/README.android -------------------------------------------------------------------------------- /jni/openssl/android-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/android-config.mk -------------------------------------------------------------------------------- /jni/openssl/apps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/Android.mk -------------------------------------------------------------------------------- /jni/openssl/apps/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/CA.pl -------------------------------------------------------------------------------- /jni/openssl/apps/CA.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/CA.pl.in -------------------------------------------------------------------------------- /jni/openssl/apps/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/CA.sh -------------------------------------------------------------------------------- /jni/openssl/apps/app_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/app_rand.c -------------------------------------------------------------------------------- /jni/openssl/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/apps.c -------------------------------------------------------------------------------- /jni/openssl/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/apps.h -------------------------------------------------------------------------------- /jni/openssl/apps/asn1pars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/asn1pars.c -------------------------------------------------------------------------------- /jni/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ca-key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ca-req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ca.c -------------------------------------------------------------------------------- /jni/openssl/apps/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/cert.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ciphers.c -------------------------------------------------------------------------------- /jni/openssl/apps/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/client.pem -------------------------------------------------------------------------------- /jni/openssl/apps/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/cms.c -------------------------------------------------------------------------------- /jni/openssl/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/crl.c -------------------------------------------------------------------------------- /jni/openssl/apps/crl2p7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/crl2p7.c -------------------------------------------------------------------------------- /jni/openssl/apps/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dgst.c -------------------------------------------------------------------------------- /jni/openssl/apps/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dh.c -------------------------------------------------------------------------------- /jni/openssl/apps/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dh1024.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dh2048.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dh4096.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dh512.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dhparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dhparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/dsa-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsa-ca.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa-pca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsa-pca.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsa1024.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsa512.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsap.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsaparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/dsaparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ec.c -------------------------------------------------------------------------------- /jni/openssl/apps/ecparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ecparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/enc.c -------------------------------------------------------------------------------- /jni/openssl/apps/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/engine.c -------------------------------------------------------------------------------- /jni/openssl/apps/errstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/errstr.c -------------------------------------------------------------------------------- /jni/openssl/apps/gendh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/gendh.c -------------------------------------------------------------------------------- /jni/openssl/apps/gendsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/gendsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/genpkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/genpkey.c -------------------------------------------------------------------------------- /jni/openssl/apps/genrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/genrsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/md4.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4.c -------------------------------------------------------------------------------- /jni/openssl/apps/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/nseq.c -------------------------------------------------------------------------------- /jni/openssl/apps/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/ocsp.c -------------------------------------------------------------------------------- /jni/openssl/apps/oid.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/oid.cnf -------------------------------------------------------------------------------- /jni/openssl/apps/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/openssl.c -------------------------------------------------------------------------------- /jni/openssl/apps/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/openssl.cnf -------------------------------------------------------------------------------- /jni/openssl/apps/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/passwd.c -------------------------------------------------------------------------------- /jni/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/pca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pca-key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/pca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pca-req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkcs12.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkcs7.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkcs8.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkey.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkeyparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkeyparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkeyutl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/pkeyutl.c -------------------------------------------------------------------------------- /jni/openssl/apps/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/prime.c -------------------------------------------------------------------------------- /jni/openssl/apps/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/privkey.pem -------------------------------------------------------------------------------- /jni/openssl/apps/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/progs.h -------------------------------------------------------------------------------- /jni/openssl/apps/progs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/progs.pl -------------------------------------------------------------------------------- /jni/openssl/apps/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/rand.c -------------------------------------------------------------------------------- /jni/openssl/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/req.c -------------------------------------------------------------------------------- /jni/openssl/apps/req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/rsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/rsa8192.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/rsa8192.pem -------------------------------------------------------------------------------- /jni/openssl/apps/rsautl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/rsautl.c -------------------------------------------------------------------------------- /jni/openssl/apps/s1024key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s1024key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/s1024req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s1024req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/s512-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s512-key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/s512-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s512-req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/s_apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_apps.h -------------------------------------------------------------------------------- /jni/openssl/apps/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_cb.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_client.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_server.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_socket.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/s_time.c -------------------------------------------------------------------------------- /jni/openssl/apps/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/server.pem -------------------------------------------------------------------------------- /jni/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/server2.pem -------------------------------------------------------------------------------- /jni/openssl/apps/sess_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/sess_id.c -------------------------------------------------------------------------------- /jni/openssl/apps/smime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/smime.c -------------------------------------------------------------------------------- /jni/openssl/apps/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/speed.c -------------------------------------------------------------------------------- /jni/openssl/apps/spkac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/spkac.c -------------------------------------------------------------------------------- /jni/openssl/apps/testCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/testCA.pem -------------------------------------------------------------------------------- /jni/openssl/apps/testdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/testdsa.h -------------------------------------------------------------------------------- /jni/openssl/apps/testrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/testrsa.h -------------------------------------------------------------------------------- /jni/openssl/apps/timeouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/timeouts.h -------------------------------------------------------------------------------- /jni/openssl/apps/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/verify.c -------------------------------------------------------------------------------- /jni/openssl/apps/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/version.c -------------------------------------------------------------------------------- /jni/openssl/apps/winrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/winrand.c -------------------------------------------------------------------------------- /jni/openssl/apps/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/apps/x509.c -------------------------------------------------------------------------------- /jni/openssl/crypto/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/Android.mk -------------------------------------------------------------------------------- /jni/openssl/crypto/LPdir_nyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/LPdir_nyi.c -------------------------------------------------------------------------------- /jni/openssl/crypto/LPdir_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/LPdir_unix.c -------------------------------------------------------------------------------- /jni/openssl/crypto/LPdir_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/LPdir_win.c -------------------------------------------------------------------------------- /jni/openssl/crypto/LPdir_wince.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/LPdir_wince.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/README -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes.h -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_cbc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_cfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_cfb.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_core.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_ctr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_ecb.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_ige.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_ige.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_misc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_ofb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_ofb.c -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/aes/aes_wrap.c -------------------------------------------------------------------------------- /jni/openssl/crypto/alphacpuid.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/alphacpuid.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_bool.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_bytes.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_dup.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_enum.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_gentm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_gentm.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_int.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_mbstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_mbstr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_octet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_octet.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_print.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_set.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_sign.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_strex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_strex.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_time.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_type.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_utctm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_utctm.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/a_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/a_utf8.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/asn1.h -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/asn1t.h -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/charmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/charmap.h -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/d2i_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/d2i_pr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/d2i_pu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/d2i_pu.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/f_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/f_enum.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/f_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/f_int.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/i2d_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/i2d_pr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/i2d_pu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/i2d_pu.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/n_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/n_pkey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/nsseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/nsseq.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/p5_pbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/p5_pbe.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/p8_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/p8_pkey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_bitst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_bitst.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_crl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_pkey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_req.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_spki.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_x509.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/t_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/t_x509a.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_algor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_algor.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_crl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_exten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_exten.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_info.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_long.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_name.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_nx509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_nx509.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_pkey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_req.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_sig.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_spki.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_val.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_x509.c -------------------------------------------------------------------------------- /jni/openssl/crypto/asn1/x_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/asn1/x_x509a.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/COPYRIGHT -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_cfb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_cfb64.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_ecb.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_ofb64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_ofb64.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_pi.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/bf_skey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/bf_skey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bf/blowfish.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/b_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/b_dump.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/b_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/b_print.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/b_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/b_sock.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bf_buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bf_buff.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bf_lbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bf_lbuf.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bf_nbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bf_nbio.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bf_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bf_null.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bio.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bio_cb.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bio_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bio_lcl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bio_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_acpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_acpt.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_bio.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_conn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_fd.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_file.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_log.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_mem.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_null.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bss_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bio/bss_sock.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/README -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/ia64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/ia64.S -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/mips3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/mips3.s -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/ppc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/ppc.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/s390x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/s390x.S -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/x86.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/asm/x86.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn.mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn.mul -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_add.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_asm.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_blind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_blind.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_const.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_ctx.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_depr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_div.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_exp.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_exp2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_gcd.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_gf2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_gf2m.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_kron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_kron.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_lcl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_mod.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_mont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_mont.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_mpi.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_mul.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_nist.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_prime.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_prime.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_prime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_prime.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_print.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_rand.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_recp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_recp.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_shift.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_sqr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_sqrt.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bn_word.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bnspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bnspeed.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bntest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/bntest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/divtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/divtest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/exp.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/expspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/expspeed.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/exptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/exptest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/bn/todo -------------------------------------------------------------------------------- /jni/openssl/crypto/comp/c_rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/comp/c_rle.c -------------------------------------------------------------------------------- /jni/openssl/crypto/comp/c_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/comp/c_zlib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/comp/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/comp/comp.h -------------------------------------------------------------------------------- /jni/openssl/crypto/conf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/conf/README -------------------------------------------------------------------------------- /jni/openssl/crypto/conf/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/conf/conf.h -------------------------------------------------------------------------------- /jni/openssl/crypto/conf/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/conf/test.c -------------------------------------------------------------------------------- /jni/openssl/crypto/cpt_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/cpt_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/cryptlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/cryptlib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/cryptlib.h -------------------------------------------------------------------------------- /jni/openssl/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/crypto.h -------------------------------------------------------------------------------- /jni/openssl/crypto/cversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/cversion.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/COPYRIGHT -------------------------------------------------------------------------------- /jni/openssl/crypto/des/DES.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/DES.pm -------------------------------------------------------------------------------- /jni/openssl/crypto/des/DES.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/DES.xs -------------------------------------------------------------------------------- /jni/openssl/crypto/des/FILES0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/FILES0 -------------------------------------------------------------------------------- /jni/openssl/crypto/des/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/INSTALL -------------------------------------------------------------------------------- /jni/openssl/crypto/des/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/Imakefile -------------------------------------------------------------------------------- /jni/openssl/crypto/des/KERBEROS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/KERBEROS -------------------------------------------------------------------------------- /jni/openssl/crypto/des/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/README -------------------------------------------------------------------------------- /jni/openssl/crypto/des/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/VERSION -------------------------------------------------------------------------------- /jni/openssl/crypto/des/asm/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/asm/readme -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cbc3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cbc3_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cbc_cksm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cbc_cksm.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cbc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cbc_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cfb64ede.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cfb64ede.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cfb64enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cfb64enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/cfb_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/cfb_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des.pod -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des3s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des3s.cpp -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_old.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_old.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_old2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_old2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_opts.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/des_ver.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/dess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/dess.cpp -------------------------------------------------------------------------------- /jni/openssl/crypto/des/destest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/destest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ecb3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ecb3_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ecb_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ecb_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/enc_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/enc_read.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/enc_writ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/enc_writ.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/fcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/fcrypt.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/fcrypt_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/fcrypt_b.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ncbc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ncbc_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ofb64ede.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ofb64ede.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ofb64enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ofb64enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/ofb_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/ofb_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/pcbc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/pcbc_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/qud_cksm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/qud_cksm.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/rand_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/rand_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/read2pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/read2pwd.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/read_pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/read_pwd.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/rpc_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/rpc_des.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/rpc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/rpc_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/rpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/rpw.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/set_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/set_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/speed.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/spr.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/str2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/str2key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/t/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/t/test -------------------------------------------------------------------------------- /jni/openssl/crypto/des/typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/typemap -------------------------------------------------------------------------------- /jni/openssl/crypto/des/xcbc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/des/xcbc_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh1024.pem -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh192.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh192.pem -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh2048.pem -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh4096.pem -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh512.pem -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_ameth.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_asn1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_check.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_depr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_gen.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dh_pmeth.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dhtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/dhtest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/example -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/generate -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/p1024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/p1024.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/p192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/p192.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/p512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dh/p512.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/README -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_asn1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_depr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_gen.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_ossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_ossl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_prn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_sign.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa_vrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsa_vrf.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsagen.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dsa/dsatest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/README -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/dso.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/dso_dl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/dso_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/dso_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/dso/dso_null.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ebcdic.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ebcdic.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec2_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec2_mult.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec2_smpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec2_smpl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_ameth.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_asn1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_check.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_curve.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_cvt.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_lcl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_mult.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_pmeth.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ec_print.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/eck_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/eck_prn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ecp_mont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ecp_mont.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ecp_nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ecp_nist.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ecp_smpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ecp_smpl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ectest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ec/ectest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ecdh/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ecdh/ecdh.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ecdh/ech_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ecdh/ech_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ecdh/ech_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ecdh/ech_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ecdh/ech_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ecdh/ech_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ecdsa/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ecdsa/ecdsa.h -------------------------------------------------------------------------------- /jni/openssl/crypto/engine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/engine/README -------------------------------------------------------------------------------- /jni/openssl/crypto/engine/tb_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/engine/tb_dh.c -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/err/err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/err/err.h -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/err/err_all.c -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/err/err_prn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/err/openssl.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/err/openssl.ec -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/bio_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/bio_b64.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/bio_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/bio_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/bio_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/bio_md.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/bio_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/bio_ok.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/c_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/c_all.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/c_allc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/c_allc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/c_alld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/c_alld.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/digest.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_aes.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_bf.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_cast.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_des.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_des3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_des3.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_dsa.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_idea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_idea.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_null.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_old.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_rc2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_rc4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_rc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_rc5.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_seed.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/e_xcbc_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/e_xcbc_d.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/encode.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp.h -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_acnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_acnf.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_key.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_pbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_pbe.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_pkey.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/evp_test.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_dss.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_dss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_dss1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_ecdsa.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_md4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_md5.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_mdc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_mdc2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_null.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_ripemd.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_sha1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_sigver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_sigver.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/m_wp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/m_wp.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/names.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p5_crpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p5_crpt.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p5_crpt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p5_crpt2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_dec.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_open.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_seal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_seal.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_sign.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/p_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/p_verify.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/pmeth_fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/pmeth_fn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/pmeth_gn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/evp/pmeth_gn.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ex_data.c -------------------------------------------------------------------------------- /jni/openssl/crypto/hmac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/hmac/hmac.c -------------------------------------------------------------------------------- /jni/openssl/crypto/hmac/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/hmac/hmac.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ia64cpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ia64cpuid.S -------------------------------------------------------------------------------- /jni/openssl/crypto/jpake/jpake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/jpake/jpake.c -------------------------------------------------------------------------------- /jni/openssl/crypto/jpake/jpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/jpake/jpake.h -------------------------------------------------------------------------------- /jni/openssl/crypto/lhash/lhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/lhash/lhash.c -------------------------------------------------------------------------------- /jni/openssl/crypto/lhash/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/lhash/lhash.h -------------------------------------------------------------------------------- /jni/openssl/crypto/lhash/num.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/lhash/num.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/md32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md32_common.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4_dgst.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4_one.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4s.cpp -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md4/md4test.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5_dgst.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5_locl.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5_one.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5s.cpp -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/md5/md5test.c -------------------------------------------------------------------------------- /jni/openssl/crypto/mdc2/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/mdc2/mdc2.h -------------------------------------------------------------------------------- /jni/openssl/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/mem.c -------------------------------------------------------------------------------- /jni/openssl/crypto/mem_clr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/mem_clr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/mem_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/mem_dbg.c -------------------------------------------------------------------------------- /jni/openssl/crypto/modes/cbc128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/modes/cbc128.c -------------------------------------------------------------------------------- /jni/openssl/crypto/modes/cfb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/modes/cfb128.c -------------------------------------------------------------------------------- /jni/openssl/crypto/modes/ctr128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/modes/ctr128.c -------------------------------------------------------------------------------- /jni/openssl/crypto/modes/ofb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/modes/ofb128.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_dir.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_dir.h -------------------------------------------------------------------------------- /jni/openssl/crypto/o_dir_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_dir_test.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_str.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_str.h -------------------------------------------------------------------------------- /jni/openssl/crypto/o_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_time.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/o_time.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ocsp/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ocsp/ocsp.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ocsp/ocsp_cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ocsp/ocsp_cl.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ocsp/ocsp_ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ocsp/ocsp_ht.c -------------------------------------------------------------------------------- /jni/openssl/crypto/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/opensslv.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ossl_typ.h -------------------------------------------------------------------------------- /jni/openssl/crypto/pem/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pem/message -------------------------------------------------------------------------------- /jni/openssl/crypto/pem/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pem/pem.h -------------------------------------------------------------------------------- /jni/openssl/crypto/pem/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pem/pem2.h -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/dec.c -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/doc -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/enc.c -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/p7/a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/p7/a1 -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/p7/a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/p7/a2 -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/t/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/pkcs7/t/ff -------------------------------------------------------------------------------- /jni/openssl/crypto/ppccpuid.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ppccpuid.pl -------------------------------------------------------------------------------- /jni/openssl/crypto/rand/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rand/rand.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rc2/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rc2/rc2.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rc2/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rc2/tab.c -------------------------------------------------------------------------------- /jni/openssl/crypto/rc2/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rc2/version -------------------------------------------------------------------------------- /jni/openssl/crypto/rc4/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rc4/rc4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/rc4/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rc4/rc4.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/rsa/rsa.h -------------------------------------------------------------------------------- /jni/openssl/crypto/s390xcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/s390xcap.c -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/sha/sha.c -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/sha/sha1.c -------------------------------------------------------------------------------- /jni/openssl/crypto/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/symhacks.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ts/ts_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ts/ts_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ui/ui.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ui/ui_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ui/ui_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ui/ui_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/ui/ui_lib.c -------------------------------------------------------------------------------- /jni/openssl/crypto/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/uid.c -------------------------------------------------------------------------------- /jni/openssl/crypto/x509/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/x509/x509.h -------------------------------------------------------------------------------- /jni/openssl/crypto/x86cpuid.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/crypto/x86cpuid.pl -------------------------------------------------------------------------------- /jni/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/e_os.h -------------------------------------------------------------------------------- /jni/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/e_os2.h -------------------------------------------------------------------------------- /jni/openssl/import_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/import_openssl.sh -------------------------------------------------------------------------------- /jni/openssl/openssl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/openssl.config -------------------------------------------------------------------------------- /jni/openssl/openssl.version: -------------------------------------------------------------------------------- 1 | # also update ThirdPartyProject.prop 2 | OPENSSL_VERSION=1.0.0e 3 | -------------------------------------------------------------------------------- /jni/openssl/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/patches/README -------------------------------------------------------------------------------- /jni/openssl/patches/jsse.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/patches/jsse.patch -------------------------------------------------------------------------------- /jni/openssl/patches/npn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/patches/npn.patch -------------------------------------------------------------------------------- /jni/openssl/patches/testssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/patches/testssl.sh -------------------------------------------------------------------------------- /jni/openssl/ssl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/Android.mk -------------------------------------------------------------------------------- /jni/openssl/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/Makefile -------------------------------------------------------------------------------- /jni/openssl/ssl/bio_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/bio_ssl.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_both.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/d1_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/dtls1.h -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/kssl.c -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/kssl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/kssl_lcl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s23_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s23_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s23_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s23_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s23_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s2_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_both.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/s3_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl2.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl23.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl3.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_algs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_algs.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_asn1.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_cert.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_ciph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_ciph.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_err.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_err2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_err2.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_locl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_rsa.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_sess.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_stat.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssl_txt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/ssltest.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_reneg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_reneg.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/t1_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/openssl/ssl/tls1.h -------------------------------------------------------------------------------- /jni/vnc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/Android.mk -------------------------------------------------------------------------------- /jni/vnc/LibVNCServer-0.9.9/examples/blooptest.c: -------------------------------------------------------------------------------- 1 | #define BACKGROUND_LOOP_TEST 2 | #include "example.c" 3 | -------------------------------------------------------------------------------- /jni/vnc/LibVNCServer-0.9.9/examples/regiontest.c: -------------------------------------------------------------------------------- 1 | #define SRA_TEST 2 | #include "../libvncserver/rfbregion.c" 3 | 4 | -------------------------------------------------------------------------------- /jni/vnc/droidvncserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/droidvncserver.c -------------------------------------------------------------------------------- /jni/vnc/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/gui.c -------------------------------------------------------------------------------- /jni/vnc/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/gui.h -------------------------------------------------------------------------------- /jni/vnc/inputMethods/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/inputMethods/input.c -------------------------------------------------------------------------------- /jni/vnc/inputMethods/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/inputMethods/input.h -------------------------------------------------------------------------------- /jni/vnc/linux/uinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/linux/uinput.h -------------------------------------------------------------------------------- /jni/vnc/screenMethods/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/screenMethods/adb.c -------------------------------------------------------------------------------- /jni/vnc/screenMethods/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/screenMethods/adb.h -------------------------------------------------------------------------------- /jni/vnc/suinput/suinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/suinput/suinput.c -------------------------------------------------------------------------------- /jni/vnc/suinput/suinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/suinput/suinput.h -------------------------------------------------------------------------------- /jni/vnc/updateScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/jni/vnc/updateScreen.c -------------------------------------------------------------------------------- /nativeMethods/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/nativeMethods/Android.mk -------------------------------------------------------------------------------- /nativeMethods/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/nativeMethods/common.h -------------------------------------------------------------------------------- /nativeMethods/flinger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/nativeMethods/flinger/README -------------------------------------------------------------------------------- /nativeMethods/gralloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/nativeMethods/gralloc/README -------------------------------------------------------------------------------- /nativeMethods/screenFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/nativeMethods/screenFormat.h -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/anim/animation.xml -------------------------------------------------------------------------------- /res/drawable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | ShowPreview=true 3 | Timestamp=2011,8,25,18,20,6 4 | Version=2 5 | -------------------------------------------------------------------------------- /res/drawable/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/drawable/bg.png -------------------------------------------------------------------------------- /res/drawable/btnstart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/drawable/btnstart.xml -------------------------------------------------------------------------------- /res/drawable/btnstop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/drawable/btnstop.xml -------------------------------------------------------------------------------- /res/drawable/droidvnclogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/drawable/droidvnclogo.png -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/layout-land/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/layout-land/main.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/menu/menu.xml -------------------------------------------------------------------------------- /res/raw/self.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/raw/self.pem -------------------------------------------------------------------------------- /res/raw/webclients.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/raw/webclients.zip -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/res/xml/preferences.xml -------------------------------------------------------------------------------- /updateExecsAndLibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oNaiPs/droidVncServer/HEAD/updateExecsAndLibs.sh --------------------------------------------------------------------------------