├── AndroidManifest.xml ├── README.md ├── default.properties ├── jni ├── Android.mk ├── Application.mk ├── eio │ ├── Android.mk │ ├── demo.c │ ├── ecb.h │ ├── eio.c │ ├── eio.h │ └── xthread.h ├── ev │ ├── Android.mk │ ├── config.h │ ├── ev++.h │ ├── ev.c │ ├── ev.h │ ├── ev_epoll.c │ ├── ev_kqueue.c │ ├── ev_poll.c │ ├── ev_port.c │ ├── ev_select.c │ ├── ev_vars.h │ ├── ev_win32.c │ ├── ev_wrap.h │ ├── event.c │ ├── event.h │ └── event_compat.h ├── hello-js.cpp ├── hello-js.h ├── http_parser │ ├── .gitignore │ ├── Android.mk │ ├── CMakeLists.txt │ ├── CONTRIBUTIONS │ ├── LICENSE-MIT │ ├── Makefile │ ├── README.md │ ├── http_parser.c │ ├── http_parser.gyp │ ├── http_parser.h │ └── test.c ├── node │ ├── Android.mk │ ├── deps │ │ ├── http_parser │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTIONS │ │ │ ├── LICENSE-MIT │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── http_parser.c │ │ │ ├── http_parser.gyp │ │ │ ├── http_parser.h │ │ │ └── test.c │ │ └── uv │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common.gypi │ │ │ ├── config-mingw.mk │ │ │ ├── config-unix.mk │ │ │ ├── gyp_uv │ │ │ ├── include │ │ │ ├── ares.h │ │ │ ├── ares_version.h │ │ │ ├── uv-private │ │ │ │ ├── eio.h │ │ │ │ ├── ev.h │ │ │ │ ├── ngx-queue.h │ │ │ │ ├── tree.h │ │ │ │ ├── uv-linux.h │ │ │ │ ├── uv-unix.h │ │ │ │ └── uv-win.h │ │ │ └── uv.h │ │ │ ├── src │ │ │ ├── ares │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── README.cares │ │ │ │ ├── README.msvc │ │ │ │ ├── README.node │ │ │ │ ├── RELEASE-NOTES │ │ │ │ ├── TODO │ │ │ │ ├── ares__close_sockets.c │ │ │ │ ├── ares__get_hostent.c │ │ │ │ ├── ares__read_line.c │ │ │ │ ├── ares__timeval.c │ │ │ │ ├── ares_cancel.c │ │ │ │ ├── ares_data.c │ │ │ │ ├── ares_data.h │ │ │ │ ├── ares_destroy.c │ │ │ │ ├── ares_dns.h │ │ │ │ ├── ares_expand_name.c │ │ │ │ ├── ares_expand_string.c │ │ │ │ ├── ares_fds.c │ │ │ │ ├── ares_free_hostent.c │ │ │ │ ├── ares_free_string.c │ │ │ │ ├── ares_getenv.c │ │ │ │ ├── ares_getenv.h │ │ │ │ ├── ares_gethostbyaddr.c │ │ │ │ ├── ares_gethostbyname.c │ │ │ │ ├── ares_getnameinfo.c │ │ │ │ ├── ares_getopt.c │ │ │ │ ├── ares_getopt.h │ │ │ │ ├── ares_getsock.c │ │ │ │ ├── ares_init.c │ │ │ │ ├── ares_iphlpapi.h │ │ │ │ ├── ares_ipv6.h │ │ │ │ ├── ares_library_init.c │ │ │ │ ├── ares_library_init.h │ │ │ │ ├── ares_llist.c │ │ │ │ ├── ares_llist.h │ │ │ │ ├── ares_mkquery.c │ │ │ │ ├── ares_nowarn.c │ │ │ │ ├── ares_nowarn.h │ │ │ │ ├── ares_options.c │ │ │ │ ├── ares_parse_a_reply.c │ │ │ │ ├── ares_parse_aaaa_reply.c │ │ │ │ ├── ares_parse_mx_reply.c │ │ │ │ ├── ares_parse_ns_reply.c │ │ │ │ ├── ares_parse_ptr_reply.c │ │ │ │ ├── ares_parse_srv_reply.c │ │ │ │ ├── ares_parse_txt_reply.c │ │ │ │ ├── ares_platform.c │ │ │ │ ├── ares_platform.h │ │ │ │ ├── ares_private.h │ │ │ │ ├── ares_process.c │ │ │ │ ├── ares_query.c │ │ │ │ ├── ares_rules.h │ │ │ │ ├── ares_search.c │ │ │ │ ├── ares_send.c │ │ │ │ ├── ares_setup.h │ │ │ │ ├── ares_strcasecmp.c │ │ │ │ ├── ares_strcasecmp.h │ │ │ │ ├── ares_strdup.c │ │ │ │ ├── ares_strdup.h │ │ │ │ ├── ares_strerror.c │ │ │ │ ├── ares_timeout.c │ │ │ │ ├── ares_version.c │ │ │ │ ├── ares_writev.c │ │ │ │ ├── ares_writev.h │ │ │ │ ├── bitncmp.c │ │ │ │ ├── bitncmp.h │ │ │ │ ├── config_cygwin │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_darwin │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_freebsd │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_linux │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_netbsd │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_openbsd │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_sunos │ │ │ │ │ └── ares_config.h │ │ │ │ ├── config_win32 │ │ │ │ │ └── ares_config.h │ │ │ │ ├── get_ver.awk │ │ │ │ ├── inet_net_pton.c │ │ │ │ ├── inet_net_pton.h │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_ntop.h │ │ │ │ ├── nameser.h │ │ │ │ ├── setup_once.h │ │ │ │ └── windows_port.c │ │ │ ├── unix │ │ │ │ ├── cares.c │ │ │ │ ├── core.c │ │ │ │ ├── cygwin.c │ │ │ │ ├── darwin.c │ │ │ │ ├── eio │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Changes │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── autogen.sh │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config_cygwin.h │ │ │ │ │ ├── config_darwin.h │ │ │ │ │ ├── config_freebsd.h │ │ │ │ │ ├── config_linux.h │ │ │ │ │ ├── config_netbsd.h │ │ │ │ │ ├── config_sunos.h │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── demo.c │ │ │ │ │ ├── ecb.h │ │ │ │ │ ├── eio.3 │ │ │ │ │ ├── eio.c │ │ │ │ │ ├── eio.pod │ │ │ │ │ ├── libeio.m4 │ │ │ │ │ └── xthread.h │ │ │ │ ├── error.c │ │ │ │ ├── ev │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Changes │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── autogen.sh │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── config_cygwin.h │ │ │ │ │ ├── config_darwin.h │ │ │ │ │ ├── config_freebsd.h │ │ │ │ │ ├── config_linux.h │ │ │ │ │ ├── config_netbsd.h │ │ │ │ │ ├── config_sunos.h │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── ev++.h │ │ │ │ │ ├── ev.3 │ │ │ │ │ ├── ev.c │ │ │ │ │ ├── ev.pod │ │ │ │ │ ├── ev_epoll.c │ │ │ │ │ ├── ev_kqueue.c │ │ │ │ │ ├── ev_poll.c │ │ │ │ │ ├── ev_port.c │ │ │ │ │ ├── ev_select.c │ │ │ │ │ ├── ev_vars.h │ │ │ │ │ ├── ev_win32.c │ │ │ │ │ ├── ev_wrap.h │ │ │ │ │ ├── event.c │ │ │ │ │ ├── event.h │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── libev.m4 │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── mkinstalldirs │ │ │ │ ├── freebsd.c │ │ │ │ ├── fs.c │ │ │ │ ├── internal.h │ │ │ │ ├── linux.c │ │ │ │ ├── netbsd.c │ │ │ │ ├── pipe.c │ │ │ │ ├── process.c │ │ │ │ ├── stream.c │ │ │ │ ├── sunos.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tty.c │ │ │ │ ├── udp.c │ │ │ │ ├── uv-eio.c │ │ │ │ └── uv-eio.h │ │ │ ├── uv-common.c │ │ │ ├── uv-common.h │ │ │ └── win │ │ │ │ ├── async.c │ │ │ │ ├── cares.c │ │ │ │ ├── core.c │ │ │ │ ├── error.c │ │ │ │ ├── fs-event.c │ │ │ │ ├── fs.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── handle.c │ │ │ │ ├── internal.h │ │ │ │ ├── loop-watcher.c │ │ │ │ ├── pipe.c │ │ │ │ ├── process.c │ │ │ │ ├── req.c │ │ │ │ ├── stdio.c │ │ │ │ ├── stream.c │ │ │ │ ├── tcp.c │ │ │ │ ├── threadpool.c │ │ │ │ ├── threads.c │ │ │ │ ├── timer.c │ │ │ │ ├── tty.c │ │ │ │ ├── udp.c │ │ │ │ ├── util.c │ │ │ │ ├── winapi.c │ │ │ │ ├── winapi.h │ │ │ │ ├── winsock.c │ │ │ │ └── winsock.h │ │ │ ├── test │ │ │ ├── benchmark-ares.c │ │ │ ├── benchmark-getaddrinfo.c │ │ │ ├── benchmark-list.h │ │ │ ├── benchmark-ping-pongs.c │ │ │ ├── benchmark-pound.c │ │ │ ├── benchmark-pump.c │ │ │ ├── benchmark-sizes.c │ │ │ ├── benchmark-spawn.c │ │ │ ├── benchmark-udp-packet-storm.c │ │ │ ├── dns-server.c │ │ │ ├── echo-server.c │ │ │ ├── run-benchmarks.c │ │ │ ├── run-tests.c │ │ │ ├── runner-unix.c │ │ │ ├── runner-unix.h │ │ │ ├── runner-win.c │ │ │ ├── runner-win.h │ │ │ ├── runner.c │ │ │ ├── runner.h │ │ │ ├── task.h │ │ │ ├── test-async.c │ │ │ ├── test-callback-stack.c │ │ │ ├── test-connection-fail.c │ │ │ ├── test-delayed-accept.c │ │ │ ├── test-fail-always.c │ │ │ ├── test-fs-event.c │ │ │ ├── test-fs.c │ │ │ ├── test-get-currentexe.c │ │ │ ├── test-getaddrinfo.c │ │ │ ├── test-gethostbyname.c │ │ │ ├── test-getsockname.c │ │ │ ├── test-hrtime.c │ │ │ ├── test-idle.c │ │ │ ├── test-list.h │ │ │ ├── test-loop-handles.c │ │ │ ├── test-pass-always.c │ │ │ ├── test-ping-pong.c │ │ │ ├── test-pipe-bind-error.c │ │ │ ├── test-ref.c │ │ │ ├── test-shutdown-eof.c │ │ │ ├── test-spawn.c │ │ │ ├── test-tcp-bind-error.c │ │ │ ├── test-tcp-bind6-error.c │ │ │ ├── test-tcp-close.c │ │ │ ├── test-tcp-write-error.c │ │ │ ├── test-tcp-writealot.c │ │ │ ├── test-threadpool.c │ │ │ ├── test-timer-again.c │ │ │ ├── test-timer.c │ │ │ ├── test-tty.c │ │ │ ├── test-udp-dgram-too-big.c │ │ │ ├── test-udp-ipv6.c │ │ │ └── test-udp-send-and-recv.c │ │ │ ├── uv.gyp │ │ │ └── vcbuild.bat │ ├── lib │ │ ├── _debugger.js │ │ ├── _linklist.js │ │ ├── assert.js │ │ ├── buffer.js │ │ ├── buffer_ieee754.js │ │ ├── child_process_legacy.js │ │ ├── child_process_uv.js │ │ ├── console.js │ │ ├── constants.js │ │ ├── crypto.js │ │ ├── dgram_legacy.js │ │ ├── dgram_uv.js │ │ ├── dns_legacy.js │ │ ├── dns_uv.js │ │ ├── events.js │ │ ├── freelist.js │ │ ├── fs.js │ │ ├── http.js │ │ ├── http2.js │ │ ├── https.js │ │ ├── https2.js │ │ ├── module.js │ │ ├── net_legacy.js │ │ ├── net_uv.js │ │ ├── os.js │ │ ├── path.js │ │ ├── punycode.js │ │ ├── querystring.js │ │ ├── readline.js │ │ ├── repl.js │ │ ├── stream.js │ │ ├── string_decoder.js │ │ ├── sys.js │ │ ├── timers_legacy.js │ │ ├── timers_uv.js │ │ ├── tls.js │ │ ├── tty_legacy.js │ │ ├── tty_posix.js │ │ ├── tty_uv.js │ │ ├── tty_win32.js │ │ ├── url.js │ │ ├── util.js │ │ ├── vm.js │ │ ├── xml_http_request.js │ │ └── zlib.js │ └── src │ │ ├── cares_wrap.cc │ │ ├── fs_event_wrap.cc │ │ ├── handle_wrap.cc │ │ ├── handle_wrap.h │ │ ├── macros.py │ │ ├── node.cc │ │ ├── node.d │ │ ├── node.h │ │ ├── node.js │ │ ├── node_buffer.cc │ │ ├── node_buffer.h │ │ ├── node_cares.cc │ │ ├── node_cares.h │ │ ├── node_child_process.cc │ │ ├── node_child_process.h │ │ ├── node_config.h.in │ │ ├── node_constants.cc │ │ ├── node_constants.h │ │ ├── node_crypto.cc │ │ ├── node_crypto.h │ │ ├── node_dtrace.cc │ │ ├── node_dtrace.h │ │ ├── node_extensions.cc │ │ ├── node_extensions.h │ │ ├── node_file.cc │ │ ├── node_file.h │ │ ├── node_http_parser.cc │ │ ├── node_http_parser.h │ │ ├── node_io_watcher.cc │ │ ├── node_io_watcher.h │ │ ├── node_javascript.cc │ │ ├── node_javascript.h │ │ ├── node_main.cc │ │ ├── node_natives.h │ │ ├── node_net.cc │ │ ├── node_net.h │ │ ├── node_object_wrap.h │ │ ├── node_os.cc │ │ ├── node_os.h │ │ ├── node_provider.d │ │ ├── node_root_certs.h │ │ ├── node_script.cc │ │ ├── node_script.h │ │ ├── node_signal_watcher.cc │ │ ├── node_signal_watcher.h │ │ ├── node_stat_watcher.cc │ │ ├── node_stat_watcher.h │ │ ├── node_stdio.cc │ │ ├── node_stdio.h │ │ ├── node_stdio_win32.cc │ │ ├── node_string.cc │ │ ├── node_string.h │ │ ├── node_timer.cc │ │ ├── node_timer.h │ │ ├── node_version.h │ │ ├── node_zlib.cc │ │ ├── pipe_wrap.cc │ │ ├── pipe_wrap.h │ │ ├── platform.h │ │ ├── platform_android.cc │ │ ├── platform_cygwin.cc │ │ ├── platform_darwin.cc │ │ ├── platform_darwin_proctitle.cc │ │ ├── platform_freebsd.cc │ │ ├── platform_linux.cc │ │ ├── platform_none.cc │ │ ├── platform_openbsd.cc │ │ ├── platform_sunos.cc │ │ ├── platform_win32.cc │ │ ├── platform_win32.h │ │ ├── process_wrap.cc │ │ ├── req_wrap.h │ │ ├── stdio_wrap.cc │ │ ├── stream_wrap.cc │ │ ├── stream_wrap.h │ │ ├── tcp_wrap.cc │ │ ├── timer_wrap.cc │ │ ├── tty_wrap.cc │ │ ├── udp_wrap.cc │ │ ├── v8_typed_array.cc │ │ └── v8_typed_array.h ├── openssl │ ├── ACKNOWLEDGMENTS │ ├── CHANGES │ ├── CHANGES.SSLeay │ ├── Configure │ ├── FAQ │ ├── INSTALL │ ├── INSTALL.DJGPP │ ├── INSTALL.MacOS │ ├── INSTALL.NW │ ├── INSTALL.OS2 │ ├── INSTALL.VMS │ ├── INSTALL.W32 │ ├── INSTALL.W64 │ ├── INSTALL.WCE │ ├── LICENSE │ ├── MacOS │ │ ├── GUSI_Init.cpp │ │ ├── GetHTTPS.src │ │ │ ├── CPStringUtils.cpp │ │ │ ├── CPStringUtils.hpp │ │ │ ├── ErrorHandling.cpp │ │ │ ├── ErrorHandling.hpp │ │ │ ├── GetHTTPS.cpp │ │ │ ├── MacSocket.cpp │ │ │ └── MacSocket.h │ │ ├── OpenSSL.mcp.hqx │ │ ├── Randomizer.cpp │ │ ├── Randomizer.h │ │ ├── TODO │ │ ├── _MWERKS_GUSI_prefix.h │ │ ├── _MWERKS_prefix.h │ │ ├── buildinf.h │ │ ├── mklinks.as.hqx │ │ └── opensslconf.h │ ├── Makefile │ ├── Makefile.bak │ ├── Makefile.org │ ├── Makefile.shared │ ├── NEWS │ ├── Netware │ │ ├── build.bat │ │ ├── cpy_tests.bat │ │ ├── do_tests.pl │ │ ├── globals.txt │ │ ├── readme.txt │ │ └── set_env.bat │ ├── PROBLEMS │ ├── README │ ├── README.ASN1 │ ├── README.ENGINE │ ├── VMS │ │ ├── TODO │ │ ├── VMSify-conf.pl │ │ ├── WISHLIST.TXT │ │ ├── install-vms.com │ │ ├── mkshared.com │ │ ├── multinet_shr.opt │ │ ├── openssl_startup.com │ │ ├── openssl_undo.com │ │ ├── openssl_utils.com │ │ ├── socketshr_shr.opt │ │ ├── tcpip_shr_decc.opt │ │ ├── test-includes.com │ │ ├── ucx_shr_decc.opt │ │ ├── ucx_shr_decc_log.opt │ │ └── ucx_shr_vaxc.opt │ ├── apps │ │ ├── CA.com │ │ ├── CA.pl │ │ ├── CA.pl.bak │ │ ├── CA.pl.in │ │ ├── CA.sh │ │ ├── Makefile │ │ ├── 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 │ │ ├── demoCA │ │ │ ├── cacert.pem │ │ │ ├── index.txt │ │ │ ├── private │ │ │ │ └── cakey.pem │ │ │ └── serial │ │ ├── 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 │ │ ├── install-apps.com │ │ ├── makeapps.com │ │ ├── md4.c │ │ ├── nseq.c │ │ ├── ocsp.c │ │ ├── oid.cnf │ │ ├── openssl-vms.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 │ │ ├── set │ │ │ ├── set-g-ca.pem │ │ │ ├── set-m-ca.pem │ │ │ ├── set_b_ca.pem │ │ │ ├── set_c_ca.pem │ │ │ ├── set_d_ct.pem │ │ │ └── set_root.pem │ │ ├── smime.c │ │ ├── speed.c │ │ ├── spkac.c │ │ ├── testCA.pem │ │ ├── testdsa.h │ │ ├── testrsa.h │ │ ├── timeouts.h │ │ ├── ts.c │ │ ├── tsget │ │ ├── verify.c │ │ ├── version.c │ │ ├── vms_decc_init.c │ │ ├── winrand.c │ │ └── x509.c │ ├── bugs │ │ ├── MS │ │ ├── SSLv3 │ │ ├── alpha.c │ │ ├── dggccbug.c │ │ ├── sgiccbug.c │ │ ├── sslref.dif │ │ ├── stream.c │ │ └── ultrixcc.c │ ├── certs │ │ ├── README.RootCerts │ │ ├── demo │ │ │ ├── ca-cert.pem │ │ │ ├── dsa-ca.pem │ │ │ ├── dsa-pca.pem │ │ │ └── pca-cert.pem │ │ └── expired │ │ │ └── ICE.crl │ ├── config │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_vms.c │ │ ├── LPdir_win.c │ │ ├── LPdir_win32.c │ │ ├── LPdir_wince.c │ │ ├── Makefile │ │ ├── aes │ │ │ ├── Makefile │ │ │ ├── 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-ia64.S │ │ │ │ ├── aes-ppc.pl │ │ │ │ ├── aes-s390x.pl │ │ │ │ ├── aes-sparcv9.pl │ │ │ │ └── aes-x86_64.pl │ │ ├── alphacpuid.pl │ │ ├── asn1 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ ├── bf-686.pl │ │ │ │ └── readme │ │ │ ├── bf_cbc.c │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_opts.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ ├── bfs.cpp │ │ │ ├── bfspeed.c │ │ │ ├── bftest.c │ │ │ └── blowfish.h │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── 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_rtcp.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── alpha-mont.pl │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── 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 │ │ │ │ ├── vms.mar │ │ │ │ ├── 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 │ │ │ └── vms-helper.c │ │ ├── buffer │ │ │ ├── Makefile │ │ │ ├── buf_err.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── camellia │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── cmll-x86.pl │ │ │ │ └── cmll-x86_64.pl │ │ │ ├── camellia.c │ │ │ ├── camellia.h │ │ │ ├── cmll_cbc.c │ │ │ ├── cmll_cfb.c │ │ │ ├── cmll_ctr.c │ │ │ ├── cmll_ecb.c │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.c │ │ │ └── cmll_ofb.c │ │ ├── cast │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── cast-586.pl │ │ │ │ └── readme │ │ │ ├── c_cfb64.c │ │ │ ├── c_ecb.c │ │ │ ├── c_enc.c │ │ │ ├── c_ofb64.c │ │ │ ├── c_skey.c │ │ │ ├── cast.h │ │ │ ├── cast_lcl.h │ │ │ ├── cast_s.h │ │ │ ├── cast_spd.c │ │ │ ├── castopts.c │ │ │ ├── casts.cpp │ │ │ └── casttest.c │ │ ├── cms │ │ │ ├── Makefile │ │ │ ├── cms.h │ │ │ ├── cms_asn1.c │ │ │ ├── cms_att.c │ │ │ ├── cms_cd.c │ │ │ ├── cms_dd.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_env.c │ │ │ ├── cms_err.c │ │ │ ├── cms_ess.c │ │ │ ├── cms_io.c │ │ │ ├── cms_lcl.h │ │ │ ├── cms_lib.c │ │ │ ├── cms_sd.c │ │ │ └── cms_smime.c │ │ ├── comp │ │ │ ├── Makefile │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── Makefile │ │ │ ├── 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-lib.com │ │ ├── crypto.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── Makefile │ │ │ ├── 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-lib.com │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── dh_prn.c │ │ │ ├── dhtest.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dso.h │ │ │ ├── dso_beos.c │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ ├── dso_openssl.c │ │ │ ├── dso_vms.c │ │ │ └── dso_win32.c │ │ ├── ebcdic.c │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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_asnmth.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_pkmeth.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── Makefile │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── Makefile │ │ │ ├── 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_md2.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha.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 │ │ │ ├── Makefile │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── i_cbc.c │ │ │ ├── i_cfb64.c │ │ │ ├── i_ecb.c │ │ │ ├── i_ofb64.c │ │ │ ├── i_skey.c │ │ │ ├── idea.h │ │ │ ├── idea_lcl.h │ │ │ ├── idea_spd.c │ │ │ ├── ideatest.c │ │ │ └── version │ │ ├── install-crypto.com │ │ ├── jpake │ │ │ ├── Makefile │ │ │ ├── jpake.c │ │ │ ├── jpake.h │ │ │ ├── jpake_err.c │ │ │ └── jpaketest.c │ │ ├── krb5 │ │ │ ├── Makefile │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── Makefile │ │ │ ├── lh_stats.c │ │ │ ├── lh_test.c │ │ │ ├── lhash.c │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md2 │ │ │ ├── Makefile │ │ │ ├── md2.c │ │ │ ├── md2.h │ │ │ ├── md2_dgst.c │ │ │ ├── md2_one.c │ │ │ └── md2test.c │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── Makefile │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── Makefile │ │ │ ├── cbc128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ ├── cts128.c │ │ │ ├── modes.h │ │ │ └── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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.bak │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── bio_ber.c │ │ │ ├── bio_pk7.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 │ │ │ ├── Makefile │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── Makefile │ │ │ ├── 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_vms.c │ │ │ ├── rand_win.c │ │ │ ├── randfile.c │ │ │ └── randtest.c │ │ ├── rc2 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ ├── rc5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ └── rc5-586.pl │ │ │ ├── rc5.h │ │ │ ├── rc5_ecb.c │ │ │ ├── rc5_enc.c │ │ │ ├── rc5_locl.h │ │ │ ├── rc5_skey.c │ │ │ ├── rc5cfb64.c │ │ │ ├── rc5ofb64.c │ │ │ ├── rc5s.cpp │ │ │ ├── rc5speed.c │ │ │ └── rc5test.c │ │ ├── ripemd │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ ├── seed │ │ │ ├── Makefile │ │ │ ├── seed.c │ │ │ ├── seed.h │ │ │ ├── seed_cbc.c │ │ │ ├── seed_cfb.c │ │ │ ├── seed_ecb.c │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.c │ │ ├── sha │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-armv4-large.pl │ │ │ │ ├── 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 │ │ │ │ ├── sha512-586.pl │ │ │ │ ├── sha512-armv4.pl │ │ │ │ ├── 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 │ │ │ ├── sha_one.c │ │ │ └── shatest.c │ │ ├── sparccpuid.S │ │ ├── sparcv9cap.c │ │ ├── stack │ │ │ ├── Makefile │ │ │ ├── safestack.h │ │ │ ├── stack.c │ │ │ └── stack.h │ │ ├── store │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── pthreads-vms.com │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ ├── th-lock.c │ │ │ └── win32.bat │ │ ├── ts │ │ │ ├── Makefile │ │ │ ├── ts.h │ │ │ ├── ts_asn1.c │ │ │ ├── ts_conf.c │ │ │ ├── ts_err.c │ │ │ ├── ts_lib.c │ │ │ ├── ts_req_print.c │ │ │ ├── ts_req_utils.c │ │ │ ├── ts_rsp_print.c │ │ │ ├── ts_rsp_sign.c │ │ │ ├── ts_rsp_utils.c │ │ │ ├── ts_rsp_verify.c │ │ │ └── ts_verify_ctx.c │ │ ├── txt_db │ │ │ ├── Makefile │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── Makefile │ │ │ ├── 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 │ │ ├── vms_rms.h │ │ ├── whrlpool │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── wp-mmx.pl │ │ │ │ └── wp-x86_64.pl │ │ │ ├── whrlpool.h │ │ │ ├── wp_block.c │ │ │ ├── wp_dgst.c │ │ │ ├── wp_locl.h │ │ │ └── wp_test.c │ │ ├── x509 │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── 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 │ ├── demos │ │ ├── README │ │ ├── asn1 │ │ │ ├── README.ASN1 │ │ │ └── ocsp.c │ │ ├── b64.c │ │ ├── b64.pl │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── saccept.c │ │ │ ├── sconnect.c │ │ │ └── server.pem │ │ ├── cms │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── cms_comp.c │ │ │ ├── cms_ddec.c │ │ │ ├── cms_dec.c │ │ │ ├── cms_denc.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_sign.c │ │ │ ├── cms_sign2.c │ │ │ ├── cms_uncomp.c │ │ │ ├── cms_ver.c │ │ │ ├── comp.txt │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ └── signer2.pem │ │ ├── easy_tls │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cacerts.pem │ │ │ ├── cert.pem │ │ │ ├── easy-tls.c │ │ │ ├── easy-tls.h │ │ │ ├── test.c │ │ │ └── test.h │ │ ├── eay │ │ │ ├── Makefile │ │ │ ├── base64.c │ │ │ ├── conn.c │ │ │ └── loadrsa.c │ │ ├── engines │ │ │ ├── cluster_labs │ │ │ │ ├── Makefile │ │ │ │ ├── cluster_labs.h │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ └── hw_cluster_labs_err.h │ │ │ ├── ibmca │ │ │ │ ├── Makefile │ │ │ │ ├── hw_ibmca.c │ │ │ │ ├── hw_ibmca.ec │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ └── ica_openssl_api.h │ │ │ ├── rsaref │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.com │ │ │ │ ├── rsaref.c │ │ │ │ ├── rsaref.ec │ │ │ │ ├── rsaref_err.c │ │ │ │ └── rsaref_err.h │ │ │ └── zencod │ │ │ │ ├── Makefile │ │ │ │ ├── hw_zencod.c │ │ │ │ ├── hw_zencod.ec │ │ │ │ ├── hw_zencod.h │ │ │ │ ├── hw_zencod_err.c │ │ │ │ └── hw_zencod_err.h │ │ ├── maurice │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cert.pem │ │ │ ├── example1.c │ │ │ ├── example2.c │ │ │ ├── example3.c │ │ │ ├── example4.c │ │ │ ├── loadkeys.c │ │ │ ├── loadkeys.h │ │ │ └── privkey.pem │ │ ├── pkcs12 │ │ │ ├── README │ │ │ ├── pkread.c │ │ │ └── pkwrite.c │ │ ├── prime │ │ │ ├── Makefile │ │ │ └── prime.c │ │ ├── privkey.pem │ │ ├── selfsign.c │ │ ├── sign │ │ │ ├── Makefile │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ ├── sig.txt │ │ │ ├── sign.c │ │ │ └── sign.txt │ │ ├── smime │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ ├── signer2.pem │ │ │ ├── smdec.c │ │ │ ├── smenc.c │ │ │ ├── smsign.c │ │ │ ├── smsign2.c │ │ │ └── smver.c │ │ ├── spkigen.c │ │ ├── ssl │ │ │ ├── cli.cpp │ │ │ ├── inetdsrv.cpp │ │ │ └── serv.cpp │ │ ├── ssltest-ecc │ │ │ ├── ECC-RSAcertgen.sh │ │ │ ├── ECCcertgen.sh │ │ │ ├── README │ │ │ ├── RSAcertgen.sh │ │ │ └── ssltest.sh │ │ ├── state_machine │ │ │ ├── Makefile │ │ │ └── state_machine.c │ │ ├── tunala │ │ │ ├── A-client.pem │ │ │ ├── A-server.pem │ │ │ ├── CA.pem │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── autogunk.sh │ │ │ ├── autoungunk.sh │ │ │ ├── breakage.c │ │ │ ├── buffer.c │ │ │ ├── cb.c │ │ │ ├── configure.in │ │ │ ├── ip.c │ │ │ ├── sm.c │ │ │ ├── test.sh │ │ │ ├── tunala.c │ │ │ └── tunala.h │ │ └── x509 │ │ │ ├── README │ │ │ ├── mkcert.c │ │ │ └── mkreq.c │ ├── doc │ │ ├── HOWTO │ │ │ ├── certificates.txt │ │ │ ├── keys.txt │ │ │ └── proxy_certificates.txt │ │ ├── README │ │ ├── apps │ │ │ ├── CA.pl.pod │ │ │ ├── asn1parse.pod │ │ │ ├── ca.pod │ │ │ ├── ciphers.pod │ │ │ ├── cms.pod │ │ │ ├── config.pod │ │ │ ├── crl.pod │ │ │ ├── crl2pkcs7.pod │ │ │ ├── dgst.pod │ │ │ ├── dhparam.pod │ │ │ ├── dsa.pod │ │ │ ├── dsaparam.pod │ │ │ ├── ec.pod │ │ │ ├── ecparam.pod │ │ │ ├── enc.pod │ │ │ ├── errstr.pod │ │ │ ├── gendsa.pod │ │ │ ├── genpkey.pod │ │ │ ├── genrsa.pod │ │ │ ├── nseq.pod │ │ │ ├── ocsp.pod │ │ │ ├── openssl.pod │ │ │ ├── passwd.pod │ │ │ ├── pkcs12.pod │ │ │ ├── pkcs7.pod │ │ │ ├── pkcs8.pod │ │ │ ├── pkey.pod │ │ │ ├── pkeyparam.pod │ │ │ ├── pkeyutl.pod │ │ │ ├── rand.pod │ │ │ ├── req.pod │ │ │ ├── rsa.pod │ │ │ ├── rsautl.pod │ │ │ ├── s_client.pod │ │ │ ├── s_server.pod │ │ │ ├── s_time.pod │ │ │ ├── sess_id.pod │ │ │ ├── smime.pod │ │ │ ├── speed.pod │ │ │ ├── spkac.pod │ │ │ ├── ts.pod │ │ │ ├── tsget.pod │ │ │ ├── verify.pod │ │ │ ├── version.pod │ │ │ ├── x509.pod │ │ │ └── x509v3_config.pod │ │ ├── c-indentation.el │ │ ├── crypto │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ ├── ASN1_STRING_length.pod │ │ │ ├── ASN1_STRING_new.pod │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ ├── ASN1_generate_nconf.pod │ │ │ ├── BIO_ctrl.pod │ │ │ ├── BIO_f_base64.pod │ │ │ ├── BIO_f_buffer.pod │ │ │ ├── BIO_f_cipher.pod │ │ │ ├── BIO_f_md.pod │ │ │ ├── BIO_f_null.pod │ │ │ ├── BIO_f_ssl.pod │ │ │ ├── BIO_find_type.pod │ │ │ ├── BIO_new.pod │ │ │ ├── BIO_new_CMS.pod │ │ │ ├── BIO_push.pod │ │ │ ├── BIO_read.pod │ │ │ ├── BIO_s_accept.pod │ │ │ ├── BIO_s_bio.pod │ │ │ ├── BIO_s_connect.pod │ │ │ ├── BIO_s_fd.pod │ │ │ ├── BIO_s_file.pod │ │ │ ├── BIO_s_mem.pod │ │ │ ├── BIO_s_null.pod │ │ │ ├── BIO_s_socket.pod │ │ │ ├── BIO_set_callback.pod │ │ │ ├── BIO_should_retry.pod │ │ │ ├── BN_BLINDING_new.pod │ │ │ ├── BN_CTX_new.pod │ │ │ ├── BN_CTX_start.pod │ │ │ ├── BN_add.pod │ │ │ ├── BN_add_word.pod │ │ │ ├── BN_bn2bin.pod │ │ │ ├── BN_cmp.pod │ │ │ ├── BN_copy.pod │ │ │ ├── BN_generate_prime.pod │ │ │ ├── BN_mod_inverse.pod │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ ├── BN_new.pod │ │ │ ├── BN_num_bytes.pod │ │ │ ├── BN_rand.pod │ │ │ ├── BN_set_bit.pod │ │ │ ├── BN_swap.pod │ │ │ ├── BN_zero.pod │ │ │ ├── CMS_add0_cert.pod │ │ │ ├── CMS_add1_recipient_cert.pod │ │ │ ├── CMS_compress.pod │ │ │ ├── CMS_decrypt.pod │ │ │ ├── CMS_encrypt.pod │ │ │ ├── CMS_final.pod │ │ │ ├── CMS_get0_RecipientInfos.pod │ │ │ ├── CMS_get0_SignerInfos.pod │ │ │ ├── CMS_get0_type.pod │ │ │ ├── CMS_get1_ReceiptRequest.pod │ │ │ ├── CMS_sign.pod │ │ │ ├── CMS_sign_add1_signer.pod │ │ │ ├── CMS_sign_receipt.pod │ │ │ ├── CMS_uncompress.pod │ │ │ ├── CMS_verify.pod │ │ │ ├── CMS_verify_receipt.pod │ │ │ ├── CONF_modules_free.pod │ │ │ ├── CONF_modules_load_file.pod │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ ├── DH_generate_key.pod │ │ │ ├── DH_generate_parameters.pod │ │ │ ├── DH_get_ex_new_index.pod │ │ │ ├── DH_new.pod │ │ │ ├── DH_set_method.pod │ │ │ ├── DH_size.pod │ │ │ ├── DSA_SIG_new.pod │ │ │ ├── DSA_do_sign.pod │ │ │ ├── DSA_dup_DH.pod │ │ │ ├── DSA_generate_key.pod │ │ │ ├── DSA_generate_parameters.pod │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ ├── DSA_new.pod │ │ │ ├── DSA_set_method.pod │ │ │ ├── DSA_sign.pod │ │ │ ├── DSA_size.pod │ │ │ ├── ERR_GET_LIB.pod │ │ │ ├── ERR_clear_error.pod │ │ │ ├── ERR_error_string.pod │ │ │ ├── ERR_get_error.pod │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ ├── ERR_load_strings.pod │ │ │ ├── ERR_print_errors.pod │ │ │ ├── ERR_put_error.pod │ │ │ ├── ERR_remove_state.pod │ │ │ ├── ERR_set_mark.pod │ │ │ ├── EVP_BytesToKey.pod │ │ │ ├── EVP_DigestInit.pod │ │ │ ├── EVP_DigestSignInit.pod │ │ │ ├── EVP_DigestVerifyInit.pod │ │ │ ├── EVP_EncryptInit.pod │ │ │ ├── EVP_OpenInit.pod │ │ │ ├── EVP_PKEY_CTX_ctrl.pod │ │ │ ├── EVP_PKEY_CTX_new.pod │ │ │ ├── EVP_PKEY_cmp.pod │ │ │ ├── EVP_PKEY_decrypt.pod │ │ │ ├── EVP_PKEY_derive.pod │ │ │ ├── EVP_PKEY_encrypt.pod │ │ │ ├── EVP_PKEY_get_default_digest.pod │ │ │ ├── EVP_PKEY_keygen.pod │ │ │ ├── EVP_PKEY_new.pod │ │ │ ├── EVP_PKEY_print_private.pod │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ ├── EVP_PKEY_sign.pod │ │ │ ├── EVP_PKEY_verify.pod │ │ │ ├── EVP_PKEY_verifyrecover.pod │ │ │ ├── EVP_SealInit.pod │ │ │ ├── EVP_SignInit.pod │ │ │ ├── EVP_VerifyInit.pod │ │ │ ├── OBJ_nid2obj.pod │ │ │ ├── OPENSSL_Applink.pod │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ ├── OPENSSL_config.pod │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ ├── PEM_write_bio_CMS_stream.pod │ │ │ ├── PEM_write_bio_PKCS7_stream.pod │ │ │ ├── PKCS12_create.pod │ │ │ ├── PKCS12_parse.pod │ │ │ ├── PKCS7_decrypt.pod │ │ │ ├── PKCS7_encrypt.pod │ │ │ ├── PKCS7_sign.pod │ │ │ ├── PKCS7_sign_add_signer.pod │ │ │ ├── PKCS7_verify.pod │ │ │ ├── RAND_add.pod │ │ │ ├── RAND_bytes.pod │ │ │ ├── RAND_cleanup.pod │ │ │ ├── RAND_egd.pod │ │ │ ├── RAND_load_file.pod │ │ │ ├── RAND_set_rand_method.pod │ │ │ ├── RSA_blinding_on.pod │ │ │ ├── RSA_check_key.pod │ │ │ ├── RSA_generate_key.pod │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ ├── RSA_new.pod │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ ├── RSA_print.pod │ │ │ ├── RSA_private_encrypt.pod │ │ │ ├── RSA_public_encrypt.pod │ │ │ ├── RSA_set_method.pod │ │ │ ├── RSA_sign.pod │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ ├── RSA_size.pod │ │ │ ├── SMIME_read_CMS.pod │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ ├── SMIME_write_CMS.pod │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ ├── X509_NAME_print_ex.pod │ │ │ ├── X509_STORE_CTX_get_error.pod │ │ │ ├── X509_STORE_CTX_get_ex_new_index.pod │ │ │ ├── X509_STORE_CTX_new.pod │ │ │ ├── X509_STORE_CTX_set_verify_cb.pod │ │ │ ├── X509_STORE_set_verify_cb_func.pod │ │ │ ├── X509_VERIFY_PARAM_set_flags.pod │ │ │ ├── X509_new.pod │ │ │ ├── X509_verify_cert.pod │ │ │ ├── bio.pod │ │ │ ├── blowfish.pod │ │ │ ├── bn.pod │ │ │ ├── bn_internal.pod │ │ │ ├── buffer.pod │ │ │ ├── crypto.pod │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ ├── d2i_DHparams.pod │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ ├── d2i_X509.pod │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ ├── d2i_X509_CRL.pod │ │ │ ├── d2i_X509_NAME.pod │ │ │ ├── d2i_X509_REQ.pod │ │ │ ├── d2i_X509_SIG.pod │ │ │ ├── des.pod │ │ │ ├── des_modes.pod │ │ │ ├── dh.pod │ │ │ ├── dsa.pod │ │ │ ├── ecdsa.pod │ │ │ ├── engine.pod │ │ │ ├── err.pod │ │ │ ├── evp.pod │ │ │ ├── hmac.pod │ │ │ ├── i2d_CMS_bio_stream.pod │ │ │ ├── i2d_PKCS7_bio_stream.pod │ │ │ ├── lh_stats.pod │ │ │ ├── lhash.pod │ │ │ ├── md5.pod │ │ │ ├── mdc2.pod │ │ │ ├── pem.pod │ │ │ ├── rand.pod │ │ │ ├── rc4.pod │ │ │ ├── ripemd.pod │ │ │ ├── rsa.pod │ │ │ ├── sha.pod │ │ │ ├── threads.pod │ │ │ ├── ui.pod │ │ │ ├── ui_compat.pod │ │ │ └── x509.pod │ │ ├── fingerprints.txt │ │ ├── openssl-shared.txt │ │ ├── openssl.txt │ │ ├── openssl_button.gif │ │ ├── openssl_button.html │ │ ├── ssl │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ ├── SSL_CTX_add_session.pod │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ ├── SSL_CTX_free.pod │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ ├── SSL_CTX_new.pod │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ ├── SSL_CTX_sessions.pod │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ ├── SSL_CTX_set_options.pod │ │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ ├── SSL_CTX_use_psk_identity_hint.pod │ │ │ ├── SSL_SESSION_free.pod │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ ├── SSL_accept.pod │ │ │ ├── SSL_alert_type_string.pod │ │ │ ├── SSL_clear.pod │ │ │ ├── SSL_connect.pod │ │ │ ├── SSL_do_handshake.pod │ │ │ ├── SSL_free.pod │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ ├── SSL_get_ciphers.pod │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ ├── SSL_get_current_cipher.pod │ │ │ ├── SSL_get_default_timeout.pod │ │ │ ├── SSL_get_error.pod │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ ├── SSL_get_fd.pod │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ ├── SSL_get_psk_identity.pod │ │ │ ├── SSL_get_rbio.pod │ │ │ ├── SSL_get_session.pod │ │ │ ├── SSL_get_verify_result.pod │ │ │ ├── SSL_get_version.pod │ │ │ ├── SSL_library_init.pod │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ ├── SSL_new.pod │ │ │ ├── SSL_pending.pod │ │ │ ├── SSL_read.pod │ │ │ ├── SSL_rstate_string.pod │ │ │ ├── SSL_session_reused.pod │ │ │ ├── SSL_set_bio.pod │ │ │ ├── SSL_set_connect_state.pod │ │ │ ├── SSL_set_fd.pod │ │ │ ├── SSL_set_session.pod │ │ │ ├── SSL_set_shutdown.pod │ │ │ ├── SSL_set_verify_result.pod │ │ │ ├── SSL_shutdown.pod │ │ │ ├── SSL_state_string.pod │ │ │ ├── SSL_want.pod │ │ │ ├── SSL_write.pod │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ └── ssl.pod │ │ ├── ssleay.txt │ │ └── standards.txt │ ├── e_os.h │ ├── e_os2.h │ ├── engines │ │ ├── Makefile │ │ ├── alpha.opt │ │ ├── axp.opt │ │ ├── capierr.bat │ │ ├── ccgost │ │ │ ├── Makefile │ │ │ ├── README.gost │ │ │ ├── e_gost_err.c │ │ │ ├── e_gost_err.h │ │ │ ├── e_gost_err.proto │ │ │ ├── gost.ec │ │ │ ├── gost2001.c │ │ │ ├── gost2001_keyx.c │ │ │ ├── gost2001_keyx.h │ │ │ ├── gost89.c │ │ │ ├── gost89.h │ │ │ ├── gost94_keyx.c │ │ │ ├── gost_ameth.c │ │ │ ├── gost_asn1.c │ │ │ ├── gost_crypt.c │ │ │ ├── gost_ctl.c │ │ │ ├── gost_eng.c │ │ │ ├── gost_keywrap.c │ │ │ ├── gost_keywrap.h │ │ │ ├── gost_lcl.h │ │ │ ├── gost_md.c │ │ │ ├── gost_params.c │ │ │ ├── gost_params.h │ │ │ ├── gost_pmeth.c │ │ │ ├── gost_sign.c │ │ │ ├── gosthash.c │ │ │ ├── gosthash.h │ │ │ └── gostsum.c │ │ ├── e_4758cca.c │ │ ├── e_4758cca.ec │ │ ├── e_4758cca_err.c │ │ ├── e_4758cca_err.h │ │ ├── e_aep.c │ │ ├── e_aep.ec │ │ ├── e_aep_err.c │ │ ├── e_aep_err.h │ │ ├── e_atalla.c │ │ ├── e_atalla.ec │ │ ├── e_atalla_err.c │ │ ├── e_atalla_err.h │ │ ├── e_capi.c │ │ ├── e_capi.ec │ │ ├── e_capi_err.c │ │ ├── e_capi_err.h │ │ ├── e_chil.c │ │ ├── e_chil.ec │ │ ├── e_chil_err.c │ │ ├── e_chil_err.h │ │ ├── e_cswift.c │ │ ├── e_cswift.ec │ │ ├── e_cswift_err.c │ │ ├── e_cswift_err.h │ │ ├── e_gmp.c │ │ ├── e_gmp.ec │ │ ├── e_gmp_err.c │ │ ├── e_gmp_err.h │ │ ├── e_nuron.c │ │ ├── e_nuron.ec │ │ ├── e_nuron_err.c │ │ ├── e_nuron_err.h │ │ ├── e_padlock.c │ │ ├── e_padlock.ec │ │ ├── e_sureware.c │ │ ├── e_sureware.ec │ │ ├── e_sureware_err.c │ │ ├── e_sureware_err.h │ │ ├── e_ubsec.c │ │ ├── e_ubsec.ec │ │ ├── e_ubsec_err.c │ │ ├── e_ubsec_err.h │ │ ├── engine_vector.mar │ │ ├── ia64.opt │ │ ├── makeengines.com │ │ ├── vax.opt │ │ └── vendor_defns │ │ │ ├── aep.h │ │ │ ├── atalla.h │ │ │ ├── cswift.h │ │ │ ├── hw_4758_cca.h │ │ │ ├── hw_ubsec.h │ │ │ ├── hwcryptohook.h │ │ │ └── sureware.h │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── install.com │ ├── makevms.com │ ├── ms │ │ ├── .rnd │ │ ├── 32all.bat │ │ ├── README │ │ ├── applink.c │ │ ├── bcb4.bat │ │ ├── certCA.srl │ │ ├── certCA.ss │ │ ├── certU.ss │ │ ├── cmp.pl │ │ ├── do_ms.bat │ │ ├── do_nasm.bat │ │ ├── do_nt.bat │ │ ├── do_win64a.bat │ │ ├── do_win64i.bat │ │ ├── keyCA.ss │ │ ├── keyU.ss │ │ ├── mingw32.bat │ │ ├── mw.bat │ │ ├── req2CA.ss │ │ ├── reqCA.ss │ │ ├── reqU.ss │ │ ├── speed32.bat │ │ ├── tenc.bat │ │ ├── tencce.bat │ │ ├── test.bat │ │ ├── testce.bat │ │ ├── testce2.bat │ │ ├── testenc.bat │ │ ├── testencce.bat │ │ ├── testpem.bat │ │ ├── testpemce.bat │ │ ├── testss.bat │ │ ├── testssce.bat │ │ ├── tlhelp32.h │ │ ├── tpem.bat │ │ ├── tpemce.bat │ │ ├── uplink-common.pl │ │ ├── uplink-ia64.pl │ │ ├── uplink-x86.pl │ │ ├── uplink-x86_64.pl │ │ ├── uplink.c │ │ ├── uplink.h │ │ ├── uplink.pl │ │ └── x86asm.bat │ ├── openssl.doxy │ ├── openssl.spec │ ├── os2 │ │ ├── OS2-EMX.cmd │ │ └── backwardify.pl │ ├── shlib │ │ ├── Makefile.hpux10-cc │ │ ├── README │ │ ├── hpux10-cc.sh │ │ ├── irix.sh │ │ ├── sco5-shared-gcc.sh │ │ ├── sco5-shared-installed │ │ ├── sco5-shared.sh │ │ ├── solaris-sc4.sh │ │ ├── solaris.sh │ │ ├── sun.sh │ │ ├── svr5-shared-gcc.sh │ │ ├── svr5-shared-installed │ │ ├── svr5-shared.sh │ │ ├── win32.bat │ │ └── win32dll.bat │ ├── ssl │ │ ├── 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 │ │ ├── install-ssl.com │ │ ├── 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-lib.com │ │ ├── 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_task.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 │ ├── test │ │ ├── CAss.cnf │ │ ├── CAssdh.cnf │ │ ├── CAssdsa.cnf │ │ ├── CAssrsa.cnf │ │ ├── CAtsa.cnf │ │ ├── Makefile │ │ ├── P1ss.cnf │ │ ├── P2ss.cnf │ │ ├── Sssdsa.cnf │ │ ├── Sssrsa.cnf │ │ ├── Uss.cnf │ │ ├── VMSca-response.1 │ │ ├── VMSca-response.2 │ │ ├── asn1test.c │ │ ├── bctest │ │ ├── bctest.com │ │ ├── bftest.c │ │ ├── bntest.c │ │ ├── bntest.com │ │ ├── casttest.c │ │ ├── clean_test.com │ │ ├── cms-examples.pl │ │ ├── cms-test.pl │ │ ├── destest.c │ │ ├── dhtest.c │ │ ├── dsatest.c │ │ ├── dummytest.c │ │ ├── ecdhtest.c │ │ ├── ecdsatest.c │ │ ├── ectest.c │ │ ├── enginetest.c │ │ ├── evp_test.c │ │ ├── evptests.txt │ │ ├── exptest.c │ │ ├── hmactest.c │ │ ├── ideatest.c │ │ ├── igetest.c │ │ ├── jpaketest.c │ │ ├── maketests.com │ │ ├── md2test.c │ │ ├── md4test.c │ │ ├── md5test.c │ │ ├── mdc2test.c │ │ ├── methtest.c │ │ ├── pkcs7-1.pem │ │ ├── pkcs7.pem │ │ ├── pkits-test.pl │ │ ├── r160test.c │ │ ├── randtest.c │ │ ├── rc2test.c │ │ ├── rc4test.c │ │ ├── rc5test.c │ │ ├── rmdtest.c │ │ ├── rsa_test.c │ │ ├── sha1test.c │ │ ├── sha256t.c │ │ ├── sha512t.c │ │ ├── shatest.c │ │ ├── smcont.txt │ │ ├── smime-certs │ │ │ ├── smdsa1.pem │ │ │ ├── smdsa2.pem │ │ │ ├── smdsa3.pem │ │ │ ├── smdsap.pem │ │ │ ├── smroot.pem │ │ │ ├── smrsa1.pem │ │ │ ├── smrsa2.pem │ │ │ └── smrsa3.pem │ │ ├── ssltest.c │ │ ├── tcrl │ │ ├── tcrl.com │ │ ├── test.cnf │ │ ├── test_padlock │ │ ├── testca │ │ ├── testca.com │ │ ├── testcrl.pem │ │ ├── testenc │ │ ├── testenc.com │ │ ├── testgen │ │ ├── testgen.com │ │ ├── testp7.pem │ │ ├── testreq2.pem │ │ ├── testrsa.pem │ │ ├── tests.com │ │ ├── testsid.pem │ │ ├── testss │ │ ├── testss.com │ │ ├── testssl │ │ ├── testssl.com │ │ ├── testsslproxy │ │ ├── testtsa │ │ ├── testtsa.com │ │ ├── testx509.pem │ │ ├── times │ │ ├── tpkcs7 │ │ ├── tpkcs7.com │ │ ├── tpkcs7d │ │ ├── tpkcs7d.com │ │ ├── treq │ │ ├── treq.com │ │ ├── trsa │ │ ├── trsa.com │ │ ├── tsid │ │ ├── tsid.com │ │ ├── tverify.com │ │ ├── tx509 │ │ ├── tx509.com │ │ ├── v3-cert1.pem │ │ ├── v3-cert2.pem │ │ └── wp_test.c │ ├── times │ │ ├── 090 │ │ │ └── 586-100.nt │ │ ├── 091 │ │ │ ├── 486-50.nt │ │ │ ├── 586-100.lnx │ │ │ ├── 68000.bsd │ │ │ ├── 686-200.lnx │ │ │ ├── alpha064.osf │ │ │ ├── alpha164.lnx │ │ │ ├── alpha164.osf │ │ │ ├── mips-rel.pl │ │ │ ├── r10000.irx │ │ │ ├── r3000.ult │ │ │ └── r4400.irx │ │ ├── 100.lnx │ │ ├── 100.nt │ │ ├── 200.lnx │ │ ├── 486-66.dos │ │ ├── 486-66.nt │ │ ├── 486-66.w31 │ │ ├── 5.lnx │ │ ├── 586-085i.nt │ │ ├── 586-100.LN3 │ │ ├── 586-100.NT2 │ │ ├── 586-100.dos │ │ ├── 586-100.ln4 │ │ ├── 586-100.lnx │ │ ├── 586-100.nt │ │ ├── 586-100.ntx │ │ ├── 586-100.w31 │ │ ├── 586-1002.lnx │ │ ├── 586p-100.lnx │ │ ├── 686-200.bsd │ │ ├── 686-200.lnx │ │ ├── 686-200.nt │ │ ├── L1 │ │ ├── R10000.t │ │ ├── R4400.t │ │ ├── aix.t │ │ ├── aixold.t │ │ ├── alpha.t │ │ ├── alpha400.t │ │ ├── cyrix100.lnx │ │ ├── dgux-x86.t │ │ ├── dgux.t │ │ ├── hpux-acc.t │ │ ├── hpux-kr.t │ │ ├── hpux.t │ │ ├── p2.w95 │ │ ├── pent2.t │ │ ├── readme │ │ ├── s586-100.lnx │ │ ├── s586-100.nt │ │ ├── sgi.t │ │ ├── sparc.t │ │ ├── sparc2 │ │ ├── sparcLX.t │ │ ├── usparc.t │ │ └── x86 │ │ │ ├── bfs.cpp │ │ │ ├── casts.cpp │ │ │ ├── des3s.cpp │ │ │ ├── dess.cpp │ │ │ ├── md4s.cpp │ │ │ ├── md5s.cpp │ │ │ ├── rc4s.cpp │ │ │ └── sha1s.cpp │ ├── tools │ │ ├── Makefile │ │ ├── c89.sh │ │ ├── c_hash │ │ ├── c_info │ │ ├── c_issuer │ │ ├── c_name │ │ ├── c_rehash │ │ ├── c_rehash.bak │ │ └── c_rehash.in │ └── util │ │ ├── FreeBSD.sh │ │ ├── add_cr.pl │ │ ├── bat.sh │ │ ├── ck_errf.pl │ │ ├── clean-depend.pl │ │ ├── copy.pl │ │ ├── cygwin.sh │ │ ├── deleof.pl │ │ ├── deltree.com │ │ ├── dirname.pl │ │ ├── do_ms.sh │ │ ├── domd │ │ ├── err-ins.pl │ │ ├── extract-names.pl │ │ ├── extract-section.pl │ │ ├── files.pl │ │ ├── fixNT.sh │ │ ├── install.sh │ │ ├── libeay.num │ │ ├── mk1mf.pl │ │ ├── mkcerts.sh │ │ ├── mkdef.pl │ │ ├── mkdir-p.pl │ │ ├── mkerr.pl │ │ ├── mkfiles.pl │ │ ├── mklink.pl │ │ ├── mkrc.pl │ │ ├── mkstack.pl │ │ ├── opensslwrap.sh │ │ ├── perlpath.pl │ │ ├── pl │ │ ├── BC-32.pl │ │ ├── Mingw32.pl │ │ ├── OS2-EMX.pl │ │ ├── VC-32.pl │ │ ├── linux.pl │ │ ├── netware.pl │ │ ├── ultrix.pl │ │ └── unix.pl │ │ ├── pod2man.pl │ │ ├── pod2mantest │ │ ├── pod2mantest.pod │ │ ├── point.sh │ │ ├── selftest.pl │ │ ├── shlib_wrap.sh │ │ ├── sp-diff.pl │ │ ├── speed.sh │ │ ├── src-dep.pl │ │ ├── ssleay.num │ │ ├── tab_num.pl │ │ └── x86asm.sh ├── test │ ├── Android.mk │ ├── gen │ │ └── test-js.cc │ ├── include │ │ └── test.h │ └── src │ │ └── test.cc ├── uv │ ├── .gitignore │ ├── .mailmap │ ├── AUTHORS │ ├── Android.mk │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── common.gypi │ ├── config-mingw.mk │ ├── config-unix.mk │ ├── gyp_uv │ ├── include │ │ ├── ares.h │ │ ├── ares_version.h │ │ ├── uv-private │ │ │ ├── eio.h │ │ │ ├── ev.h │ │ │ ├── ngx-queue.h │ │ │ ├── tree.h │ │ │ ├── uv-linux.h │ │ │ ├── uv-unix.h │ │ │ └── uv-win.h │ │ └── uv.h │ ├── src │ │ ├── ares │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.cares │ │ │ ├── README.msvc │ │ │ ├── README.node │ │ │ ├── RELEASE-NOTES │ │ │ ├── TODO │ │ │ ├── ares__close_sockets.c │ │ │ ├── ares__get_hostent.c │ │ │ ├── ares__read_line.c │ │ │ ├── ares__timeval.c │ │ │ ├── ares_cancel.c │ │ │ ├── ares_data.c │ │ │ ├── ares_data.h │ │ │ ├── ares_destroy.c │ │ │ ├── ares_dns.h │ │ │ ├── ares_expand_name.c │ │ │ ├── ares_expand_string.c │ │ │ ├── ares_fds.c │ │ │ ├── ares_free_hostent.c │ │ │ ├── ares_free_string.c │ │ │ ├── ares_getenv.c │ │ │ ├── ares_getenv.h │ │ │ ├── ares_gethostbyaddr.c │ │ │ ├── ares_gethostbyname.c │ │ │ ├── ares_getnameinfo.c │ │ │ ├── ares_getopt.c │ │ │ ├── ares_getopt.h │ │ │ ├── ares_getsock.c │ │ │ ├── ares_init.c │ │ │ ├── ares_iphlpapi.h │ │ │ ├── ares_ipv6.h │ │ │ ├── ares_library_init.c │ │ │ ├── ares_library_init.h │ │ │ ├── ares_llist.c │ │ │ ├── ares_llist.h │ │ │ ├── ares_mkquery.c │ │ │ ├── ares_nowarn.c │ │ │ ├── ares_nowarn.h │ │ │ ├── ares_options.c │ │ │ ├── ares_parse_a_reply.c │ │ │ ├── ares_parse_aaaa_reply.c │ │ │ ├── ares_parse_mx_reply.c │ │ │ ├── ares_parse_ns_reply.c │ │ │ ├── ares_parse_ptr_reply.c │ │ │ ├── ares_parse_srv_reply.c │ │ │ ├── ares_parse_txt_reply.c │ │ │ ├── ares_platform.c │ │ │ ├── ares_platform.h │ │ │ ├── ares_private.h │ │ │ ├── ares_process.c │ │ │ ├── ares_query.c │ │ │ ├── ares_rules.h │ │ │ ├── ares_search.c │ │ │ ├── ares_send.c │ │ │ ├── ares_setup.h │ │ │ ├── ares_strcasecmp.c │ │ │ ├── ares_strcasecmp.h │ │ │ ├── ares_strdup.c │ │ │ ├── ares_strdup.h │ │ │ ├── ares_strerror.c │ │ │ ├── ares_timeout.c │ │ │ ├── ares_version.c │ │ │ ├── ares_writev.c │ │ │ ├── ares_writev.h │ │ │ ├── bitncmp.c │ │ │ ├── bitncmp.h │ │ │ ├── config_android │ │ │ │ └── ares_config.h │ │ │ ├── config_cygwin │ │ │ │ └── ares_config.h │ │ │ ├── config_darwin │ │ │ │ └── ares_config.h │ │ │ ├── config_freebsd │ │ │ │ └── ares_config.h │ │ │ ├── config_linux │ │ │ │ └── ares_config.h │ │ │ ├── config_netbsd │ │ │ │ └── ares_config.h │ │ │ ├── config_openbsd │ │ │ │ └── ares_config.h │ │ │ ├── config_sunos │ │ │ │ └── ares_config.h │ │ │ ├── config_win32 │ │ │ │ └── ares_config.h │ │ │ ├── get_ver.awk │ │ │ ├── inet_net_pton.c │ │ │ ├── inet_net_pton.h │ │ │ ├── inet_ntop.c │ │ │ ├── inet_ntop.h │ │ │ ├── nameser.h │ │ │ ├── setup_once.h │ │ │ └── windows_port.c │ │ ├── unix │ │ │ ├── cares.c │ │ │ ├── core.c │ │ │ ├── cygwin.c │ │ │ ├── darwin.c │ │ │ ├── eio │ │ │ │ ├── Android.mk │ │ │ │ ├── Changes │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.h.in │ │ │ │ ├── config_android.h │ │ │ │ ├── config_cygwin.h │ │ │ │ ├── config_darwin.h │ │ │ │ ├── config_freebsd.h │ │ │ │ ├── config_linux.h │ │ │ │ ├── config_netbsd.h │ │ │ │ ├── config_sunos.h │ │ │ │ ├── configure.ac │ │ │ │ ├── demo.c │ │ │ │ ├── ecb.h │ │ │ │ ├── eio.3 │ │ │ │ ├── eio.c │ │ │ │ ├── eio.pod │ │ │ │ ├── libeio.m4 │ │ │ │ └── xthread.h │ │ │ ├── error.c │ │ │ ├── ev │ │ │ │ ├── Android.mk │ │ │ │ ├── Changes │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── config_android.h │ │ │ │ ├── config_cygwin.h │ │ │ │ ├── config_darwin.h │ │ │ │ ├── config_freebsd.h │ │ │ │ ├── config_linux.h │ │ │ │ ├── config_netbsd.h │ │ │ │ ├── config_sunos.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── ev++.h │ │ │ │ ├── ev.3 │ │ │ │ ├── ev.c │ │ │ │ ├── ev.pod │ │ │ │ ├── ev_epoll.c │ │ │ │ ├── ev_kqueue.c │ │ │ │ ├── ev_poll.c │ │ │ │ ├── ev_port.c │ │ │ │ ├── ev_select.c │ │ │ │ ├── ev_vars.h │ │ │ │ ├── ev_win32.c │ │ │ │ ├── ev_wrap.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── install-sh │ │ │ │ ├── libev.m4 │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ └── mkinstalldirs │ │ │ ├── freebsd.c │ │ │ ├── fs.c │ │ │ ├── internal.h │ │ │ ├── linux.c │ │ │ ├── netbsd.c │ │ │ ├── pipe.c │ │ │ ├── process.c │ │ │ ├── stream.c │ │ │ ├── sunos.c │ │ │ ├── tcp.c │ │ │ ├── tty.c │ │ │ ├── udp.c │ │ │ ├── uv-eio.c │ │ │ └── uv-eio.h │ │ ├── uv-common.c │ │ ├── uv-common.h │ │ └── win │ │ │ ├── async.c │ │ │ ├── cares.c │ │ │ ├── core.c │ │ │ ├── error.c │ │ │ ├── fs-event.c │ │ │ ├── fs.c │ │ │ ├── getaddrinfo.c │ │ │ ├── handle.c │ │ │ ├── internal.h │ │ │ ├── loop-watcher.c │ │ │ ├── pipe.c │ │ │ ├── process.c │ │ │ ├── req.c │ │ │ ├── stdio.c │ │ │ ├── stream.c │ │ │ ├── tcp.c │ │ │ ├── threadpool.c │ │ │ ├── threads.c │ │ │ ├── timer.c │ │ │ ├── tty.c │ │ │ ├── udp.c │ │ │ ├── util.c │ │ │ ├── winapi.c │ │ │ ├── winapi.h │ │ │ ├── winsock.c │ │ │ └── winsock.h │ ├── test │ │ ├── benchmark-ares.c │ │ ├── benchmark-getaddrinfo.c │ │ ├── benchmark-list.h │ │ ├── benchmark-ping-pongs.c │ │ ├── benchmark-pound.c │ │ ├── benchmark-pump.c │ │ ├── benchmark-sizes.c │ │ ├── benchmark-spawn.c │ │ ├── benchmark-udp-packet-storm.c │ │ ├── dns-server.c │ │ ├── echo-server.c │ │ ├── run-benchmarks.c │ │ ├── run-tests.c │ │ ├── runner-unix.c │ │ ├── runner-unix.h │ │ ├── runner-win.c │ │ ├── runner-win.h │ │ ├── runner.c │ │ ├── runner.h │ │ ├── task.h │ │ ├── test-async.c │ │ ├── test-callback-stack.c │ │ ├── test-connection-fail.c │ │ ├── test-delayed-accept.c │ │ ├── test-fail-always.c │ │ ├── test-fs-event.c │ │ ├── test-fs.c │ │ ├── test-get-currentexe.c │ │ ├── test-getaddrinfo.c │ │ ├── test-gethostbyname.c │ │ ├── test-getsockname.c │ │ ├── test-hrtime.c │ │ ├── test-idle.c │ │ ├── test-list.h │ │ ├── test-loop-handles.c │ │ ├── test-pass-always.c │ │ ├── test-ping-pong.c │ │ ├── test-pipe-bind-error.c │ │ ├── test-ref.c │ │ ├── test-shutdown-eof.c │ │ ├── test-spawn.c │ │ ├── test-tcp-bind-error.c │ │ ├── test-tcp-bind6-error.c │ │ ├── test-tcp-close.c │ │ ├── test-tcp-write-error.c │ │ ├── test-tcp-writealot.c │ │ ├── test-threadpool.c │ │ ├── test-timer-again.c │ │ ├── test-timer.c │ │ ├── test-tty.c │ │ ├── test-udp-dgram-too-big.c │ │ ├── test-udp-ipv6.c │ │ └── test-udp-send-and-recv.c │ ├── uv.gyp │ └── vcbuild.bat └── v8 │ ├── .gitignore │ ├── AUTHORS │ ├── Android.mk │ ├── ChangeLog │ ├── LICENSE │ ├── LICENSE.strongtalk │ ├── LICENSE.v8 │ ├── LICENSE.valgrind │ ├── Makefile │ ├── SConstruct │ ├── benchmarks │ ├── README.txt │ ├── base.js │ ├── crypto.js │ ├── deltablue.js │ ├── earley-boyer.js │ ├── raytrace.js │ ├── regexp.js │ ├── revisions.html │ ├── richards.js │ ├── run.html │ ├── run.js │ ├── splay.js │ ├── style.css │ └── v8-logo.png │ ├── experiments │ └── main.cpp │ ├── gyp-mac-tool │ ├── include │ ├── v8-debug.h │ ├── v8-preparser.h │ ├── v8-profiler.h │ ├── v8-testing.h │ ├── v8.h │ └── v8stdint.h │ ├── out │ ├── Makefile-native │ ├── build │ │ ├── All.target-native.mk │ │ └── all.Makefile │ ├── environment │ ├── gyp-mac-tool │ ├── native │ │ ├── cctest │ │ ├── d8 │ │ ├── libpreparser_lib.a │ │ ├── libv8_base.a │ │ ├── libv8_nosnapshot.a │ │ ├── libv8_snapshot.a │ │ ├── mksnapshot │ │ ├── obj │ │ │ └── gen │ │ │ │ ├── d8-js.cc │ │ │ │ ├── experimental-libraries.cc │ │ │ │ ├── libraries.cc │ │ │ │ └── resources.cc │ │ ├── preparser │ │ ├── process │ │ └── shell │ ├── preparser │ │ ├── preparser.Makefile │ │ └── preparser.target-native.mk │ ├── samples │ │ ├── process.target-native.mk │ │ ├── samples.Makefile │ │ └── shell.target-native.mk │ ├── src │ │ ├── d8.Makefile │ │ ├── d8.target-native.mk │ │ └── d8_js2c.target-native.mk │ ├── test │ │ └── cctest │ │ │ ├── cctest.Makefile │ │ │ ├── cctest.target-native.mk │ │ │ └── resources.target-native.mk │ └── tools │ │ └── gyp │ │ ├── js2c.target-native.mk │ │ ├── mksnapshot.target-native.mk │ │ ├── preparser_lib.target-native.mk │ │ ├── v8.Makefile │ │ ├── v8.target-native.mk │ │ ├── v8_base.target-native.mk │ │ ├── v8_nosnapshot.target-native.mk │ │ ├── v8_shell.target-native.mk │ │ └── v8_snapshot.target-native.mk │ ├── preparser │ ├── SConscript │ ├── preparser-process.cc │ ├── preparser.Makefile │ ├── preparser.gyp │ └── preparser.target.mk │ └── src │ ├── SConscript │ ├── accessors.cc │ ├── accessors.h │ ├── allocation-inl.h │ ├── allocation.cc │ ├── allocation.h │ ├── api.cc │ ├── api.h │ ├── apinatives.js │ ├── apiutils.h │ ├── arguments.h │ ├── arm │ ├── assembler-arm-inl.h │ ├── assembler-arm.cc │ ├── assembler-arm.h │ ├── builtins-arm.cc │ ├── code-stubs-arm.cc │ ├── code-stubs-arm.h │ ├── codegen-arm.cc │ ├── codegen-arm.h │ ├── constants-arm.cc │ ├── constants-arm.h │ ├── cpu-arm.cc │ ├── debug-arm.cc │ ├── deoptimizer-arm.cc │ ├── disasm-arm.cc │ ├── frames-arm.cc │ ├── frames-arm.h │ ├── full-codegen-arm.cc │ ├── ic-arm.cc │ ├── lithium-arm.cc │ ├── lithium-arm.h │ ├── lithium-codegen-arm.cc │ ├── lithium-codegen-arm.h │ ├── lithium-gap-resolver-arm.cc │ ├── lithium-gap-resolver-arm.h │ ├── macro-assembler-arm.cc │ ├── macro-assembler-arm.h │ ├── regexp-macro-assembler-arm.cc │ ├── regexp-macro-assembler-arm.h │ ├── simulator-arm.cc │ ├── simulator-arm.h │ └── stub-cache-arm.cc │ ├── array.js │ ├── assembler.cc │ ├── assembler.h │ ├── ast-inl.h │ ├── ast.cc │ ├── ast.h │ ├── atomicops.h │ ├── atomicops_internals_arm_gcc.h │ ├── atomicops_internals_mips_gcc.h │ ├── atomicops_internals_x86_gcc.cc │ ├── atomicops_internals_x86_gcc.h │ ├── atomicops_internals_x86_macosx.h │ ├── atomicops_internals_x86_msvc.h │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── bootstrapper.cc │ ├── bootstrapper.h │ ├── builtins.cc │ ├── builtins.h │ ├── bytecodes-irregexp.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── char-predicates-inl.h │ ├── char-predicates.h │ ├── checks.cc │ ├── checks.h │ ├── circular-queue-inl.h │ ├── circular-queue.cc │ ├── circular-queue.h │ ├── code-stubs.cc │ ├── code-stubs.h │ ├── code.h │ ├── codegen.cc │ ├── codegen.h │ ├── compilation-cache.cc │ ├── compilation-cache.h │ ├── compiler-intrinsics.h │ ├── compiler.cc │ ├── compiler.h │ ├── contexts.cc │ ├── contexts.h │ ├── conversions-inl.h │ ├── conversions.cc │ ├── conversions.h │ ├── counters.cc │ ├── counters.h │ ├── cpu-profiler-inl.h │ ├── cpu-profiler.cc │ ├── cpu-profiler.h │ ├── cpu.h │ ├── d8-debug.cc │ ├── d8-debug.h │ ├── d8-posix.cc │ ├── d8-readline.cc │ ├── d8-windows.cc │ ├── d8.Makefile │ ├── d8.cc │ ├── d8.gyp │ ├── d8.h │ ├── d8.js │ ├── d8.target.mk │ ├── d8_js2c.target.mk │ ├── data-flow.cc │ ├── data-flow.h │ ├── date.js │ ├── dateparser-inl.h │ ├── dateparser.cc │ ├── dateparser.h │ ├── debug-agent.cc │ ├── debug-agent.h │ ├── debug-debugger.js │ ├── debug.cc │ ├── debug.h │ ├── deoptimizer.cc │ ├── deoptimizer.h │ ├── disasm.h │ ├── disassembler.cc │ ├── disassembler.h │ ├── diy-fp.cc │ ├── diy-fp.h │ ├── double.h │ ├── dtoa.cc │ ├── dtoa.h │ ├── elements.cc │ ├── elements.h │ ├── execution.cc │ ├── execution.h │ ├── extensions │ ├── experimental │ │ ├── break-iterator.cc │ │ ├── break-iterator.h │ │ ├── collator.cc │ │ ├── collator.h │ │ ├── datetime-format.cc │ │ ├── datetime-format.h │ │ ├── experimental.gyp │ │ ├── i18n-extension.cc │ │ ├── i18n-extension.h │ │ ├── i18n-js2c.py │ │ ├── i18n-locale.cc │ │ ├── i18n-locale.h │ │ ├── i18n-natives.h │ │ ├── i18n-utils.cc │ │ ├── i18n-utils.h │ │ ├── i18n.js │ │ ├── language-matcher.cc │ │ ├── language-matcher.h │ │ ├── number-format.cc │ │ └── number-format.h │ ├── externalize-string-extension.cc │ ├── externalize-string-extension.h │ ├── gc-extension.cc │ └── gc-extension.h │ ├── factory.cc │ ├── factory.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── flag-definitions.h │ ├── flags.cc │ ├── flags.h │ ├── frames-inl.h │ ├── frames.cc │ ├── frames.h │ ├── full-codegen.cc │ ├── full-codegen.h │ ├── func-name-inferrer.cc │ ├── func-name-inferrer.h │ ├── gdb-jit.cc │ ├── gdb-jit.h │ ├── global-handles.cc │ ├── global-handles.h │ ├── globals.h │ ├── handles-inl.h │ ├── handles.cc │ ├── handles.h │ ├── hashmap.cc │ ├── hashmap.h │ ├── heap-inl.h │ ├── heap-profiler.cc │ ├── heap-profiler.h │ ├── heap.cc │ ├── heap.h │ ├── hydrogen-instructions.cc │ ├── hydrogen-instructions.h │ ├── hydrogen.cc │ ├── hydrogen.h │ ├── ic-inl.h │ ├── ic.cc │ ├── ic.h │ ├── incremental-marking-inl.h │ ├── incremental-marking.cc │ ├── incremental-marking.h │ ├── inspector.cc │ ├── inspector.h │ ├── interpreter-irregexp.cc │ ├── interpreter-irregexp.h │ ├── isolate-inl.h │ ├── isolate.cc │ ├── isolate.h │ ├── json-parser.h │ ├── json.js │ ├── jsregexp.cc │ ├── jsregexp.h │ ├── list-inl.h │ ├── list.h │ ├── lithium-allocator-inl.h │ ├── lithium-allocator.cc │ ├── lithium-allocator.h │ ├── lithium.cc │ ├── lithium.h │ ├── liveedit-debugger.js │ ├── liveedit.cc │ ├── liveedit.h │ ├── liveobjectlist-inl.h │ ├── liveobjectlist.cc │ ├── liveobjectlist.h │ ├── log-inl.h │ ├── log-utils.cc │ ├── log-utils.h │ ├── log.cc │ ├── log.h │ ├── macro-assembler.h │ ├── macros.py │ ├── mark-compact-inl.h │ ├── mark-compact.cc │ ├── mark-compact.h │ ├── math.js │ ├── messages.cc │ ├── messages.h │ ├── messages.js │ ├── mirror-debugger.js │ ├── misc-intrinsics.h │ ├── mksnapshot.cc │ ├── natives.h │ ├── objects-debug.cc │ ├── objects-inl.h │ ├── objects-printer.cc │ ├── objects-visiting-inl.h │ ├── objects-visiting.cc │ ├── objects-visiting.h │ ├── objects.cc │ ├── objects.h │ ├── parser.cc │ ├── parser.h │ ├── platform-cygwin.cc │ ├── platform-freebsd.cc │ ├── platform-linux.cc │ ├── platform-macos.cc │ ├── platform-nullos.cc │ ├── platform-openbsd.cc │ ├── platform-posix.cc │ ├── platform-solaris.cc │ ├── platform-tls-mac.h │ ├── platform-tls-win32.h │ ├── platform-tls.h │ ├── platform-win32.cc │ ├── platform.h │ ├── preparse-data-format.h │ ├── preparse-data.cc │ ├── preparse-data.h │ ├── preparser-api.cc │ ├── preparser.cc │ ├── preparser.h │ ├── prettyprinter.cc │ ├── prettyprinter.h │ ├── profile-generator-inl.h │ ├── profile-generator.cc │ ├── profile-generator.h │ ├── property.cc │ ├── property.h │ ├── proxy.js │ ├── regexp-macro-assembler-irregexp-inl.h │ ├── regexp-macro-assembler-irregexp.cc │ ├── regexp-macro-assembler-irregexp.h │ ├── regexp-macro-assembler-tracer.cc │ ├── regexp-macro-assembler-tracer.h │ ├── regexp-macro-assembler.cc │ ├── regexp-macro-assembler.h │ ├── regexp-stack.cc │ ├── regexp-stack.h │ ├── regexp.js │ ├── rewriter.cc │ ├── rewriter.h │ ├── runtime-profiler.cc │ ├── runtime-profiler.h │ ├── runtime.cc │ ├── runtime.h │ ├── runtime.js │ ├── safepoint-table.cc │ ├── safepoint-table.h │ ├── scanner-character-streams.cc │ ├── scanner-character-streams.h │ ├── scanner.cc │ ├── scanner.h │ ├── scopeinfo.cc │ ├── scopeinfo.h │ ├── scopes.cc │ ├── scopes.h │ ├── serialize.cc │ ├── serialize.h │ ├── simulator.h │ ├── small-pointer-list.h │ ├── smart-array-pointer.h │ ├── snapshot-common.cc │ ├── snapshot-empty.cc │ ├── snapshot.h │ ├── spaces-inl.h │ ├── spaces.cc │ ├── spaces.h │ ├── splay-tree-inl.h │ ├── splay-tree.h │ ├── store-buffer-inl.h │ ├── store-buffer.cc │ ├── store-buffer.h │ ├── string-search.cc │ ├── string-search.h │ ├── string-stream.cc │ ├── string-stream.h │ ├── string.js │ ├── strtod.cc │ ├── strtod.h │ ├── stub-cache.cc │ ├── stub-cache.h │ ├── third_party │ └── valgrind │ │ └── valgrind.h │ ├── token.cc │ ├── token.h │ ├── type-info.cc │ ├── type-info.h │ ├── unbound-queue-inl.h │ ├── unbound-queue.h │ ├── unicode-inl.h │ ├── unicode.cc │ ├── unicode.h │ ├── uri.js │ ├── utils-inl.h │ ├── utils.cc │ ├── utils.h │ ├── v8-counters.cc │ ├── v8-counters.h │ ├── v8.cc │ ├── v8.h │ ├── v8checks.h │ ├── v8conversions.cc │ ├── v8conversions.h │ ├── v8dll-main.cc │ ├── v8globals.h │ ├── v8memory.h │ ├── v8natives.js │ ├── v8preparserdll-main.cc │ ├── v8threads.cc │ ├── v8threads.h │ ├── v8utils.cc │ ├── v8utils.h │ ├── variables.cc │ ├── variables.h │ ├── version.cc │ ├── version.h │ ├── vm-state-inl.h │ ├── vm-state.h │ ├── weakmap.js │ ├── win32-headers.h │ ├── win32-math.cc │ ├── win32-math.h │ ├── zone-inl.h │ ├── zone.cc │ └── zone.h ├── local.properties ├── proguard.cfg └── res └── values └── strings.xml /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/README.md -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/default.properties -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /jni/eio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/Android.mk -------------------------------------------------------------------------------- /jni/eio/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/demo.c -------------------------------------------------------------------------------- /jni/eio/ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/ecb.h -------------------------------------------------------------------------------- /jni/eio/eio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/eio.c -------------------------------------------------------------------------------- /jni/eio/eio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/eio.h -------------------------------------------------------------------------------- /jni/eio/xthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/eio/xthread.h -------------------------------------------------------------------------------- /jni/ev/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/Android.mk -------------------------------------------------------------------------------- /jni/ev/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/config.h -------------------------------------------------------------------------------- /jni/ev/ev++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev++.h -------------------------------------------------------------------------------- /jni/ev/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev.c -------------------------------------------------------------------------------- /jni/ev/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev.h -------------------------------------------------------------------------------- /jni/ev/ev_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_epoll.c -------------------------------------------------------------------------------- /jni/ev/ev_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_kqueue.c -------------------------------------------------------------------------------- /jni/ev/ev_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_poll.c -------------------------------------------------------------------------------- /jni/ev/ev_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_port.c -------------------------------------------------------------------------------- /jni/ev/ev_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_select.c -------------------------------------------------------------------------------- /jni/ev/ev_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_vars.h -------------------------------------------------------------------------------- /jni/ev/ev_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_win32.c -------------------------------------------------------------------------------- /jni/ev/ev_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/ev_wrap.h -------------------------------------------------------------------------------- /jni/ev/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/event.c -------------------------------------------------------------------------------- /jni/ev/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/event.h -------------------------------------------------------------------------------- /jni/ev/event_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/ev/event_compat.h -------------------------------------------------------------------------------- /jni/hello-js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/hello-js.cpp -------------------------------------------------------------------------------- /jni/hello-js.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jni/http_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/.gitignore -------------------------------------------------------------------------------- /jni/http_parser/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/Android.mk -------------------------------------------------------------------------------- /jni/http_parser/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/LICENSE-MIT -------------------------------------------------------------------------------- /jni/http_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/Makefile -------------------------------------------------------------------------------- /jni/http_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/README.md -------------------------------------------------------------------------------- /jni/http_parser/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/http_parser/test.c -------------------------------------------------------------------------------- /jni/node/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/Android.mk -------------------------------------------------------------------------------- /jni/node/deps/uv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/.gitignore -------------------------------------------------------------------------------- /jni/node/deps/uv/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/.mailmap -------------------------------------------------------------------------------- /jni/node/deps/uv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/AUTHORS -------------------------------------------------------------------------------- /jni/node/deps/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/LICENSE -------------------------------------------------------------------------------- /jni/node/deps/uv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/Makefile -------------------------------------------------------------------------------- /jni/node/deps/uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/README.md -------------------------------------------------------------------------------- /jni/node/deps/uv/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/common.gypi -------------------------------------------------------------------------------- /jni/node/deps/uv/gyp_uv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/gyp_uv -------------------------------------------------------------------------------- /jni/node/deps/uv/test/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/test/task.h -------------------------------------------------------------------------------- /jni/node/deps/uv/uv.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/uv.gyp -------------------------------------------------------------------------------- /jni/node/deps/uv/vcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/deps/uv/vcbuild.bat -------------------------------------------------------------------------------- /jni/node/lib/_debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/_debugger.js -------------------------------------------------------------------------------- /jni/node/lib/_linklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/_linklist.js -------------------------------------------------------------------------------- /jni/node/lib/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/assert.js -------------------------------------------------------------------------------- /jni/node/lib/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/buffer.js -------------------------------------------------------------------------------- /jni/node/lib/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/console.js -------------------------------------------------------------------------------- /jni/node/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/constants.js -------------------------------------------------------------------------------- /jni/node/lib/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/crypto.js -------------------------------------------------------------------------------- /jni/node/lib/dgram_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/dgram_legacy.js -------------------------------------------------------------------------------- /jni/node/lib/dgram_uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/dgram_uv.js -------------------------------------------------------------------------------- /jni/node/lib/dns_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/dns_legacy.js -------------------------------------------------------------------------------- /jni/node/lib/dns_uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/dns_uv.js -------------------------------------------------------------------------------- /jni/node/lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/events.js -------------------------------------------------------------------------------- /jni/node/lib/freelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/freelist.js -------------------------------------------------------------------------------- /jni/node/lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/fs.js -------------------------------------------------------------------------------- /jni/node/lib/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/http.js -------------------------------------------------------------------------------- /jni/node/lib/http2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/http2.js -------------------------------------------------------------------------------- /jni/node/lib/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/https.js -------------------------------------------------------------------------------- /jni/node/lib/https2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/https2.js -------------------------------------------------------------------------------- /jni/node/lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/module.js -------------------------------------------------------------------------------- /jni/node/lib/net_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/net_legacy.js -------------------------------------------------------------------------------- /jni/node/lib/net_uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/net_uv.js -------------------------------------------------------------------------------- /jni/node/lib/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/os.js -------------------------------------------------------------------------------- /jni/node/lib/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/path.js -------------------------------------------------------------------------------- /jni/node/lib/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/punycode.js -------------------------------------------------------------------------------- /jni/node/lib/querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/querystring.js -------------------------------------------------------------------------------- /jni/node/lib/readline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/readline.js -------------------------------------------------------------------------------- /jni/node/lib/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/repl.js -------------------------------------------------------------------------------- /jni/node/lib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/stream.js -------------------------------------------------------------------------------- /jni/node/lib/sys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/sys.js -------------------------------------------------------------------------------- /jni/node/lib/timers_uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/timers_uv.js -------------------------------------------------------------------------------- /jni/node/lib/tls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/tls.js -------------------------------------------------------------------------------- /jni/node/lib/tty_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/tty_legacy.js -------------------------------------------------------------------------------- /jni/node/lib/tty_posix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/tty_posix.js -------------------------------------------------------------------------------- /jni/node/lib/tty_uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/tty_uv.js -------------------------------------------------------------------------------- /jni/node/lib/tty_win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/tty_win32.js -------------------------------------------------------------------------------- /jni/node/lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/url.js -------------------------------------------------------------------------------- /jni/node/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/util.js -------------------------------------------------------------------------------- /jni/node/lib/vm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/vm.js -------------------------------------------------------------------------------- /jni/node/lib/zlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/lib/zlib.js -------------------------------------------------------------------------------- /jni/node/src/cares_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/cares_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/handle_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/handle_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/handle_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/handle_wrap.h -------------------------------------------------------------------------------- /jni/node/src/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/macros.py -------------------------------------------------------------------------------- /jni/node/src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node.cc -------------------------------------------------------------------------------- /jni/node/src/node.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node.d -------------------------------------------------------------------------------- /jni/node/src/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node.h -------------------------------------------------------------------------------- /jni/node/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node.js -------------------------------------------------------------------------------- /jni/node/src/node_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_buffer.cc -------------------------------------------------------------------------------- /jni/node/src/node_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_buffer.h -------------------------------------------------------------------------------- /jni/node/src/node_cares.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_cares.cc -------------------------------------------------------------------------------- /jni/node/src/node_cares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_cares.h -------------------------------------------------------------------------------- /jni/node/src/node_crypto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_crypto.cc -------------------------------------------------------------------------------- /jni/node/src/node_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_crypto.h -------------------------------------------------------------------------------- /jni/node/src/node_dtrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_dtrace.cc -------------------------------------------------------------------------------- /jni/node/src/node_dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_dtrace.h -------------------------------------------------------------------------------- /jni/node/src/node_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_file.cc -------------------------------------------------------------------------------- /jni/node/src/node_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_file.h -------------------------------------------------------------------------------- /jni/node/src/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_main.cc -------------------------------------------------------------------------------- /jni/node/src/node_natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_natives.h -------------------------------------------------------------------------------- /jni/node/src/node_net.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_net.cc -------------------------------------------------------------------------------- /jni/node/src/node_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_net.h -------------------------------------------------------------------------------- /jni/node/src/node_os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_os.cc -------------------------------------------------------------------------------- /jni/node/src/node_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_os.h -------------------------------------------------------------------------------- /jni/node/src/node_provider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_provider.d -------------------------------------------------------------------------------- /jni/node/src/node_script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_script.cc -------------------------------------------------------------------------------- /jni/node/src/node_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_script.h -------------------------------------------------------------------------------- /jni/node/src/node_stdio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_stdio.cc -------------------------------------------------------------------------------- /jni/node/src/node_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_stdio.h -------------------------------------------------------------------------------- /jni/node/src/node_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_string.cc -------------------------------------------------------------------------------- /jni/node/src/node_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_string.h -------------------------------------------------------------------------------- /jni/node/src/node_timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_timer.cc -------------------------------------------------------------------------------- /jni/node/src/node_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_timer.h -------------------------------------------------------------------------------- /jni/node/src/node_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_version.h -------------------------------------------------------------------------------- /jni/node/src/node_zlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/node_zlib.cc -------------------------------------------------------------------------------- /jni/node/src/pipe_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/pipe_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/pipe_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/pipe_wrap.h -------------------------------------------------------------------------------- /jni/node/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/platform.h -------------------------------------------------------------------------------- /jni/node/src/process_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/process_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/req_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/req_wrap.h -------------------------------------------------------------------------------- /jni/node/src/stdio_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/stdio_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/stream_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/stream_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/stream_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/stream_wrap.h -------------------------------------------------------------------------------- /jni/node/src/tcp_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/tcp_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/timer_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/timer_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/tty_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/tty_wrap.cc -------------------------------------------------------------------------------- /jni/node/src/udp_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/node/src/udp_wrap.cc -------------------------------------------------------------------------------- /jni/openssl/ACKNOWLEDGMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ACKNOWLEDGMENTS -------------------------------------------------------------------------------- /jni/openssl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/CHANGES -------------------------------------------------------------------------------- /jni/openssl/CHANGES.SSLeay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/CHANGES.SSLeay -------------------------------------------------------------------------------- /jni/openssl/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/Configure -------------------------------------------------------------------------------- /jni/openssl/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/FAQ -------------------------------------------------------------------------------- /jni/openssl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL -------------------------------------------------------------------------------- /jni/openssl/INSTALL.DJGPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.DJGPP -------------------------------------------------------------------------------- /jni/openssl/INSTALL.MacOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.MacOS -------------------------------------------------------------------------------- /jni/openssl/INSTALL.NW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.NW -------------------------------------------------------------------------------- /jni/openssl/INSTALL.OS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.OS2 -------------------------------------------------------------------------------- /jni/openssl/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.VMS -------------------------------------------------------------------------------- /jni/openssl/INSTALL.W32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.W32 -------------------------------------------------------------------------------- /jni/openssl/INSTALL.W64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.W64 -------------------------------------------------------------------------------- /jni/openssl/INSTALL.WCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/INSTALL.WCE -------------------------------------------------------------------------------- /jni/openssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/LICENSE -------------------------------------------------------------------------------- /jni/openssl/MacOS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/MacOS/TODO -------------------------------------------------------------------------------- /jni/openssl/MacOS/buildinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/MacOS/buildinf.h -------------------------------------------------------------------------------- /jni/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/Makefile -------------------------------------------------------------------------------- /jni/openssl/Makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/Makefile.bak -------------------------------------------------------------------------------- /jni/openssl/Makefile.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/Makefile.org -------------------------------------------------------------------------------- /jni/openssl/Makefile.shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/Makefile.shared -------------------------------------------------------------------------------- /jni/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/NEWS -------------------------------------------------------------------------------- /jni/openssl/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/PROBLEMS -------------------------------------------------------------------------------- /jni/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/README -------------------------------------------------------------------------------- /jni/openssl/README.ASN1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/README.ASN1 -------------------------------------------------------------------------------- /jni/openssl/README.ENGINE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/README.ENGINE -------------------------------------------------------------------------------- /jni/openssl/VMS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/VMS/TODO -------------------------------------------------------------------------------- /jni/openssl/VMS/WISHLIST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/VMS/WISHLIST.TXT -------------------------------------------------------------------------------- /jni/openssl/VMS/mkshared.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/VMS/mkshared.com -------------------------------------------------------------------------------- /jni/openssl/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /jni/openssl/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/CA.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/CA.com -------------------------------------------------------------------------------- /jni/openssl/apps/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/CA.pl -------------------------------------------------------------------------------- /jni/openssl/apps/CA.pl.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/CA.pl.bak -------------------------------------------------------------------------------- /jni/openssl/apps/CA.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/CA.pl.in -------------------------------------------------------------------------------- /jni/openssl/apps/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/CA.sh -------------------------------------------------------------------------------- /jni/openssl/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/Makefile -------------------------------------------------------------------------------- /jni/openssl/apps/app_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/app_rand.c -------------------------------------------------------------------------------- /jni/openssl/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/apps.c -------------------------------------------------------------------------------- /jni/openssl/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/apps.h -------------------------------------------------------------------------------- /jni/openssl/apps/asn1pars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/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/john-difool/nodejs-android/HEAD/jni/openssl/apps/ca-key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ca-req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ca.c -------------------------------------------------------------------------------- /jni/openssl/apps/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/cert.pem -------------------------------------------------------------------------------- /jni/openssl/apps/ciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ciphers.c -------------------------------------------------------------------------------- /jni/openssl/apps/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/client.pem -------------------------------------------------------------------------------- /jni/openssl/apps/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/cms.c -------------------------------------------------------------------------------- /jni/openssl/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/crl.c -------------------------------------------------------------------------------- /jni/openssl/apps/crl2p7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/crl2p7.c -------------------------------------------------------------------------------- /jni/openssl/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dgst.c -------------------------------------------------------------------------------- /jni/openssl/apps/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dh.c -------------------------------------------------------------------------------- /jni/openssl/apps/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dh1024.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dh2048.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dh4096.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dh512.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dhparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dhparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/dsa-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsa-ca.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa-pca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsa-pca.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsa1024.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsa512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsa512.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsap.pem -------------------------------------------------------------------------------- /jni/openssl/apps/dsaparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/dsaparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ec.c -------------------------------------------------------------------------------- /jni/openssl/apps/ecparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ecparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/enc.c -------------------------------------------------------------------------------- /jni/openssl/apps/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/engine.c -------------------------------------------------------------------------------- /jni/openssl/apps/errstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/errstr.c -------------------------------------------------------------------------------- /jni/openssl/apps/gendh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/gendh.c -------------------------------------------------------------------------------- /jni/openssl/apps/gendsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/gendsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/genpkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/genpkey.c -------------------------------------------------------------------------------- /jni/openssl/apps/genrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/genrsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/md4.c -------------------------------------------------------------------------------- /jni/openssl/apps/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/nseq.c -------------------------------------------------------------------------------- /jni/openssl/apps/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ocsp.c -------------------------------------------------------------------------------- /jni/openssl/apps/oid.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/oid.cnf -------------------------------------------------------------------------------- /jni/openssl/apps/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/openssl.c -------------------------------------------------------------------------------- /jni/openssl/apps/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/openssl.cnf -------------------------------------------------------------------------------- /jni/openssl/apps/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/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/john-difool/nodejs-android/HEAD/jni/openssl/apps/pca-key.pem -------------------------------------------------------------------------------- /jni/openssl/apps/pca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pca-req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkcs12.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkcs7.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkcs8.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkey.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkeyparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkeyparam.c -------------------------------------------------------------------------------- /jni/openssl/apps/pkeyutl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/pkeyutl.c -------------------------------------------------------------------------------- /jni/openssl/apps/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/prime.c -------------------------------------------------------------------------------- /jni/openssl/apps/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/privkey.pem -------------------------------------------------------------------------------- /jni/openssl/apps/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/progs.h -------------------------------------------------------------------------------- /jni/openssl/apps/progs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/progs.pl -------------------------------------------------------------------------------- /jni/openssl/apps/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/rand.c -------------------------------------------------------------------------------- /jni/openssl/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/req.c -------------------------------------------------------------------------------- /jni/openssl/apps/req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/req.pem -------------------------------------------------------------------------------- /jni/openssl/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/rsa.c -------------------------------------------------------------------------------- /jni/openssl/apps/rsa8192.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/rsa8192.pem -------------------------------------------------------------------------------- /jni/openssl/apps/rsautl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/rsautl.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_apps.h -------------------------------------------------------------------------------- /jni/openssl/apps/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_cb.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_client.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_server.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_socket.c -------------------------------------------------------------------------------- /jni/openssl/apps/s_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/s_time.c -------------------------------------------------------------------------------- /jni/openssl/apps/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/server.pem -------------------------------------------------------------------------------- /jni/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /jni/openssl/apps/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/server2.pem -------------------------------------------------------------------------------- /jni/openssl/apps/sess_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/sess_id.c -------------------------------------------------------------------------------- /jni/openssl/apps/smime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/smime.c -------------------------------------------------------------------------------- /jni/openssl/apps/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/speed.c -------------------------------------------------------------------------------- /jni/openssl/apps/spkac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/spkac.c -------------------------------------------------------------------------------- /jni/openssl/apps/testCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/testCA.pem -------------------------------------------------------------------------------- /jni/openssl/apps/testdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/testdsa.h -------------------------------------------------------------------------------- /jni/openssl/apps/testrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/testrsa.h -------------------------------------------------------------------------------- /jni/openssl/apps/timeouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/timeouts.h -------------------------------------------------------------------------------- /jni/openssl/apps/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/ts.c -------------------------------------------------------------------------------- /jni/openssl/apps/tsget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/tsget -------------------------------------------------------------------------------- /jni/openssl/apps/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/verify.c -------------------------------------------------------------------------------- /jni/openssl/apps/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/version.c -------------------------------------------------------------------------------- /jni/openssl/apps/winrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/winrand.c -------------------------------------------------------------------------------- /jni/openssl/apps/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/apps/x509.c -------------------------------------------------------------------------------- /jni/openssl/bugs/MS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/MS -------------------------------------------------------------------------------- /jni/openssl/bugs/SSLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/SSLv3 -------------------------------------------------------------------------------- /jni/openssl/bugs/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/alpha.c -------------------------------------------------------------------------------- /jni/openssl/bugs/dggccbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/dggccbug.c -------------------------------------------------------------------------------- /jni/openssl/bugs/sgiccbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/sgiccbug.c -------------------------------------------------------------------------------- /jni/openssl/bugs/sslref.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/sslref.dif -------------------------------------------------------------------------------- /jni/openssl/bugs/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/stream.c -------------------------------------------------------------------------------- /jni/openssl/bugs/ultrixcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/bugs/ultrixcc.c -------------------------------------------------------------------------------- /jni/openssl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/config -------------------------------------------------------------------------------- /jni/openssl/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/Makefile -------------------------------------------------------------------------------- /jni/openssl/crypto/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/aes/aes.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bf/README -------------------------------------------------------------------------------- /jni/openssl/crypto/bio/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bio/bio.h -------------------------------------------------------------------------------- /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/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bn/bn.h -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/bn.mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bn/bn.mul -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bn/exp.c -------------------------------------------------------------------------------- /jni/openssl/crypto/bn/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/bn/todo -------------------------------------------------------------------------------- /jni/openssl/crypto/cms/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/cms/cms.h -------------------------------------------------------------------------------- /jni/openssl/crypto/cpt_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/cpt_err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/crypto.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/des/des.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/des/des.h -------------------------------------------------------------------------------- /jni/openssl/crypto/des/rpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/des/rpw.c -------------------------------------------------------------------------------- /jni/openssl/crypto/des/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/des/spr.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/dh/dh.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/p192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/dh/p192.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dh/p512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/dh/p512.c -------------------------------------------------------------------------------- /jni/openssl/crypto/dsa/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/dsa/dsa.h -------------------------------------------------------------------------------- /jni/openssl/crypto/dso/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/dso/dso.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ebcdic.c -------------------------------------------------------------------------------- /jni/openssl/crypto/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ebcdic.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ec/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ec/ec.h -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/err/err.c -------------------------------------------------------------------------------- /jni/openssl/crypto/err/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/err/err.h -------------------------------------------------------------------------------- /jni/openssl/crypto/evp/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/evp/evp.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ex_data.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md2/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md2/md2.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md2/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md2/md2.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md4/md4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md4/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md4/md4.h -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md5/md5.c -------------------------------------------------------------------------------- /jni/openssl/crypto/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/md5/md5.h -------------------------------------------------------------------------------- /jni/openssl/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/mem.c -------------------------------------------------------------------------------- /jni/openssl/crypto/mem_clr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/mem_clr.c -------------------------------------------------------------------------------- /jni/openssl/crypto/mem_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/mem_dbg.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_dir.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_dir.h -------------------------------------------------------------------------------- /jni/openssl/crypto/o_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_str.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_str.h -------------------------------------------------------------------------------- /jni/openssl/crypto/o_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_time.c -------------------------------------------------------------------------------- /jni/openssl/crypto/o_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/o_time.h -------------------------------------------------------------------------------- /jni/openssl/crypto/pem/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/pem/pem.h -------------------------------------------------------------------------------- /jni/openssl/crypto/pkcs7/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/pkcs7/doc -------------------------------------------------------------------------------- /jni/openssl/crypto/rc2/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rc2/rc2.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rc2/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rc2/tab.c -------------------------------------------------------------------------------- /jni/openssl/crypto/rc4/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rc4/rc4.c -------------------------------------------------------------------------------- /jni/openssl/crypto/rc4/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rc4/rc4.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rc5/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rc5/rc5.h -------------------------------------------------------------------------------- /jni/openssl/crypto/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/rsa/rsa.h -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/sha/sha.c -------------------------------------------------------------------------------- /jni/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ts/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ts/ts.h -------------------------------------------------------------------------------- /jni/openssl/crypto/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/ui/ui.h -------------------------------------------------------------------------------- /jni/openssl/crypto/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/uid.c -------------------------------------------------------------------------------- /jni/openssl/crypto/vms_rms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/crypto/vms_rms.h -------------------------------------------------------------------------------- /jni/openssl/demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/README -------------------------------------------------------------------------------- /jni/openssl/demos/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/b64.c -------------------------------------------------------------------------------- /jni/openssl/demos/b64.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/b64.pl -------------------------------------------------------------------------------- /jni/openssl/demos/bio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/bio/README -------------------------------------------------------------------------------- /jni/openssl/demos/cms/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for CMS encryption 4 | -------------------------------------------------------------------------------- /jni/openssl/demos/eay/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/eay/conn.c -------------------------------------------------------------------------------- /jni/openssl/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /jni/openssl/demos/selfsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/selfsign.c -------------------------------------------------------------------------------- /jni/openssl/demos/smime/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for PKCS#7 encryption 4 | -------------------------------------------------------------------------------- /jni/openssl/demos/spkigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/demos/spkigen.c -------------------------------------------------------------------------------- /jni/openssl/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/README -------------------------------------------------------------------------------- /jni/openssl/doc/apps/ca.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/ca.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/cms.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/cms.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/crl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/crl.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/dsa.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/dsa.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/ec.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/ec.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/enc.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/enc.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/req.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/req.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/rsa.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/rsa.pod -------------------------------------------------------------------------------- /jni/openssl/doc/apps/ts.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/apps/ts.pod -------------------------------------------------------------------------------- /jni/openssl/doc/openssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/openssl.txt -------------------------------------------------------------------------------- /jni/openssl/doc/ssl/ssl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/ssl/ssl.pod -------------------------------------------------------------------------------- /jni/openssl/doc/ssleay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/doc/ssleay.txt -------------------------------------------------------------------------------- /jni/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/e_os.h -------------------------------------------------------------------------------- /jni/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/e_os2.h -------------------------------------------------------------------------------- /jni/openssl/engines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/Makefile -------------------------------------------------------------------------------- /jni/openssl/engines/axp.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/axp.opt -------------------------------------------------------------------------------- /jni/openssl/engines/e_aep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_aep.c -------------------------------------------------------------------------------- /jni/openssl/engines/e_aep.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_aep.ec -------------------------------------------------------------------------------- /jni/openssl/engines/e_capi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_capi.c -------------------------------------------------------------------------------- /jni/openssl/engines/e_chil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_chil.c -------------------------------------------------------------------------------- /jni/openssl/engines/e_gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_gmp.c -------------------------------------------------------------------------------- /jni/openssl/engines/e_gmp.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/e_gmp.ec -------------------------------------------------------------------------------- /jni/openssl/engines/ia64.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/ia64.opt -------------------------------------------------------------------------------- /jni/openssl/engines/vax.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/engines/vax.opt -------------------------------------------------------------------------------- /jni/openssl/install.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/install.com -------------------------------------------------------------------------------- /jni/openssl/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/makevms.com -------------------------------------------------------------------------------- /jni/openssl/ms/.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/.rnd -------------------------------------------------------------------------------- /jni/openssl/ms/32all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/32all.bat -------------------------------------------------------------------------------- /jni/openssl/ms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/README -------------------------------------------------------------------------------- /jni/openssl/ms/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/applink.c -------------------------------------------------------------------------------- /jni/openssl/ms/bcb4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/bcb4.bat -------------------------------------------------------------------------------- /jni/openssl/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /jni/openssl/ms/certCA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/certCA.ss -------------------------------------------------------------------------------- /jni/openssl/ms/certU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/certU.ss -------------------------------------------------------------------------------- /jni/openssl/ms/cmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/cmp.pl -------------------------------------------------------------------------------- /jni/openssl/ms/do_ms.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/do_ms.bat -------------------------------------------------------------------------------- /jni/openssl/ms/do_nasm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/do_nasm.bat -------------------------------------------------------------------------------- /jni/openssl/ms/do_nt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/do_nt.bat -------------------------------------------------------------------------------- /jni/openssl/ms/do_win64a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/do_win64a.bat -------------------------------------------------------------------------------- /jni/openssl/ms/do_win64i.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/do_win64i.bat -------------------------------------------------------------------------------- /jni/openssl/ms/keyCA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/keyCA.ss -------------------------------------------------------------------------------- /jni/openssl/ms/keyU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/keyU.ss -------------------------------------------------------------------------------- /jni/openssl/ms/mingw32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/mingw32.bat -------------------------------------------------------------------------------- /jni/openssl/ms/mw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/mw.bat -------------------------------------------------------------------------------- /jni/openssl/ms/req2CA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/req2CA.ss -------------------------------------------------------------------------------- /jni/openssl/ms/reqCA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/reqCA.ss -------------------------------------------------------------------------------- /jni/openssl/ms/reqU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/reqU.ss -------------------------------------------------------------------------------- /jni/openssl/ms/speed32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/speed32.bat -------------------------------------------------------------------------------- /jni/openssl/ms/tenc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/tenc.bat -------------------------------------------------------------------------------- /jni/openssl/ms/tencce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/tencce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/test.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testce2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testce2.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testenc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testenc.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testencce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testencce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testpem.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testpem.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testpemce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testpemce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testss.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testss.bat -------------------------------------------------------------------------------- /jni/openssl/ms/testssce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/testssce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/tlhelp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/tlhelp32.h -------------------------------------------------------------------------------- /jni/openssl/ms/tpem.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/tpem.bat -------------------------------------------------------------------------------- /jni/openssl/ms/tpemce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/tpemce.bat -------------------------------------------------------------------------------- /jni/openssl/ms/uplink-x86.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/uplink-x86.pl -------------------------------------------------------------------------------- /jni/openssl/ms/uplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/uplink.c -------------------------------------------------------------------------------- /jni/openssl/ms/uplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/uplink.h -------------------------------------------------------------------------------- /jni/openssl/ms/uplink.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/uplink.pl -------------------------------------------------------------------------------- /jni/openssl/ms/x86asm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ms/x86asm.bat -------------------------------------------------------------------------------- /jni/openssl/openssl.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/openssl.doxy -------------------------------------------------------------------------------- /jni/openssl/openssl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/openssl.spec -------------------------------------------------------------------------------- /jni/openssl/os2/OS2-EMX.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/os2/OS2-EMX.cmd -------------------------------------------------------------------------------- /jni/openssl/shlib/README: -------------------------------------------------------------------------------- 1 | Only the windows NT and, linux builds have been tested for SSLeay 0.8.0 2 | -------------------------------------------------------------------------------- /jni/openssl/shlib/irix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/shlib/irix.sh -------------------------------------------------------------------------------- /jni/openssl/shlib/solaris.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/shlib/solaris.sh -------------------------------------------------------------------------------- /jni/openssl/shlib/sun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/shlib/sun.sh -------------------------------------------------------------------------------- /jni/openssl/shlib/win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/shlib/win32.bat -------------------------------------------------------------------------------- /jni/openssl/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/Makefile -------------------------------------------------------------------------------- /jni/openssl/ssl/bio_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/bio_ssl.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_both.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/d1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/d1_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/dtls1.h -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/kssl.c -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/kssl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/kssl_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/kssl_lcl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s23_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s23_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s23_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s23_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s23_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s23_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s2_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s2_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_both.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_pkt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/s3_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/s3_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl-lib.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl-lib.com -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl2.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl23.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl3.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_algs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_algs.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_asn1.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_cert.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_ciph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_ciph.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_err.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_err2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_err2.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_locl.h -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_rsa.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_sess.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_stat.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_task.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssl_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssl_txt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/ssltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/ssltest.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_clnt.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_enc.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_lib.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_meth.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_reneg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_reneg.c -------------------------------------------------------------------------------- /jni/openssl/ssl/t1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/t1_srvr.c -------------------------------------------------------------------------------- /jni/openssl/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/ssl/tls1.h -------------------------------------------------------------------------------- /jni/openssl/test/CAss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/CAss.cnf -------------------------------------------------------------------------------- /jni/openssl/test/CAssdh.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/CAssdh.cnf -------------------------------------------------------------------------------- /jni/openssl/test/CAssdsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/CAssdsa.cnf -------------------------------------------------------------------------------- /jni/openssl/test/CAssrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/CAssrsa.cnf -------------------------------------------------------------------------------- /jni/openssl/test/CAtsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/CAtsa.cnf -------------------------------------------------------------------------------- /jni/openssl/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/Makefile -------------------------------------------------------------------------------- /jni/openssl/test/P1ss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/P1ss.cnf -------------------------------------------------------------------------------- /jni/openssl/test/P2ss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/P2ss.cnf -------------------------------------------------------------------------------- /jni/openssl/test/Sssdsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/Sssdsa.cnf -------------------------------------------------------------------------------- /jni/openssl/test/Sssrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/Sssrsa.cnf -------------------------------------------------------------------------------- /jni/openssl/test/Uss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/Uss.cnf -------------------------------------------------------------------------------- /jni/openssl/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jni/openssl/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /jni/openssl/test/asn1test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/asn1test.c -------------------------------------------------------------------------------- /jni/openssl/test/bctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/bctest -------------------------------------------------------------------------------- /jni/openssl/test/bctest.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/bctest.com -------------------------------------------------------------------------------- /jni/openssl/test/bftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/bftest.c -------------------------------------------------------------------------------- /jni/openssl/test/bntest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/bntest.c -------------------------------------------------------------------------------- /jni/openssl/test/bntest.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/bntest.com -------------------------------------------------------------------------------- /jni/openssl/test/casttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/casttest.c -------------------------------------------------------------------------------- /jni/openssl/test/cms-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/cms-test.pl -------------------------------------------------------------------------------- /jni/openssl/test/destest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/destest.c -------------------------------------------------------------------------------- /jni/openssl/test/dhtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/dhtest.c -------------------------------------------------------------------------------- /jni/openssl/test/dsatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/dsatest.c -------------------------------------------------------------------------------- /jni/openssl/test/dummytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/dummytest.c -------------------------------------------------------------------------------- /jni/openssl/test/ecdhtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/ecdhtest.c -------------------------------------------------------------------------------- /jni/openssl/test/ecdsatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/ecdsatest.c -------------------------------------------------------------------------------- /jni/openssl/test/ectest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/ectest.c -------------------------------------------------------------------------------- /jni/openssl/test/evp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/evp_test.c -------------------------------------------------------------------------------- /jni/openssl/test/exptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/exptest.c -------------------------------------------------------------------------------- /jni/openssl/test/hmactest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/hmactest.c -------------------------------------------------------------------------------- /jni/openssl/test/ideatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/ideatest.c -------------------------------------------------------------------------------- /jni/openssl/test/igetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/igetest.c -------------------------------------------------------------------------------- /jni/openssl/test/jpaketest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/jpaketest.c -------------------------------------------------------------------------------- /jni/openssl/test/md2test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/md2test.c -------------------------------------------------------------------------------- /jni/openssl/test/md4test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/md4test.c -------------------------------------------------------------------------------- /jni/openssl/test/md5test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/md5test.c -------------------------------------------------------------------------------- /jni/openssl/test/mdc2test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/mdc2test.c -------------------------------------------------------------------------------- /jni/openssl/test/methtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/methtest.c -------------------------------------------------------------------------------- /jni/openssl/test/pkcs7-1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/pkcs7-1.pem -------------------------------------------------------------------------------- /jni/openssl/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /jni/openssl/test/tcrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tcrl -------------------------------------------------------------------------------- /jni/openssl/test/tcrl.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tcrl.com -------------------------------------------------------------------------------- /jni/openssl/test/test.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/test.cnf -------------------------------------------------------------------------------- /jni/openssl/test/testca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testca -------------------------------------------------------------------------------- /jni/openssl/test/testenc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testenc -------------------------------------------------------------------------------- /jni/openssl/test/testgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testgen -------------------------------------------------------------------------------- /jni/openssl/test/testss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testss -------------------------------------------------------------------------------- /jni/openssl/test/testssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testssl -------------------------------------------------------------------------------- /jni/openssl/test/testtsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/testtsa -------------------------------------------------------------------------------- /jni/openssl/test/times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/times -------------------------------------------------------------------------------- /jni/openssl/test/tpkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tpkcs7 -------------------------------------------------------------------------------- /jni/openssl/test/tpkcs7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tpkcs7d -------------------------------------------------------------------------------- /jni/openssl/test/treq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/treq -------------------------------------------------------------------------------- /jni/openssl/test/treq.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/treq.com -------------------------------------------------------------------------------- /jni/openssl/test/trsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/trsa -------------------------------------------------------------------------------- /jni/openssl/test/trsa.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/trsa.com -------------------------------------------------------------------------------- /jni/openssl/test/tsid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tsid -------------------------------------------------------------------------------- /jni/openssl/test/tsid.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tsid.com -------------------------------------------------------------------------------- /jni/openssl/test/tx509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/test/tx509 -------------------------------------------------------------------------------- /jni/openssl/times/100.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/100.lnx -------------------------------------------------------------------------------- /jni/openssl/times/100.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/100.nt -------------------------------------------------------------------------------- /jni/openssl/times/200.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/200.lnx -------------------------------------------------------------------------------- /jni/openssl/times/5.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/5.lnx -------------------------------------------------------------------------------- /jni/openssl/times/L1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/L1 -------------------------------------------------------------------------------- /jni/openssl/times/R4400.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/R4400.t -------------------------------------------------------------------------------- /jni/openssl/times/aix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/aix.t -------------------------------------------------------------------------------- /jni/openssl/times/alpha.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/alpha.t -------------------------------------------------------------------------------- /jni/openssl/times/dgux.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/dgux.t -------------------------------------------------------------------------------- /jni/openssl/times/hpux.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/hpux.t -------------------------------------------------------------------------------- /jni/openssl/times/p2.w95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/p2.w95 -------------------------------------------------------------------------------- /jni/openssl/times/pent2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/pent2.t -------------------------------------------------------------------------------- /jni/openssl/times/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/readme -------------------------------------------------------------------------------- /jni/openssl/times/sgi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/sgi.t -------------------------------------------------------------------------------- /jni/openssl/times/sparc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/sparc.t -------------------------------------------------------------------------------- /jni/openssl/times/sparc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/times/sparc2 -------------------------------------------------------------------------------- /jni/openssl/tools/c89.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/tools/c89.sh -------------------------------------------------------------------------------- /jni/openssl/tools/c_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/tools/c_hash -------------------------------------------------------------------------------- /jni/openssl/tools/c_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/tools/c_info -------------------------------------------------------------------------------- /jni/openssl/tools/c_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/tools/c_name -------------------------------------------------------------------------------- /jni/openssl/util/bat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/bat.sh -------------------------------------------------------------------------------- /jni/openssl/util/copy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/copy.pl -------------------------------------------------------------------------------- /jni/openssl/util/do_ms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/do_ms.sh -------------------------------------------------------------------------------- /jni/openssl/util/domd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/domd -------------------------------------------------------------------------------- /jni/openssl/util/files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/files.pl -------------------------------------------------------------------------------- /jni/openssl/util/fixNT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/fixNT.sh -------------------------------------------------------------------------------- /jni/openssl/util/mk1mf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/mk1mf.pl -------------------------------------------------------------------------------- /jni/openssl/util/mkdef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/mkdef.pl -------------------------------------------------------------------------------- /jni/openssl/util/mkerr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/mkerr.pl -------------------------------------------------------------------------------- /jni/openssl/util/mkrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/mkrc.pl -------------------------------------------------------------------------------- /jni/openssl/util/point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/point.sh -------------------------------------------------------------------------------- /jni/openssl/util/speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/openssl/util/speed.sh -------------------------------------------------------------------------------- /jni/test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/test/Android.mk -------------------------------------------------------------------------------- /jni/test/gen/test-js.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/test/gen/test-js.cc -------------------------------------------------------------------------------- /jni/test/include/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/test/include/test.h -------------------------------------------------------------------------------- /jni/test/src/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/test/src/test.cc -------------------------------------------------------------------------------- /jni/uv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/.gitignore -------------------------------------------------------------------------------- /jni/uv/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/.mailmap -------------------------------------------------------------------------------- /jni/uv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/AUTHORS -------------------------------------------------------------------------------- /jni/uv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/Android.mk -------------------------------------------------------------------------------- /jni/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/LICENSE -------------------------------------------------------------------------------- /jni/uv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/Makefile -------------------------------------------------------------------------------- /jni/uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/README.md -------------------------------------------------------------------------------- /jni/uv/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/common.gypi -------------------------------------------------------------------------------- /jni/uv/config-mingw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/config-mingw.mk -------------------------------------------------------------------------------- /jni/uv/config-unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/config-unix.mk -------------------------------------------------------------------------------- /jni/uv/gyp_uv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/gyp_uv -------------------------------------------------------------------------------- /jni/uv/include/ares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/include/ares.h -------------------------------------------------------------------------------- /jni/uv/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/include/uv.h -------------------------------------------------------------------------------- /jni/uv/src/ares/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/AUTHORS -------------------------------------------------------------------------------- /jni/uv/src/ares/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/CHANGES -------------------------------------------------------------------------------- /jni/uv/src/ares/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/NEWS -------------------------------------------------------------------------------- /jni/uv/src/ares/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/README -------------------------------------------------------------------------------- /jni/uv/src/ares/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/TODO -------------------------------------------------------------------------------- /jni/uv/src/ares/bitncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/bitncmp.c -------------------------------------------------------------------------------- /jni/uv/src/ares/bitncmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/bitncmp.h -------------------------------------------------------------------------------- /jni/uv/src/ares/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/ares/nameser.h -------------------------------------------------------------------------------- /jni/uv/src/unix/cares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/cares.c -------------------------------------------------------------------------------- /jni/uv/src/unix/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/core.c -------------------------------------------------------------------------------- /jni/uv/src/unix/cygwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/cygwin.c -------------------------------------------------------------------------------- /jni/uv/src/unix/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/darwin.c -------------------------------------------------------------------------------- /jni/uv/src/unix/eio/ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/eio/ecb.h -------------------------------------------------------------------------------- /jni/uv/src/unix/eio/eio.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/eio/eio.3 -------------------------------------------------------------------------------- /jni/uv/src/unix/eio/eio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/eio/eio.c -------------------------------------------------------------------------------- /jni/uv/src/unix/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/error.c -------------------------------------------------------------------------------- /jni/uv/src/unix/ev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/ev/README -------------------------------------------------------------------------------- /jni/uv/src/unix/ev/ev++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/ev/ev++.h -------------------------------------------------------------------------------- /jni/uv/src/unix/ev/ev.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/ev/ev.3 -------------------------------------------------------------------------------- /jni/uv/src/unix/ev/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/ev/ev.c -------------------------------------------------------------------------------- /jni/uv/src/unix/ev/ev.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/ev/ev.pod -------------------------------------------------------------------------------- /jni/uv/src/unix/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/freebsd.c -------------------------------------------------------------------------------- /jni/uv/src/unix/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/fs.c -------------------------------------------------------------------------------- /jni/uv/src/unix/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/linux.c -------------------------------------------------------------------------------- /jni/uv/src/unix/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/netbsd.c -------------------------------------------------------------------------------- /jni/uv/src/unix/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/pipe.c -------------------------------------------------------------------------------- /jni/uv/src/unix/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/process.c -------------------------------------------------------------------------------- /jni/uv/src/unix/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/stream.c -------------------------------------------------------------------------------- /jni/uv/src/unix/sunos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/sunos.c -------------------------------------------------------------------------------- /jni/uv/src/unix/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/tcp.c -------------------------------------------------------------------------------- /jni/uv/src/unix/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/tty.c -------------------------------------------------------------------------------- /jni/uv/src/unix/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/udp.c -------------------------------------------------------------------------------- /jni/uv/src/unix/uv-eio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/uv-eio.c -------------------------------------------------------------------------------- /jni/uv/src/unix/uv-eio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/unix/uv-eio.h -------------------------------------------------------------------------------- /jni/uv/src/uv-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/uv-common.c -------------------------------------------------------------------------------- /jni/uv/src/uv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/uv-common.h -------------------------------------------------------------------------------- /jni/uv/src/win/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/async.c -------------------------------------------------------------------------------- /jni/uv/src/win/cares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/cares.c -------------------------------------------------------------------------------- /jni/uv/src/win/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/core.c -------------------------------------------------------------------------------- /jni/uv/src/win/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/error.c -------------------------------------------------------------------------------- /jni/uv/src/win/fs-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/fs-event.c -------------------------------------------------------------------------------- /jni/uv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/fs.c -------------------------------------------------------------------------------- /jni/uv/src/win/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/handle.c -------------------------------------------------------------------------------- /jni/uv/src/win/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/internal.h -------------------------------------------------------------------------------- /jni/uv/src/win/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/pipe.c -------------------------------------------------------------------------------- /jni/uv/src/win/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/process.c -------------------------------------------------------------------------------- /jni/uv/src/win/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/req.c -------------------------------------------------------------------------------- /jni/uv/src/win/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/stdio.c -------------------------------------------------------------------------------- /jni/uv/src/win/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/stream.c -------------------------------------------------------------------------------- /jni/uv/src/win/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/tcp.c -------------------------------------------------------------------------------- /jni/uv/src/win/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/threads.c -------------------------------------------------------------------------------- /jni/uv/src/win/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/timer.c -------------------------------------------------------------------------------- /jni/uv/src/win/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/tty.c -------------------------------------------------------------------------------- /jni/uv/src/win/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/udp.c -------------------------------------------------------------------------------- /jni/uv/src/win/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/util.c -------------------------------------------------------------------------------- /jni/uv/src/win/winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/winapi.c -------------------------------------------------------------------------------- /jni/uv/src/win/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/winapi.h -------------------------------------------------------------------------------- /jni/uv/src/win/winsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/winsock.c -------------------------------------------------------------------------------- /jni/uv/src/win/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/src/win/winsock.h -------------------------------------------------------------------------------- /jni/uv/test/dns-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/dns-server.c -------------------------------------------------------------------------------- /jni/uv/test/echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/echo-server.c -------------------------------------------------------------------------------- /jni/uv/test/run-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/run-tests.c -------------------------------------------------------------------------------- /jni/uv/test/runner-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner-unix.c -------------------------------------------------------------------------------- /jni/uv/test/runner-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner-unix.h -------------------------------------------------------------------------------- /jni/uv/test/runner-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner-win.c -------------------------------------------------------------------------------- /jni/uv/test/runner-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner-win.h -------------------------------------------------------------------------------- /jni/uv/test/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner.c -------------------------------------------------------------------------------- /jni/uv/test/runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/runner.h -------------------------------------------------------------------------------- /jni/uv/test/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/task.h -------------------------------------------------------------------------------- /jni/uv/test/test-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-async.c -------------------------------------------------------------------------------- /jni/uv/test/test-fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-fs.c -------------------------------------------------------------------------------- /jni/uv/test/test-hrtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-hrtime.c -------------------------------------------------------------------------------- /jni/uv/test/test-idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-idle.c -------------------------------------------------------------------------------- /jni/uv/test/test-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-list.h -------------------------------------------------------------------------------- /jni/uv/test/test-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-ref.c -------------------------------------------------------------------------------- /jni/uv/test/test-spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-spawn.c -------------------------------------------------------------------------------- /jni/uv/test/test-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-timer.c -------------------------------------------------------------------------------- /jni/uv/test/test-tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/test/test-tty.c -------------------------------------------------------------------------------- /jni/uv/uv.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/uv.gyp -------------------------------------------------------------------------------- /jni/uv/vcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/uv/vcbuild.bat -------------------------------------------------------------------------------- /jni/v8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/.gitignore -------------------------------------------------------------------------------- /jni/v8/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/AUTHORS -------------------------------------------------------------------------------- /jni/v8/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/Android.mk -------------------------------------------------------------------------------- /jni/v8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/ChangeLog -------------------------------------------------------------------------------- /jni/v8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/LICENSE -------------------------------------------------------------------------------- /jni/v8/LICENSE.strongtalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/LICENSE.strongtalk -------------------------------------------------------------------------------- /jni/v8/LICENSE.v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/LICENSE.v8 -------------------------------------------------------------------------------- /jni/v8/LICENSE.valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/LICENSE.valgrind -------------------------------------------------------------------------------- /jni/v8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/Makefile -------------------------------------------------------------------------------- /jni/v8/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/SConstruct -------------------------------------------------------------------------------- /jni/v8/benchmarks/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/benchmarks/base.js -------------------------------------------------------------------------------- /jni/v8/benchmarks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/benchmarks/run.js -------------------------------------------------------------------------------- /jni/v8/gyp-mac-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/gyp-mac-tool -------------------------------------------------------------------------------- /jni/v8/include/v8-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/include/v8-debug.h -------------------------------------------------------------------------------- /jni/v8/include/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/include/v8.h -------------------------------------------------------------------------------- /jni/v8/include/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/include/v8stdint.h -------------------------------------------------------------------------------- /jni/v8/out/environment: -------------------------------------------------------------------------------- 1 | GYPFLAGS= -Dv8_can_use_vfp_instructions=true 2 | -------------------------------------------------------------------------------- /jni/v8/out/gyp-mac-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/out/gyp-mac-tool -------------------------------------------------------------------------------- /jni/v8/out/native/cctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/out/native/cctest -------------------------------------------------------------------------------- /jni/v8/out/native/d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/out/native/d8 -------------------------------------------------------------------------------- /jni/v8/out/native/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/out/native/process -------------------------------------------------------------------------------- /jni/v8/out/native/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/out/native/shell -------------------------------------------------------------------------------- /jni/v8/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/SConscript -------------------------------------------------------------------------------- /jni/v8/src/accessors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/accessors.cc -------------------------------------------------------------------------------- /jni/v8/src/accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/accessors.h -------------------------------------------------------------------------------- /jni/v8/src/allocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/allocation.cc -------------------------------------------------------------------------------- /jni/v8/src/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/allocation.h -------------------------------------------------------------------------------- /jni/v8/src/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/api.cc -------------------------------------------------------------------------------- /jni/v8/src/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/api.h -------------------------------------------------------------------------------- /jni/v8/src/apinatives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/apinatives.js -------------------------------------------------------------------------------- /jni/v8/src/apiutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/apiutils.h -------------------------------------------------------------------------------- /jni/v8/src/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/arguments.h -------------------------------------------------------------------------------- /jni/v8/src/arm/cpu-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/arm/cpu-arm.cc -------------------------------------------------------------------------------- /jni/v8/src/arm/ic-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/arm/ic-arm.cc -------------------------------------------------------------------------------- /jni/v8/src/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/array.js -------------------------------------------------------------------------------- /jni/v8/src/assembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/assembler.cc -------------------------------------------------------------------------------- /jni/v8/src/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/assembler.h -------------------------------------------------------------------------------- /jni/v8/src/ast-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ast-inl.h -------------------------------------------------------------------------------- /jni/v8/src/ast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ast.cc -------------------------------------------------------------------------------- /jni/v8/src/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ast.h -------------------------------------------------------------------------------- /jni/v8/src/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/atomicops.h -------------------------------------------------------------------------------- /jni/v8/src/bignum-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/bignum-dtoa.cc -------------------------------------------------------------------------------- /jni/v8/src/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/bignum-dtoa.h -------------------------------------------------------------------------------- /jni/v8/src/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/bignum.cc -------------------------------------------------------------------------------- /jni/v8/src/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/bignum.h -------------------------------------------------------------------------------- /jni/v8/src/bootstrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/bootstrapper.h -------------------------------------------------------------------------------- /jni/v8/src/builtins.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/builtins.cc -------------------------------------------------------------------------------- /jni/v8/src/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/builtins.h -------------------------------------------------------------------------------- /jni/v8/src/checks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/checks.cc -------------------------------------------------------------------------------- /jni/v8/src/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/checks.h -------------------------------------------------------------------------------- /jni/v8/src/code-stubs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/code-stubs.cc -------------------------------------------------------------------------------- /jni/v8/src/code-stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/code-stubs.h -------------------------------------------------------------------------------- /jni/v8/src/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/code.h -------------------------------------------------------------------------------- /jni/v8/src/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/codegen.cc -------------------------------------------------------------------------------- /jni/v8/src/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/codegen.h -------------------------------------------------------------------------------- /jni/v8/src/compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/compiler.cc -------------------------------------------------------------------------------- /jni/v8/src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/compiler.h -------------------------------------------------------------------------------- /jni/v8/src/contexts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/contexts.cc -------------------------------------------------------------------------------- /jni/v8/src/contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/contexts.h -------------------------------------------------------------------------------- /jni/v8/src/conversions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/conversions.cc -------------------------------------------------------------------------------- /jni/v8/src/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/conversions.h -------------------------------------------------------------------------------- /jni/v8/src/counters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/counters.cc -------------------------------------------------------------------------------- /jni/v8/src/counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/counters.h -------------------------------------------------------------------------------- /jni/v8/src/cpu-profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/cpu-profiler.h -------------------------------------------------------------------------------- /jni/v8/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/cpu.h -------------------------------------------------------------------------------- /jni/v8/src/d8-debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8-debug.cc -------------------------------------------------------------------------------- /jni/v8/src/d8-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8-debug.h -------------------------------------------------------------------------------- /jni/v8/src/d8-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8-posix.cc -------------------------------------------------------------------------------- /jni/v8/src/d8-readline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8-readline.cc -------------------------------------------------------------------------------- /jni/v8/src/d8-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8-windows.cc -------------------------------------------------------------------------------- /jni/v8/src/d8.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.Makefile -------------------------------------------------------------------------------- /jni/v8/src/d8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.cc -------------------------------------------------------------------------------- /jni/v8/src/d8.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.gyp -------------------------------------------------------------------------------- /jni/v8/src/d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.h -------------------------------------------------------------------------------- /jni/v8/src/d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.js -------------------------------------------------------------------------------- /jni/v8/src/d8.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/d8.target.mk -------------------------------------------------------------------------------- /jni/v8/src/data-flow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/data-flow.cc -------------------------------------------------------------------------------- /jni/v8/src/data-flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/data-flow.h -------------------------------------------------------------------------------- /jni/v8/src/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/date.js -------------------------------------------------------------------------------- /jni/v8/src/dateparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/dateparser.cc -------------------------------------------------------------------------------- /jni/v8/src/dateparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/dateparser.h -------------------------------------------------------------------------------- /jni/v8/src/debug-agent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/debug-agent.cc -------------------------------------------------------------------------------- /jni/v8/src/debug-agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/debug-agent.h -------------------------------------------------------------------------------- /jni/v8/src/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/debug.cc -------------------------------------------------------------------------------- /jni/v8/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/debug.h -------------------------------------------------------------------------------- /jni/v8/src/deoptimizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/deoptimizer.cc -------------------------------------------------------------------------------- /jni/v8/src/deoptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/deoptimizer.h -------------------------------------------------------------------------------- /jni/v8/src/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/disasm.h -------------------------------------------------------------------------------- /jni/v8/src/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/disassembler.h -------------------------------------------------------------------------------- /jni/v8/src/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/diy-fp.cc -------------------------------------------------------------------------------- /jni/v8/src/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/diy-fp.h -------------------------------------------------------------------------------- /jni/v8/src/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/double.h -------------------------------------------------------------------------------- /jni/v8/src/dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/dtoa.cc -------------------------------------------------------------------------------- /jni/v8/src/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/dtoa.h -------------------------------------------------------------------------------- /jni/v8/src/elements.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/elements.cc -------------------------------------------------------------------------------- /jni/v8/src/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/elements.h -------------------------------------------------------------------------------- /jni/v8/src/execution.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/execution.cc -------------------------------------------------------------------------------- /jni/v8/src/execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/execution.h -------------------------------------------------------------------------------- /jni/v8/src/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/factory.cc -------------------------------------------------------------------------------- /jni/v8/src/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/factory.h -------------------------------------------------------------------------------- /jni/v8/src/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/fast-dtoa.cc -------------------------------------------------------------------------------- /jni/v8/src/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/fast-dtoa.h -------------------------------------------------------------------------------- /jni/v8/src/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/fixed-dtoa.cc -------------------------------------------------------------------------------- /jni/v8/src/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/fixed-dtoa.h -------------------------------------------------------------------------------- /jni/v8/src/flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/flags.cc -------------------------------------------------------------------------------- /jni/v8/src/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/flags.h -------------------------------------------------------------------------------- /jni/v8/src/frames-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/frames-inl.h -------------------------------------------------------------------------------- /jni/v8/src/frames.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/frames.cc -------------------------------------------------------------------------------- /jni/v8/src/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/frames.h -------------------------------------------------------------------------------- /jni/v8/src/full-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/full-codegen.h -------------------------------------------------------------------------------- /jni/v8/src/gdb-jit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/gdb-jit.cc -------------------------------------------------------------------------------- /jni/v8/src/gdb-jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/gdb-jit.h -------------------------------------------------------------------------------- /jni/v8/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/globals.h -------------------------------------------------------------------------------- /jni/v8/src/handles-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/handles-inl.h -------------------------------------------------------------------------------- /jni/v8/src/handles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/handles.cc -------------------------------------------------------------------------------- /jni/v8/src/handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/handles.h -------------------------------------------------------------------------------- /jni/v8/src/hashmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/hashmap.cc -------------------------------------------------------------------------------- /jni/v8/src/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/hashmap.h -------------------------------------------------------------------------------- /jni/v8/src/heap-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/heap-inl.h -------------------------------------------------------------------------------- /jni/v8/src/heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/heap.cc -------------------------------------------------------------------------------- /jni/v8/src/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/heap.h -------------------------------------------------------------------------------- /jni/v8/src/hydrogen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/hydrogen.cc -------------------------------------------------------------------------------- /jni/v8/src/hydrogen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/hydrogen.h -------------------------------------------------------------------------------- /jni/v8/src/ic-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ic-inl.h -------------------------------------------------------------------------------- /jni/v8/src/ic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ic.cc -------------------------------------------------------------------------------- /jni/v8/src/ic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/ic.h -------------------------------------------------------------------------------- /jni/v8/src/inspector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/inspector.cc -------------------------------------------------------------------------------- /jni/v8/src/inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/inspector.h -------------------------------------------------------------------------------- /jni/v8/src/isolate-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/isolate-inl.h -------------------------------------------------------------------------------- /jni/v8/src/isolate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/isolate.cc -------------------------------------------------------------------------------- /jni/v8/src/isolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/isolate.h -------------------------------------------------------------------------------- /jni/v8/src/json-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/json-parser.h -------------------------------------------------------------------------------- /jni/v8/src/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/json.js -------------------------------------------------------------------------------- /jni/v8/src/jsregexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/jsregexp.cc -------------------------------------------------------------------------------- /jni/v8/src/jsregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/jsregexp.h -------------------------------------------------------------------------------- /jni/v8/src/list-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/list-inl.h -------------------------------------------------------------------------------- /jni/v8/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/list.h -------------------------------------------------------------------------------- /jni/v8/src/lithium.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/lithium.cc -------------------------------------------------------------------------------- /jni/v8/src/lithium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/lithium.h -------------------------------------------------------------------------------- /jni/v8/src/liveedit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/liveedit.cc -------------------------------------------------------------------------------- /jni/v8/src/liveedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/liveedit.h -------------------------------------------------------------------------------- /jni/v8/src/log-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/log-inl.h -------------------------------------------------------------------------------- /jni/v8/src/log-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/log-utils.cc -------------------------------------------------------------------------------- /jni/v8/src/log-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/log-utils.h -------------------------------------------------------------------------------- /jni/v8/src/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/log.cc -------------------------------------------------------------------------------- /jni/v8/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/log.h -------------------------------------------------------------------------------- /jni/v8/src/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/macros.py -------------------------------------------------------------------------------- /jni/v8/src/mark-compact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/mark-compact.h -------------------------------------------------------------------------------- /jni/v8/src/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/math.js -------------------------------------------------------------------------------- /jni/v8/src/messages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/messages.cc -------------------------------------------------------------------------------- /jni/v8/src/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/messages.h -------------------------------------------------------------------------------- /jni/v8/src/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/messages.js -------------------------------------------------------------------------------- /jni/v8/src/mksnapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/mksnapshot.cc -------------------------------------------------------------------------------- /jni/v8/src/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/natives.h -------------------------------------------------------------------------------- /jni/v8/src/objects-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/objects-inl.h -------------------------------------------------------------------------------- /jni/v8/src/objects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/objects.cc -------------------------------------------------------------------------------- /jni/v8/src/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/objects.h -------------------------------------------------------------------------------- /jni/v8/src/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/parser.cc -------------------------------------------------------------------------------- /jni/v8/src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/parser.h -------------------------------------------------------------------------------- /jni/v8/src/platform-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/platform-tls.h -------------------------------------------------------------------------------- /jni/v8/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/platform.h -------------------------------------------------------------------------------- /jni/v8/src/preparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/preparser.cc -------------------------------------------------------------------------------- /jni/v8/src/preparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/preparser.h -------------------------------------------------------------------------------- /jni/v8/src/property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/property.cc -------------------------------------------------------------------------------- /jni/v8/src/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/property.h -------------------------------------------------------------------------------- /jni/v8/src/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/proxy.js -------------------------------------------------------------------------------- /jni/v8/src/regexp-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/regexp-stack.h -------------------------------------------------------------------------------- /jni/v8/src/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/regexp.js -------------------------------------------------------------------------------- /jni/v8/src/rewriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/rewriter.cc -------------------------------------------------------------------------------- /jni/v8/src/rewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/rewriter.h -------------------------------------------------------------------------------- /jni/v8/src/runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/runtime.cc -------------------------------------------------------------------------------- /jni/v8/src/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/runtime.h -------------------------------------------------------------------------------- /jni/v8/src/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/runtime.js -------------------------------------------------------------------------------- /jni/v8/src/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scanner.cc -------------------------------------------------------------------------------- /jni/v8/src/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scanner.h -------------------------------------------------------------------------------- /jni/v8/src/scopeinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scopeinfo.cc -------------------------------------------------------------------------------- /jni/v8/src/scopeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scopeinfo.h -------------------------------------------------------------------------------- /jni/v8/src/scopes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scopes.cc -------------------------------------------------------------------------------- /jni/v8/src/scopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/scopes.h -------------------------------------------------------------------------------- /jni/v8/src/serialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/serialize.cc -------------------------------------------------------------------------------- /jni/v8/src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/serialize.h -------------------------------------------------------------------------------- /jni/v8/src/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/simulator.h -------------------------------------------------------------------------------- /jni/v8/src/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/snapshot.h -------------------------------------------------------------------------------- /jni/v8/src/spaces-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/spaces-inl.h -------------------------------------------------------------------------------- /jni/v8/src/spaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/spaces.cc -------------------------------------------------------------------------------- /jni/v8/src/spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/spaces.h -------------------------------------------------------------------------------- /jni/v8/src/splay-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/splay-tree.h -------------------------------------------------------------------------------- /jni/v8/src/store-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/store-buffer.h -------------------------------------------------------------------------------- /jni/v8/src/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/string.js -------------------------------------------------------------------------------- /jni/v8/src/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/strtod.cc -------------------------------------------------------------------------------- /jni/v8/src/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/strtod.h -------------------------------------------------------------------------------- /jni/v8/src/stub-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/stub-cache.cc -------------------------------------------------------------------------------- /jni/v8/src/stub-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/stub-cache.h -------------------------------------------------------------------------------- /jni/v8/src/token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/token.cc -------------------------------------------------------------------------------- /jni/v8/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/token.h -------------------------------------------------------------------------------- /jni/v8/src/type-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/type-info.cc -------------------------------------------------------------------------------- /jni/v8/src/type-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/type-info.h -------------------------------------------------------------------------------- /jni/v8/src/unicode-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/unicode-inl.h -------------------------------------------------------------------------------- /jni/v8/src/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/unicode.cc -------------------------------------------------------------------------------- /jni/v8/src/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/unicode.h -------------------------------------------------------------------------------- /jni/v8/src/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/uri.js -------------------------------------------------------------------------------- /jni/v8/src/utils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/utils-inl.h -------------------------------------------------------------------------------- /jni/v8/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/utils.cc -------------------------------------------------------------------------------- /jni/v8/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/utils.h -------------------------------------------------------------------------------- /jni/v8/src/v8-counters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8-counters.cc -------------------------------------------------------------------------------- /jni/v8/src/v8-counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8-counters.h -------------------------------------------------------------------------------- /jni/v8/src/v8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8.cc -------------------------------------------------------------------------------- /jni/v8/src/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8.h -------------------------------------------------------------------------------- /jni/v8/src/v8checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8checks.h -------------------------------------------------------------------------------- /jni/v8/src/v8dll-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8dll-main.cc -------------------------------------------------------------------------------- /jni/v8/src/v8globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8globals.h -------------------------------------------------------------------------------- /jni/v8/src/v8memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8memory.h -------------------------------------------------------------------------------- /jni/v8/src/v8natives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8natives.js -------------------------------------------------------------------------------- /jni/v8/src/v8threads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8threads.cc -------------------------------------------------------------------------------- /jni/v8/src/v8threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8threads.h -------------------------------------------------------------------------------- /jni/v8/src/v8utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8utils.cc -------------------------------------------------------------------------------- /jni/v8/src/v8utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/v8utils.h -------------------------------------------------------------------------------- /jni/v8/src/variables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/variables.cc -------------------------------------------------------------------------------- /jni/v8/src/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/variables.h -------------------------------------------------------------------------------- /jni/v8/src/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/version.cc -------------------------------------------------------------------------------- /jni/v8/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/version.h -------------------------------------------------------------------------------- /jni/v8/src/vm-state-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/vm-state-inl.h -------------------------------------------------------------------------------- /jni/v8/src/vm-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/vm-state.h -------------------------------------------------------------------------------- /jni/v8/src/weakmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/weakmap.js -------------------------------------------------------------------------------- /jni/v8/src/win32-math.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/win32-math.cc -------------------------------------------------------------------------------- /jni/v8/src/win32-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/win32-math.h -------------------------------------------------------------------------------- /jni/v8/src/zone-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/zone-inl.h -------------------------------------------------------------------------------- /jni/v8/src/zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/zone.cc -------------------------------------------------------------------------------- /jni/v8/src/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/jni/v8/src/zone.h -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/local.properties -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/proguard.cfg -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-difool/nodejs-android/HEAD/res/values/strings.xml --------------------------------------------------------------------------------