├── .gitignore ├── Doxyfile ├── LICENSE ├── Makefile ├── Makefile.build ├── Makefile.clean ├── Makefile.common ├── Makefile.config ├── README.md ├── bitvisor.lds ├── boot ├── loader │ ├── Makefile │ ├── bootloader.s │ ├── bootloaderusb.s │ └── install.sh ├── login-simple │ ├── Makefile │ ├── StorageKey0 │ ├── asm.s │ ├── bitvisor.conf.tmpl │ ├── config.c │ ├── configparser.c │ ├── configparser.h │ ├── loaddata.c │ ├── main.c │ ├── makedata.c │ └── readdata.c ├── login │ ├── Makefile │ ├── conf │ │ ├── bitvisor.conf.tmpl │ │ ├── keymap │ │ ├── keymap-jp │ │ └── keymap-us │ ├── initrd │ │ ├── Makefile │ │ └── dev.tar.gz │ ├── linux │ │ ├── Makefile │ │ ├── config-2.6.24.2 │ │ ├── config-2.6.25.3 │ │ └── config-2.6.31.6 │ └── minios_init │ │ ├── Makefile │ │ ├── boot.c │ │ ├── boot.h │ │ ├── dl.c │ │ ├── idmaninc │ │ ├── common │ │ │ ├── list.h │ │ │ └── string.h │ │ ├── core │ │ │ ├── string.h │ │ │ └── types.h │ │ └── uhci.h │ │ ├── idmanread.c │ │ ├── keymapdump.c │ │ ├── keymapload.c │ │ ├── keymapload.h │ │ ├── minios_init.c │ │ ├── passinput.c │ │ ├── passinput.h │ │ ├── passscreen-1 │ │ ├── passscreen-2 │ │ ├── passscreen-3 │ │ ├── usbmem.c │ │ └── usbmem.h ├── uefi-loader-login │ ├── Makefile │ ├── README │ ├── loadvmm.c │ ├── pass_auth.c │ ├── pass_auth.h │ ├── randseed.c │ └── randseed.h └── uefi-loader │ ├── Makefile │ └── loadvmm.c ├── config.sh ├── core ├── Makefile ├── acpi.c ├── acpi.h ├── acpi_dsdt.c ├── acpi_dsdt.h ├── acpi_dsdt_term.h ├── ap.c ├── ap.h ├── arith.h ├── arith.s ├── asm.h ├── asm.s ├── assert.c ├── assert.h ├── beep.c ├── beep.h ├── cache.c ├── cache.h ├── callrealmode.c ├── callrealmode.h ├── callrealmode_asm.h ├── callrealmode_asm.s ├── calluefi.c ├── calluefi.h ├── calluefi_asm.h ├── calluefi_asm.s ├── comphappy.h ├── config.c ├── config.h ├── constants.h ├── convert.h ├── cpu.c ├── cpu.h ├── cpu_emul.c ├── cpu_emul.h ├── cpu_interpreter.c ├── cpu_interpreter.h ├── cpu_mmu.c ├── cpu_mmu.h ├── cpu_mmu_spt.c ├── cpu_mmu_spt.h ├── cpu_seg.c ├── cpu_seg.h ├── cpu_stack.c ├── cpu_stack.h ├── cpuid.c ├── cpuid.h ├── cpuid_pass.c ├── cpuid_pass.h ├── current.c ├── current.h ├── debug.c ├── debug.h ├── desc.h ├── disconnect.c ├── disconnect.h ├── elf.h ├── entry.h ├── entry.s ├── exint_pass.c ├── exint_pass.h ├── gmm.h ├── gmm_access.c ├── gmm_pass.c ├── gmm_pass.h ├── guest_bioshook.h ├── guest_bioshook.s ├── i386-stub.c ├── i386-stub.h ├── iccard.c ├── iccard.h ├── initfunc.c ├── initfunc.h ├── int.c ├── int.h ├── int_handler.h ├── int_handler.s ├── io_io.c ├── io_io.h ├── io_iohook.c ├── io_iohook.h ├── io_iopass.c ├── io_iopass.h ├── keyboard.c ├── keyboard.h ├── linkage.h ├── list.h ├── loadbootsector.c ├── loadbootsector.h ├── localapic.c ├── localapic.h ├── longmode.h ├── main.c ├── main.h ├── mm.c ├── mm.h ├── mmio.c ├── mmio.h ├── msg.c ├── msg.h ├── msr.c ├── msr.h ├── msr_pass.c ├── msr_pass.h ├── multiboot.h ├── nmi_pass.c ├── nmi_pass.h ├── osloader.c ├── osloader.h ├── panic.c ├── panic.h ├── pcpu.c ├── pcpu.h ├── printf.c ├── printf.h ├── process.c ├── process.h ├── process_builtin.h ├── process_sysenter.h ├── process_sysenter.s ├── putchar.c ├── putchar.h ├── random.c ├── reboot.c ├── reboot.h ├── regs.h ├── replace.sh ├── savemsr.c ├── savemsr.h ├── seg.c ├── seg.h ├── serial.c ├── serial.h ├── sleep.c ├── sleep.h ├── spinlock.h ├── stdarg.h ├── string.h ├── string.s ├── strtol.c ├── strtol.h ├── svm.c ├── svm.h ├── svm_exitcode.c ├── svm_exitcode.h ├── svm_init.c ├── svm_init.h ├── svm_io.c ├── svm_io.h ├── svm_main.c ├── svm_main.h ├── svm_msr.c ├── svm_msr.h ├── svm_np.c ├── svm_np.h ├── svm_paging.c ├── svm_paging.h ├── svm_panic.c ├── svm_panic.h ├── svm_regs.c ├── svm_regs.h ├── svm_vmcb.h ├── sx_handler.h ├── sx_handler.s ├── sx_init_pass.c ├── sx_init_pass.h ├── tcg.c ├── thread.c ├── thread.h ├── thread_switch.h ├── thread_switch.s ├── time.c ├── time.h ├── timer.c ├── timer.h ├── tty.c ├── tty.h ├── types.h ├── uefi.c ├── uefi.h ├── uefi_param_ext.c ├── uefi_param_ext.h ├── vcpu.c ├── vcpu.h ├── vga.c ├── vga.h ├── vmctl.h ├── vmmcall.c ├── vmmcall.h ├── vmmcall_boot.c ├── vmmcall_boot.h ├── vmmcall_dbgsh.c ├── vmmcall_iccard.c ├── vmmcall_log.c ├── vmmcall_status.c ├── vmmcall_status.h ├── vmmerr.h ├── vpn_ve.c ├── vpn_ve.h ├── vramwrite.c ├── vramwrite.h ├── vt.c ├── vt.h ├── vt_addip.h ├── vt_ept.c ├── vt_ept.h ├── vt_exitreason.c ├── vt_exitreason.h ├── vt_init.c ├── vt_init.h ├── vt_io.c ├── vt_io.h ├── vt_main.c ├── vt_main.h ├── vt_msr.c ├── vt_msr.h ├── vt_paging.c ├── vt_paging.h ├── vt_panic.c ├── vt_panic.h ├── vt_regs.c ├── vt_regs.h ├── vt_vmcs.h ├── wakeup.c ├── wakeup.h ├── wakeup_entry.h ├── wakeup_entry.s ├── xsetbv.c ├── xsetbv.h ├── xsetbv_pass.c └── xsetbv_pass.h ├── crypto ├── Makefile ├── assert.h ├── chelp.h ├── chelp │ ├── Makefile │ ├── chelp.c │ ├── chelp_mem.c │ ├── chelp_str.c │ └── decryptcfg.c ├── ctype.h ├── decryptcfg.h ├── errno.h ├── math.h ├── openssl-1.0.0l │ ├── 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.in │ │ ├── CA.sh │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── 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 │ │ ├── Makefile.save │ │ ├── aes │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── buf_err.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── camellia │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── seed.c │ │ │ ├── seed.h │ │ │ ├── seed_cbc.c │ │ │ ├── seed_cfb.c │ │ │ ├── seed_ecb.c │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.c │ │ ├── sha │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── wp-mmx.pl │ │ │ │ └── wp-x86_64.pl │ │ │ ├── whrlpool.h │ │ │ ├── wp_block.c │ │ │ ├── wp_dgst.c │ │ │ ├── wp_locl.h │ │ │ └── wp_test.c │ │ ├── x509 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ │ ├── Makefile.save │ │ │ ├── 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_verify_recover.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 │ │ ├── Makefile.save │ │ ├── alpha.opt │ │ ├── axp.opt │ │ ├── capierr.bat │ │ ├── ccgost │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── 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 │ │ └── 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 │ │ ├── Makefile.save │ │ ├── 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_cbc.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 │ │ ├── Makefile.save │ │ ├── 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.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 ├── signal.h ├── stdarg.h ├── stddef.h ├── stdio.h ├── string.h ├── strings.h ├── sys │ ├── ioctl.h │ └── types.h ├── termio.h ├── time.h └── unistd.h ├── debug ├── Makefile ├── gdbstub.c └── gdbstub.h ├── defconfig ├── defconfig.tmpl ├── drivers ├── Makefile ├── ata │ ├── Makefile │ ├── ahci.c │ ├── ahci.h │ ├── ata.h │ ├── ata_bm.c │ ├── ata_bm.h │ ├── ata_cmd.c │ ├── ata_cmd.h │ ├── ata_core.c │ ├── ata_debug.c │ ├── ata_debug.h │ ├── ata_error.h │ ├── ata_init.c │ ├── ata_init.h │ ├── ata_pci.c │ ├── ata_pci.h │ ├── ata_time.h │ ├── ata_vendor.c │ ├── atapi.c │ ├── atapi.h │ ├── packet.c │ └── packet.h ├── core.c ├── debug.h ├── dmar.c ├── error.h ├── ieee1394.c ├── ieee1394log.c ├── iommu.c ├── net │ ├── Makefile │ ├── bnx.c │ ├── pro100.c │ ├── pro100.h │ ├── pro1000.c │ ├── rtl8169.c │ ├── rtl8169.h │ ├── virtio_net.c │ └── virtio_net.h ├── pci.h ├── pci_conceal.c ├── pci_conceal.h ├── pci_core.c ├── pci_core.h ├── pci_debug.c ├── pci_init.c ├── pci_init.h ├── pci_internal.h ├── pci_match.c ├── pci_match.h ├── pci_match_compat.c ├── pci_monitor.c ├── security.c ├── security.h ├── usb │ ├── Makefile │ ├── ehci.c │ ├── ehci.h │ ├── ehci_debug.c │ ├── ehci_debug.h │ ├── ehci_shadow.c │ ├── ehci_trans.c │ ├── uhci.c │ ├── uhci.h │ ├── uhci_debug.c │ ├── uhci_shadow.c │ ├── uhci_trans.c │ ├── usb.c │ ├── usb.h │ ├── usb_ccid.c │ ├── usb_device.c │ ├── usb_device.h │ ├── usb_hid.c │ ├── usb_hook.c │ ├── usb_hook.h │ ├── usb_hub.c │ ├── usb_hub.h │ ├── usb_log.c │ ├── usb_log.h │ ├── usb_mscd.c │ ├── usb_mscd.h │ ├── xhci.c │ ├── xhci.h │ ├── xhci_shadow.c │ └── xhci_trans.c ├── vga_intel.c └── x540.c ├── edk ├── Foundation │ ├── Efi │ │ ├── Include │ │ │ ├── EfiApi.h │ │ │ ├── EfiError.h │ │ │ └── EfiTypes.h │ │ └── Protocol │ │ │ ├── DevicePath │ │ │ └── DevicePath.h │ │ │ ├── LoadedImage │ │ │ └── LoadedImage.h │ │ │ ├── PciIo │ │ │ └── PciIo.h │ │ │ ├── SimpleFileSystem │ │ │ └── SimpleFileSystem.h │ │ │ ├── SimpleTextIn │ │ │ └── SimpleTextIn.h │ │ │ └── SimpleTextOut │ │ │ └── SimpleTextOut.h │ ├── Framework │ │ └── Include │ │ │ └── EfiStatusCode.h │ └── Include │ │ ├── EfiBind.h │ │ ├── EfiCommon.h │ │ ├── EfiStdArg.h │ │ ├── Ia32 │ │ └── EfiBind.h │ │ └── x64 │ │ └── EfiBind.h └── License.txt ├── idman ├── Makefile ├── idman_msg.h ├── kernel.c └── lib │ ├── Makefile │ ├── ccid │ ├── IDMan_CcAtr.c │ ├── IDMan_CcAtr.h │ ├── IDMan_CcCcid.h │ ├── IDMan_CcIfdhandler.c │ ├── IDMan_CcInitCard.c │ ├── IDMan_CcProtocol.c │ ├── IDMan_CcProtocol.h │ ├── IDMan_CcReaderControl.c │ ├── IDMan_CcUsb.c │ ├── Makefile │ ├── Makefile.inc │ └── configure │ ├── iccard │ ├── IDMan_ICSCard.c │ ├── IDMan_ICSCard.h │ └── Makefile │ ├── idman_pkcs11 │ ├── IDMan_IPCommon.c │ ├── IDMan_IPCommon.h │ ├── IDMan_IPLibrary.h │ ├── IDMan_IPgenerateSignature.c │ ├── IDMan_IPgetCertificate.c │ ├── IDMan_IPgetStaticPassword.c │ ├── IDMan_IPuserAuthPKCS11.c │ ├── IDMan_IPverifySignature.c │ └── Makefile │ ├── pcsc │ ├── COPYING │ ├── IDMan_PcEventhandler.c │ ├── IDMan_PcEventhandler.h │ ├── IDMan_PcHotplug_libusb.c │ ├── IDMan_PcIfdhandler.h │ ├── IDMan_PcInfo_plist.h │ ├── IDMan_PcMisc.h │ ├── IDMan_PcPcsclite.h │ ├── IDMan_PcProthandler.c │ ├── IDMan_PcProthandler.h │ ├── IDMan_PcReader.h │ ├── IDMan_PcReaderfactory.c │ ├── IDMan_PcReaderfactory.h │ ├── IDMan_PcWinscard.c │ ├── IDMan_PcWinscard.h │ ├── IDMan_PcWintypes.h │ ├── Makefile │ ├── Makefile.inc │ ├── README │ └── configure │ ├── pkcs11 │ ├── IDMan_PKCardAccess.c │ ├── IDMan_PKCardAccess.h │ ├── IDMan_PKCardData.c │ ├── IDMan_PKCardData.h │ ├── IDMan_PKList.c │ ├── IDMan_PKList.h │ ├── IDMan_PKPkcs11.c │ ├── IDMan_PKPkcs11.h │ ├── IDMan_PKPkcs11f.h │ ├── IDMan_PKPkcs11i.h │ ├── IDMan_PKPkcs11t.h │ ├── Makefile │ └── pkcs11.h │ ├── standardio │ ├── IDMan_StandardIo.c │ ├── IDMan_StandardIo.h │ ├── Makefile │ └── stddef.h │ └── user.c ├── include ├── IDMan.h ├── common.h ├── common │ ├── arraylist.h │ ├── assert.h │ ├── config.h │ ├── list.h │ ├── string.h │ └── types.h ├── core.h ├── core │ ├── acpi.h │ ├── arith.h │ ├── assert.h │ ├── config.h │ ├── cpu.h │ ├── disconnect.h │ ├── exint_pass.h │ ├── gmm_access.h │ ├── iccard.h │ ├── initfunc.h │ ├── io.h │ ├── linkage.h │ ├── list.h │ ├── mm.h │ ├── mmio.h │ ├── panic.h │ ├── printf.h │ ├── process.h │ ├── spinlock.h │ ├── stdarg.h │ ├── string.h │ ├── strtol.h │ ├── thread.h │ ├── time.h │ ├── timer.h │ ├── tty.h │ ├── types.h │ ├── vga.h │ └── vt_regs.h ├── io.h ├── limits.h ├── net │ └── netapi.h ├── passthrough │ ├── dmar.h │ ├── intel-iommu.h │ ├── iodom.h │ └── vtd.h ├── share │ ├── config.h │ ├── loadcfg.h │ ├── uefi_boot.h │ └── vmm_types.h ├── stdint.h ├── stdlib.h ├── storage.h ├── storage_io.h ├── tcg.h └── token.h ├── install.sh ├── ip ├── Makefile ├── arch │ └── sys_arch.c ├── echo-client.c ├── echo-server.c ├── echo.h ├── echoctl.c ├── gdb_remote.c ├── include │ ├── arch │ │ ├── cc.h │ │ ├── perf.h │ │ └── sys_arch.h │ ├── lwip │ │ └── lwipopts.h │ ├── stddef.h │ ├── string.h │ └── tcpip.h ├── ip_main.c ├── ip_main.h ├── ip_sys.c ├── ip_sys.h ├── lwip-1.4.1 │ ├── CHANGELOG │ ├── COPYING │ ├── FILES │ ├── README │ ├── UPGRADING │ ├── doc │ │ ├── FILES │ │ ├── contrib.txt │ │ ├── rawapi.txt │ │ ├── savannah.txt │ │ ├── snmp_agent.txt │ │ └── sys_arch.txt │ ├── src │ │ ├── FILES │ │ ├── api │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ ├── core │ │ │ ├── def.c │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── init.c │ │ │ ├── ipv4 │ │ │ │ ├── autoip.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── inet.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── ip.c │ │ │ │ ├── ip_addr.c │ │ │ │ └── ip_frag.c │ │ │ ├── ipv6 │ │ │ │ ├── README │ │ │ │ ├── icmp6.c │ │ │ │ ├── inet6.c │ │ │ │ ├── ip6.c │ │ │ │ └── ip6_addr.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── snmp │ │ │ │ ├── asn1_dec.c │ │ │ │ ├── asn1_enc.c │ │ │ │ ├── mib2.c │ │ │ │ ├── mib_structs.c │ │ │ │ ├── msg_in.c │ │ │ │ └── msg_out.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timers.c │ │ │ └── udp.c │ │ ├── include │ │ │ ├── ipv4 │ │ │ │ └── lwip │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ └── ip_frag.h │ │ │ ├── ipv6 │ │ │ │ └── lwip │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── ip.h │ │ │ │ │ └── ip_addr.h │ │ │ ├── lwip │ │ │ │ ├── api.h │ │ │ │ ├── api_msg.h │ │ │ │ ├── arch.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── init.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── memp_std.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_structs.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcp_impl.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timers.h │ │ │ │ └── udp.h │ │ │ ├── netif │ │ │ │ ├── etharp.h │ │ │ │ ├── ppp_oe.h │ │ │ │ └── slipif.h │ │ │ └── posix │ │ │ │ ├── netdb.h │ │ │ │ └── sys │ │ │ │ └── socket.h │ │ └── netif │ │ │ ├── FILES │ │ │ ├── etharp.c │ │ │ ├── ethernetif.c │ │ │ ├── ppp │ │ │ ├── auth.c │ │ │ ├── auth.h │ │ │ ├── chap.c │ │ │ ├── chap.h │ │ │ ├── chpms.c │ │ │ ├── chpms.h │ │ │ ├── fsm.c │ │ │ ├── fsm.h │ │ │ ├── ipcp.c │ │ │ ├── ipcp.h │ │ │ ├── lcp.c │ │ │ ├── lcp.h │ │ │ ├── magic.c │ │ │ ├── magic.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── pap.c │ │ │ ├── pap.h │ │ │ ├── ppp.c │ │ │ ├── ppp.h │ │ │ ├── ppp_impl.h │ │ │ ├── ppp_oe.c │ │ │ ├── pppdebug.h │ │ │ ├── randm.c │ │ │ ├── randm.h │ │ │ ├── vj.c │ │ │ └── vj.h │ │ │ └── slipif.c │ └── test │ │ └── unit │ │ ├── core │ │ ├── test_mem.c │ │ └── test_mem.h │ │ ├── etharp │ │ ├── test_etharp.c │ │ └── test_etharp.h │ │ ├── lwip_check.h │ │ ├── lwip_unittests.c │ │ ├── lwipopts.h │ │ ├── tcp │ │ ├── tcp_helper.c │ │ ├── tcp_helper.h │ │ ├── test_tcp.c │ │ ├── test_tcp.h │ │ ├── test_tcp_oos.c │ │ └── test_tcp_oos.h │ │ └── udp │ │ ├── test_udp.c │ │ └── test_udp.h ├── net_main.c └── net_main.h ├── net ├── Makefile └── netapi.c ├── process ├── Makefile ├── debug.c ├── echoctl.c ├── help.c ├── idman.c ├── init.c ├── lib │ ├── Makefile │ ├── lib_arith.s │ ├── lib_assert.c │ ├── lib_assert.h │ ├── lib_ctype.c │ ├── lib_ctype.h │ ├── lib_lineinput.c │ ├── lib_lineinput.h │ ├── lib_mm.c │ ├── lib_mm.h │ ├── lib_printf.c │ ├── lib_printf.h │ ├── lib_putchar.c │ ├── lib_putchar.h │ ├── lib_spinlock.h │ ├── lib_stdlib.c │ ├── lib_stdlib.h │ ├── lib_storage_io.c │ ├── lib_storage_io.h │ ├── lib_string.h │ ├── lib_string.s │ ├── lib_syscalls.c │ ├── lib_syscalls.h │ └── longmode.h ├── log.c ├── monitor.c ├── panic.c ├── recvexample.c ├── sendexample.c ├── sendint.c ├── serialtest.c ├── shell.c ├── storage.c └── vpn.c ├── storage ├── Makefile ├── kernel.c ├── lib │ ├── Makefile │ ├── crypto │ │ ├── Makefile │ │ ├── aes-gladman │ │ │ ├── Makefile │ │ │ ├── byteswap.h │ │ │ └── endian.h │ │ ├── aes_xts.c │ │ ├── crypto.c │ │ ├── crypto.h │ │ └── none.c │ ├── storage.c │ └── storage_msg.h ├── storage_io.c └── storage_io_msg.h ├── tools ├── common │ ├── call_vmm.c │ └── call_vmm.h ├── dbgsh-uefi │ ├── Makefile │ └── dbgsh-uefi.c ├── dbgsh │ ├── Makefile │ └── dbgsh.c ├── iccard │ ├── Makefile │ └── iccard.c ├── ieee1394log │ ├── Makefile │ └── ieee1394log.c ├── log │ ├── Makefile │ └── logget-linux.c ├── vmmstatus-gtk │ ├── AUTHORS │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure.in │ ├── mkinstalldirs │ ├── po │ │ ├── ChangeLog │ │ └── POTFILES.in │ ├── src │ │ ├── Makefile.am │ │ ├── call_vmm.c │ │ ├── call_vmm.h │ │ ├── callbacks.c │ │ ├── callbacks.h │ │ ├── interface.c │ │ ├── interface.h │ │ ├── main.c │ │ ├── support.c │ │ └── support.h │ ├── stamp-h.in │ ├── vmmstatus-gtk.glade │ └── vmmstatus-gtk.gladep └── vmmstatus-win32 │ ├── Makefile │ ├── main.c │ ├── resource.h │ ├── resource.rc │ └── vmmstatus.exe.manifest └── vpn ├── Makefile ├── kernel.c ├── lib ├── Makefile ├── Se │ ├── Makefile │ ├── Se.h │ ├── SeConfig.c │ ├── SeConfig.h │ ├── SeCrypto.c │ ├── SeCrypto.h │ ├── SeIke.c │ ├── SeIke.h │ ├── SeInterface.c │ ├── SeInterface.h │ ├── SeIp4.c │ ├── SeIp4.h │ ├── SeIp6.c │ ├── SeIp6.h │ ├── SeKernel.c │ ├── SeKernel.h │ ├── SeMemory.c │ ├── SeMemory.h │ ├── SePacket.c │ ├── SePacket.h │ ├── SeSec.c │ ├── SeSec.h │ ├── SeStr.c │ ├── SeStr.h │ ├── SeTypes.h │ ├── SeVpn.c │ ├── SeVpn.h │ ├── SeVpn4.c │ ├── SeVpn4.h │ ├── SeVpn6.c │ └── SeVpn6.h ├── crypt.c ├── crypt.h └── user.c └── vpn_msg.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Makefile.build -------------------------------------------------------------------------------- /Makefile.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Makefile.clean -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Makefile.common -------------------------------------------------------------------------------- /Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/Makefile.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/README.md -------------------------------------------------------------------------------- /bitvisor.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/bitvisor.lds -------------------------------------------------------------------------------- /boot/loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/loader/Makefile -------------------------------------------------------------------------------- /boot/loader/bootloader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/loader/bootloader.s -------------------------------------------------------------------------------- /boot/loader/bootloaderusb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/loader/bootloaderusb.s -------------------------------------------------------------------------------- /boot/loader/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/loader/install.sh -------------------------------------------------------------------------------- /boot/login-simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/Makefile -------------------------------------------------------------------------------- /boot/login-simple/StorageKey0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/StorageKey0 -------------------------------------------------------------------------------- /boot/login-simple/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/asm.s -------------------------------------------------------------------------------- /boot/login-simple/bitvisor.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/bitvisor.conf.tmpl -------------------------------------------------------------------------------- /boot/login-simple/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/config.c -------------------------------------------------------------------------------- /boot/login-simple/configparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/configparser.c -------------------------------------------------------------------------------- /boot/login-simple/configparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/configparser.h -------------------------------------------------------------------------------- /boot/login-simple/loaddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/loaddata.c -------------------------------------------------------------------------------- /boot/login-simple/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/main.c -------------------------------------------------------------------------------- /boot/login-simple/makedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/makedata.c -------------------------------------------------------------------------------- /boot/login-simple/readdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login-simple/readdata.c -------------------------------------------------------------------------------- /boot/login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/Makefile -------------------------------------------------------------------------------- /boot/login/conf/bitvisor.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/conf/bitvisor.conf.tmpl -------------------------------------------------------------------------------- /boot/login/conf/keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/conf/keymap -------------------------------------------------------------------------------- /boot/login/conf/keymap-jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/conf/keymap-jp -------------------------------------------------------------------------------- /boot/login/conf/keymap-us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/conf/keymap-us -------------------------------------------------------------------------------- /boot/login/initrd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/initrd/Makefile -------------------------------------------------------------------------------- /boot/login/initrd/dev.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/initrd/dev.tar.gz -------------------------------------------------------------------------------- /boot/login/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/linux/Makefile -------------------------------------------------------------------------------- /boot/login/linux/config-2.6.24.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/linux/config-2.6.24.2 -------------------------------------------------------------------------------- /boot/login/linux/config-2.6.25.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/linux/config-2.6.25.3 -------------------------------------------------------------------------------- /boot/login/linux/config-2.6.31.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/linux/config-2.6.31.6 -------------------------------------------------------------------------------- /boot/login/minios_init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/Makefile -------------------------------------------------------------------------------- /boot/login/minios_init/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/boot.c -------------------------------------------------------------------------------- /boot/login/minios_init/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/boot.h -------------------------------------------------------------------------------- /boot/login/minios_init/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/dl.c -------------------------------------------------------------------------------- /boot/login/minios_init/idmaninc/common/list.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/login/minios_init/idmaninc/common/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /boot/login/minios_init/idmaninc/core/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /boot/login/minios_init/idmaninc/core/types.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/login/minios_init/idmaninc/uhci.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/login/minios_init/idmanread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/idmanread.c -------------------------------------------------------------------------------- /boot/login/minios_init/keymapdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/keymapdump.c -------------------------------------------------------------------------------- /boot/login/minios_init/keymapload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/keymapload.c -------------------------------------------------------------------------------- /boot/login/minios_init/keymapload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/keymapload.h -------------------------------------------------------------------------------- /boot/login/minios_init/minios_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/minios_init.c -------------------------------------------------------------------------------- /boot/login/minios_init/passinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/passinput.c -------------------------------------------------------------------------------- /boot/login/minios_init/passinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/passinput.h -------------------------------------------------------------------------------- /boot/login/minios_init/passscreen-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/passscreen-1 -------------------------------------------------------------------------------- /boot/login/minios_init/passscreen-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/passscreen-2 -------------------------------------------------------------------------------- /boot/login/minios_init/passscreen-3: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /boot/login/minios_init/usbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/usbmem.c -------------------------------------------------------------------------------- /boot/login/minios_init/usbmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/login/minios_init/usbmem.h -------------------------------------------------------------------------------- /boot/uefi-loader-login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/Makefile -------------------------------------------------------------------------------- /boot/uefi-loader-login/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/README -------------------------------------------------------------------------------- /boot/uefi-loader-login/loadvmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/loadvmm.c -------------------------------------------------------------------------------- /boot/uefi-loader-login/pass_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/pass_auth.c -------------------------------------------------------------------------------- /boot/uefi-loader-login/pass_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/pass_auth.h -------------------------------------------------------------------------------- /boot/uefi-loader-login/randseed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/randseed.c -------------------------------------------------------------------------------- /boot/uefi-loader-login/randseed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader-login/randseed.h -------------------------------------------------------------------------------- /boot/uefi-loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader/Makefile -------------------------------------------------------------------------------- /boot/uefi-loader/loadvmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/boot/uefi-loader/loadvmm.c -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/config.sh -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/acpi.c -------------------------------------------------------------------------------- /core/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/acpi.h -------------------------------------------------------------------------------- /core/acpi_dsdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/acpi_dsdt.c -------------------------------------------------------------------------------- /core/acpi_dsdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/acpi_dsdt.h -------------------------------------------------------------------------------- /core/acpi_dsdt_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/acpi_dsdt_term.h -------------------------------------------------------------------------------- /core/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/ap.c -------------------------------------------------------------------------------- /core/ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/ap.h -------------------------------------------------------------------------------- /core/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/arith.h -------------------------------------------------------------------------------- /core/arith.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/arith.s -------------------------------------------------------------------------------- /core/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/asm.h -------------------------------------------------------------------------------- /core/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/asm.s -------------------------------------------------------------------------------- /core/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/assert.c -------------------------------------------------------------------------------- /core/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/assert.h -------------------------------------------------------------------------------- /core/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/beep.c -------------------------------------------------------------------------------- /core/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/beep.h -------------------------------------------------------------------------------- /core/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cache.c -------------------------------------------------------------------------------- /core/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cache.h -------------------------------------------------------------------------------- /core/callrealmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/callrealmode.c -------------------------------------------------------------------------------- /core/callrealmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/callrealmode.h -------------------------------------------------------------------------------- /core/callrealmode_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/callrealmode_asm.h -------------------------------------------------------------------------------- /core/callrealmode_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/callrealmode_asm.s -------------------------------------------------------------------------------- /core/calluefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/calluefi.c -------------------------------------------------------------------------------- /core/calluefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/calluefi.h -------------------------------------------------------------------------------- /core/calluefi_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/calluefi_asm.h -------------------------------------------------------------------------------- /core/calluefi_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/calluefi_asm.s -------------------------------------------------------------------------------- /core/comphappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/comphappy.h -------------------------------------------------------------------------------- /core/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/config.c -------------------------------------------------------------------------------- /core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/config.h -------------------------------------------------------------------------------- /core/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/constants.h -------------------------------------------------------------------------------- /core/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/convert.h -------------------------------------------------------------------------------- /core/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu.c -------------------------------------------------------------------------------- /core/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu.h -------------------------------------------------------------------------------- /core/cpu_emul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_emul.c -------------------------------------------------------------------------------- /core/cpu_emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_emul.h -------------------------------------------------------------------------------- /core/cpu_interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_interpreter.c -------------------------------------------------------------------------------- /core/cpu_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_interpreter.h -------------------------------------------------------------------------------- /core/cpu_mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_mmu.c -------------------------------------------------------------------------------- /core/cpu_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_mmu.h -------------------------------------------------------------------------------- /core/cpu_mmu_spt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_mmu_spt.c -------------------------------------------------------------------------------- /core/cpu_mmu_spt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_mmu_spt.h -------------------------------------------------------------------------------- /core/cpu_seg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_seg.c -------------------------------------------------------------------------------- /core/cpu_seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_seg.h -------------------------------------------------------------------------------- /core/cpu_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_stack.c -------------------------------------------------------------------------------- /core/cpu_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpu_stack.h -------------------------------------------------------------------------------- /core/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpuid.c -------------------------------------------------------------------------------- /core/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpuid.h -------------------------------------------------------------------------------- /core/cpuid_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpuid_pass.c -------------------------------------------------------------------------------- /core/cpuid_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/cpuid_pass.h -------------------------------------------------------------------------------- /core/current.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/current.c -------------------------------------------------------------------------------- /core/current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/current.h -------------------------------------------------------------------------------- /core/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/debug.c -------------------------------------------------------------------------------- /core/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/debug.h -------------------------------------------------------------------------------- /core/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/desc.h -------------------------------------------------------------------------------- /core/disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/disconnect.c -------------------------------------------------------------------------------- /core/disconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/disconnect.h -------------------------------------------------------------------------------- /core/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/elf.h -------------------------------------------------------------------------------- /core/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/entry.h -------------------------------------------------------------------------------- /core/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/entry.s -------------------------------------------------------------------------------- /core/exint_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/exint_pass.c -------------------------------------------------------------------------------- /core/exint_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/exint_pass.h -------------------------------------------------------------------------------- /core/gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/gmm.h -------------------------------------------------------------------------------- /core/gmm_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/gmm_access.c -------------------------------------------------------------------------------- /core/gmm_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/gmm_pass.c -------------------------------------------------------------------------------- /core/gmm_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/gmm_pass.h -------------------------------------------------------------------------------- /core/guest_bioshook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/guest_bioshook.h -------------------------------------------------------------------------------- /core/guest_bioshook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/guest_bioshook.s -------------------------------------------------------------------------------- /core/i386-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/i386-stub.c -------------------------------------------------------------------------------- /core/i386-stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/i386-stub.h -------------------------------------------------------------------------------- /core/iccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/iccard.c -------------------------------------------------------------------------------- /core/iccard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/iccard.h -------------------------------------------------------------------------------- /core/initfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/initfunc.c -------------------------------------------------------------------------------- /core/initfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/initfunc.h -------------------------------------------------------------------------------- /core/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/int.c -------------------------------------------------------------------------------- /core/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/int.h -------------------------------------------------------------------------------- /core/int_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/int_handler.h -------------------------------------------------------------------------------- /core/int_handler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/int_handler.s -------------------------------------------------------------------------------- /core/io_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_io.c -------------------------------------------------------------------------------- /core/io_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_io.h -------------------------------------------------------------------------------- /core/io_iohook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_iohook.c -------------------------------------------------------------------------------- /core/io_iohook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_iohook.h -------------------------------------------------------------------------------- /core/io_iopass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_iopass.c -------------------------------------------------------------------------------- /core/io_iopass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/io_iopass.h -------------------------------------------------------------------------------- /core/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/keyboard.c -------------------------------------------------------------------------------- /core/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/keyboard.h -------------------------------------------------------------------------------- /core/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/linkage.h -------------------------------------------------------------------------------- /core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/list.h -------------------------------------------------------------------------------- /core/loadbootsector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/loadbootsector.c -------------------------------------------------------------------------------- /core/loadbootsector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/loadbootsector.h -------------------------------------------------------------------------------- /core/localapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/localapic.c -------------------------------------------------------------------------------- /core/localapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/localapic.h -------------------------------------------------------------------------------- /core/longmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/longmode.h -------------------------------------------------------------------------------- /core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/main.c -------------------------------------------------------------------------------- /core/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/main.h -------------------------------------------------------------------------------- /core/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/mm.c -------------------------------------------------------------------------------- /core/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/mm.h -------------------------------------------------------------------------------- /core/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/mmio.c -------------------------------------------------------------------------------- /core/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/mmio.h -------------------------------------------------------------------------------- /core/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msg.c -------------------------------------------------------------------------------- /core/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msg.h -------------------------------------------------------------------------------- /core/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msr.c -------------------------------------------------------------------------------- /core/msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msr.h -------------------------------------------------------------------------------- /core/msr_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msr_pass.c -------------------------------------------------------------------------------- /core/msr_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/msr_pass.h -------------------------------------------------------------------------------- /core/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/multiboot.h -------------------------------------------------------------------------------- /core/nmi_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/nmi_pass.c -------------------------------------------------------------------------------- /core/nmi_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/nmi_pass.h -------------------------------------------------------------------------------- /core/osloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/osloader.c -------------------------------------------------------------------------------- /core/osloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/osloader.h -------------------------------------------------------------------------------- /core/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/panic.c -------------------------------------------------------------------------------- /core/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/panic.h -------------------------------------------------------------------------------- /core/pcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/pcpu.c -------------------------------------------------------------------------------- /core/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/pcpu.h -------------------------------------------------------------------------------- /core/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/printf.c -------------------------------------------------------------------------------- /core/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/printf.h -------------------------------------------------------------------------------- /core/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/process.c -------------------------------------------------------------------------------- /core/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/process.h -------------------------------------------------------------------------------- /core/process_builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/process_builtin.h -------------------------------------------------------------------------------- /core/process_sysenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/process_sysenter.h -------------------------------------------------------------------------------- /core/process_sysenter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/process_sysenter.s -------------------------------------------------------------------------------- /core/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/putchar.c -------------------------------------------------------------------------------- /core/putchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/putchar.h -------------------------------------------------------------------------------- /core/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/random.c -------------------------------------------------------------------------------- /core/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/reboot.c -------------------------------------------------------------------------------- /core/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/reboot.h -------------------------------------------------------------------------------- /core/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/regs.h -------------------------------------------------------------------------------- /core/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/replace.sh -------------------------------------------------------------------------------- /core/savemsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/savemsr.c -------------------------------------------------------------------------------- /core/savemsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/savemsr.h -------------------------------------------------------------------------------- /core/seg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/seg.c -------------------------------------------------------------------------------- /core/seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/seg.h -------------------------------------------------------------------------------- /core/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/serial.c -------------------------------------------------------------------------------- /core/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/serial.h -------------------------------------------------------------------------------- /core/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sleep.c -------------------------------------------------------------------------------- /core/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sleep.h -------------------------------------------------------------------------------- /core/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/spinlock.h -------------------------------------------------------------------------------- /core/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/stdarg.h -------------------------------------------------------------------------------- /core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/string.h -------------------------------------------------------------------------------- /core/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/string.s -------------------------------------------------------------------------------- /core/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/strtol.c -------------------------------------------------------------------------------- /core/strtol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/strtol.h -------------------------------------------------------------------------------- /core/svm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm.c -------------------------------------------------------------------------------- /core/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm.h -------------------------------------------------------------------------------- /core/svm_exitcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_exitcode.c -------------------------------------------------------------------------------- /core/svm_exitcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_exitcode.h -------------------------------------------------------------------------------- /core/svm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_init.c -------------------------------------------------------------------------------- /core/svm_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_init.h -------------------------------------------------------------------------------- /core/svm_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_io.c -------------------------------------------------------------------------------- /core/svm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_io.h -------------------------------------------------------------------------------- /core/svm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_main.c -------------------------------------------------------------------------------- /core/svm_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_main.h -------------------------------------------------------------------------------- /core/svm_msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_msr.c -------------------------------------------------------------------------------- /core/svm_msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_msr.h -------------------------------------------------------------------------------- /core/svm_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_np.c -------------------------------------------------------------------------------- /core/svm_np.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_np.h -------------------------------------------------------------------------------- /core/svm_paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_paging.c -------------------------------------------------------------------------------- /core/svm_paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_paging.h -------------------------------------------------------------------------------- /core/svm_panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_panic.c -------------------------------------------------------------------------------- /core/svm_panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_panic.h -------------------------------------------------------------------------------- /core/svm_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_regs.c -------------------------------------------------------------------------------- /core/svm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_regs.h -------------------------------------------------------------------------------- /core/svm_vmcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/svm_vmcb.h -------------------------------------------------------------------------------- /core/sx_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sx_handler.h -------------------------------------------------------------------------------- /core/sx_handler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sx_handler.s -------------------------------------------------------------------------------- /core/sx_init_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sx_init_pass.c -------------------------------------------------------------------------------- /core/sx_init_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/sx_init_pass.h -------------------------------------------------------------------------------- /core/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/tcg.c -------------------------------------------------------------------------------- /core/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/thread.c -------------------------------------------------------------------------------- /core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/thread.h -------------------------------------------------------------------------------- /core/thread_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/thread_switch.h -------------------------------------------------------------------------------- /core/thread_switch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/thread_switch.s -------------------------------------------------------------------------------- /core/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/time.c -------------------------------------------------------------------------------- /core/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/time.h -------------------------------------------------------------------------------- /core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/timer.c -------------------------------------------------------------------------------- /core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/timer.h -------------------------------------------------------------------------------- /core/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/tty.c -------------------------------------------------------------------------------- /core/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/tty.h -------------------------------------------------------------------------------- /core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/types.h -------------------------------------------------------------------------------- /core/uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/uefi.c -------------------------------------------------------------------------------- /core/uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/uefi.h -------------------------------------------------------------------------------- /core/uefi_param_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/uefi_param_ext.c -------------------------------------------------------------------------------- /core/uefi_param_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/uefi_param_ext.h -------------------------------------------------------------------------------- /core/vcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vcpu.c -------------------------------------------------------------------------------- /core/vcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vcpu.h -------------------------------------------------------------------------------- /core/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vga.c -------------------------------------------------------------------------------- /core/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vga.h -------------------------------------------------------------------------------- /core/vmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmctl.h -------------------------------------------------------------------------------- /core/vmmcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall.c -------------------------------------------------------------------------------- /core/vmmcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall.h -------------------------------------------------------------------------------- /core/vmmcall_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_boot.c -------------------------------------------------------------------------------- /core/vmmcall_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_boot.h -------------------------------------------------------------------------------- /core/vmmcall_dbgsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_dbgsh.c -------------------------------------------------------------------------------- /core/vmmcall_iccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_iccard.c -------------------------------------------------------------------------------- /core/vmmcall_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_log.c -------------------------------------------------------------------------------- /core/vmmcall_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_status.c -------------------------------------------------------------------------------- /core/vmmcall_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmcall_status.h -------------------------------------------------------------------------------- /core/vmmerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vmmerr.h -------------------------------------------------------------------------------- /core/vpn_ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vpn_ve.c -------------------------------------------------------------------------------- /core/vpn_ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vpn_ve.h -------------------------------------------------------------------------------- /core/vramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vramwrite.c -------------------------------------------------------------------------------- /core/vramwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vramwrite.h -------------------------------------------------------------------------------- /core/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt.c -------------------------------------------------------------------------------- /core/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt.h -------------------------------------------------------------------------------- /core/vt_addip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_addip.h -------------------------------------------------------------------------------- /core/vt_ept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_ept.c -------------------------------------------------------------------------------- /core/vt_ept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_ept.h -------------------------------------------------------------------------------- /core/vt_exitreason.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_exitreason.c -------------------------------------------------------------------------------- /core/vt_exitreason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_exitreason.h -------------------------------------------------------------------------------- /core/vt_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_init.c -------------------------------------------------------------------------------- /core/vt_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_init.h -------------------------------------------------------------------------------- /core/vt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_io.c -------------------------------------------------------------------------------- /core/vt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_io.h -------------------------------------------------------------------------------- /core/vt_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_main.c -------------------------------------------------------------------------------- /core/vt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_main.h -------------------------------------------------------------------------------- /core/vt_msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_msr.c -------------------------------------------------------------------------------- /core/vt_msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_msr.h -------------------------------------------------------------------------------- /core/vt_paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_paging.c -------------------------------------------------------------------------------- /core/vt_paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_paging.h -------------------------------------------------------------------------------- /core/vt_panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_panic.c -------------------------------------------------------------------------------- /core/vt_panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_panic.h -------------------------------------------------------------------------------- /core/vt_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_regs.c -------------------------------------------------------------------------------- /core/vt_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_regs.h -------------------------------------------------------------------------------- /core/vt_vmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/vt_vmcs.h -------------------------------------------------------------------------------- /core/wakeup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/wakeup.c -------------------------------------------------------------------------------- /core/wakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/wakeup.h -------------------------------------------------------------------------------- /core/wakeup_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/wakeup_entry.h -------------------------------------------------------------------------------- /core/wakeup_entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/wakeup_entry.s -------------------------------------------------------------------------------- /core/xsetbv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/xsetbv.c -------------------------------------------------------------------------------- /core/xsetbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/xsetbv.h -------------------------------------------------------------------------------- /core/xsetbv_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/xsetbv_pass.c -------------------------------------------------------------------------------- /core/xsetbv_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/core/xsetbv_pass.h -------------------------------------------------------------------------------- /crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/Makefile -------------------------------------------------------------------------------- /crypto/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/assert.h -------------------------------------------------------------------------------- /crypto/chelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp.h -------------------------------------------------------------------------------- /crypto/chelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp/Makefile -------------------------------------------------------------------------------- /crypto/chelp/chelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp/chelp.c -------------------------------------------------------------------------------- /crypto/chelp/chelp_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp/chelp_mem.c -------------------------------------------------------------------------------- /crypto/chelp/chelp_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp/chelp_str.c -------------------------------------------------------------------------------- /crypto/chelp/decryptcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/chelp/decryptcfg.c -------------------------------------------------------------------------------- /crypto/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/ctype.h -------------------------------------------------------------------------------- /crypto/decryptcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/decryptcfg.h -------------------------------------------------------------------------------- /crypto/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/errno.h -------------------------------------------------------------------------------- /crypto/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/math.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/CHANGES -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/CHANGES.SSLeay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/CHANGES.SSLeay -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/Configure -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/FAQ -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.DJGPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.DJGPP -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.MacOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.MacOS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.NW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.NW -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.OS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.OS2 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.VMS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.W32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.W32 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.W64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.W64 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/INSTALL.WCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/INSTALL.WCE -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/LICENSE -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/MacOS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/MacOS/TODO -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/Makefile -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/Makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/Makefile.bak -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/Makefile.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/Makefile.org -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/NEWS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/PROBLEMS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/README -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/README.ASN1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/README.ASN1 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/README.ENGINE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/README.ENGINE -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/VMS/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/VMS/TODO -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/CA.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/CA.com -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/CA.pl -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/CA.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/CA.pl.in -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/CA.sh -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/Makefile -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/apps.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/apps.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ca.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/cert.pem -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ciphers.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/cms.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/crl.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/crl2p7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/crl2p7.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dgst.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dh.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dh512.pem -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dhparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dhparam.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dsa.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/dsap.pem -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ec.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ecparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ecparam.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/enc.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/engine.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/errstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/errstr.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/gendh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/gendh.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/gendsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/gendsa.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/md4.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/nseq.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ocsp.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/pkey.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/rand.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/req.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/rsa.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/s_cb.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/ts.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/tsget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/tsget -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/apps/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/apps/x509.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/bugs/MS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/bugs/MS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/bugs/SSLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/bugs/SSLv3 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/config -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/demos/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/demos/b64.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/demos/cms/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for CMS encryption 4 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/demos/smime/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for PKCS#7 encryption 4 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/doc/README -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/e_os.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/e_os2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/aes.h: -------------------------------------------------------------------------------- 1 | ../../crypto/aes/aes.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1_mac.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1t.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/bio.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bio/bio.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bf/blowfish.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/bn.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bn/bn.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | ../../crypto/buffer/buffer.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | ../../crypto/camellia/camellia.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/cast.h: -------------------------------------------------------------------------------- 1 | ../../crypto/cast/cast.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/cms.h: -------------------------------------------------------------------------------- 1 | ../../crypto/cms/cms.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/comp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/comp/comp.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/conf.h: -------------------------------------------------------------------------------- 1 | ../../crypto/conf/conf.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | ../../crypto/conf/conf_api.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | ../../crypto/crypto.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/des.h: -------------------------------------------------------------------------------- 1 | ../../crypto/des/des.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | ../../crypto/des/des_old.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/dh.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dh/dh.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dsa/dsa.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/dso.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dso/dso.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | ../../ssl/dtls1.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | ../../e_os2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ebcdic.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ec.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ec/ec.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ecdh/ecdh.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ecdsa/ecdsa.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/engine.h: -------------------------------------------------------------------------------- 1 | ../../crypto/engine/engine.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/err.h: -------------------------------------------------------------------------------- 1 | ../../crypto/err/err.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/evp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/evp/evp.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/hmac/hmac.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/idea.h: -------------------------------------------------------------------------------- 1 | ../../crypto/idea/idea.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | ../../crypto/krb5/krb5_asn.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | ../../ssl/kssl.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | ../../crypto/lhash/lhash.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/md4.h: -------------------------------------------------------------------------------- 1 | ../../crypto/md4/md4.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/md5.h: -------------------------------------------------------------------------------- 1 | ../../crypto/md5/md5.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/mdc2/mdc2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/modes.h: -------------------------------------------------------------------------------- 1 | ../../crypto/modes/modes.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/objects/obj_mac.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/objects.h: -------------------------------------------------------------------------------- 1 | ../../crypto/objects/objects.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ocsp/ocsp.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | ../../crypto/opensslconf.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | ../../crypto/opensslv.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ossl_typ.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/pem.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pem/pem.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pem/pem2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pkcs12/pkcs12.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pkcs7/pkcs7.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pqueue/pqueue.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/rand.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rand/rand.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rc2/rc2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rc4/rc4.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ripemd/ripemd.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rsa/rsa.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | ../../crypto/stack/safestack.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/seed.h: -------------------------------------------------------------------------------- 1 | ../../crypto/seed/seed.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/sha.h: -------------------------------------------------------------------------------- 1 | ../../crypto/sha/sha.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl23.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl3.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/stack.h: -------------------------------------------------------------------------------- 1 | ../../crypto/stack/stack.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | ../../crypto/symhacks.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | ../../ssl/tls1.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ts.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ts/ts.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | ../../crypto/txt_db/txt_db.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ui.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ui/ui.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ui/ui_compat.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | ../../crypto/whrlpool/whrlpool.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/x509.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509/x509.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509/x509_vfy.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/include/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509v3/x509v3.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/install.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/install.com -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/makevms.com -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/.rnd -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/README -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/bcb4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/bcb4.bat -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/certU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/certU.ss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/cmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/cmp.pl -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/keyCA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/keyCA.ss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/keyU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/keyU.ss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/mw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/mw.bat -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/reqCA.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/reqCA.ss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/reqU.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/reqU.ss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/tenc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/tenc.bat -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/test.bat -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/tpem.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/tpem.bat -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/uplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/uplink.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ms/uplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ms/uplink.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/shlib/README: -------------------------------------------------------------------------------- 1 | Only the windows NT and, linux builds have been tested for SSLeay 0.8.0 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/dtls1.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/kssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/kssl.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/kssl.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/ssl.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/ssl2.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/ssl23.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/ssl3.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/ssl/tls1.h -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/bctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/bctest -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/bftest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bf/bftest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/bntest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bn/bntest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/casttest.c: -------------------------------------------------------------------------------- 1 | ../crypto/cast/casttest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/destest.c: -------------------------------------------------------------------------------- 1 | ../crypto/des/destest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/dhtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/dh/dhtest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/dsatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/dsa/dsatest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/ecdhtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ecdh/ecdhtest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/ecdsatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ecdsa/ecdsatest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/ectest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ec/ectest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/enginetest.c: -------------------------------------------------------------------------------- 1 | ../crypto/engine/enginetest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/evp_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/evp/evp_test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/exptest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bn/exptest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/hmactest.c: -------------------------------------------------------------------------------- 1 | ../crypto/hmac/hmactest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/ideatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/idea/ideatest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/jpaketest.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/md2test.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/md4test.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/md5test.c: -------------------------------------------------------------------------------- 1 | ../crypto/md5/md5test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/mdc2test.c: -------------------------------------------------------------------------------- 1 | ../crypto/mdc2/mdc2test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/randtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/rand/randtest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/rc2test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rc2/rc2test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/rc4test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rc4/rc4test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/rc5test.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/rmdtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ripemd/rmdtest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/rsa_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rsa/rsa_test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/sha1test.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha1test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/sha256t.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha256t.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/sha512t.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha512t.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/shatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/shatest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/ssltest.c: -------------------------------------------------------------------------------- 1 | ../ssl/ssltest.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/tcrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/tcrl -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/testca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/testca -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/testss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/testss -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/times -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/tpkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/tpkcs7 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/treq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/treq -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/trsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/trsa -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/tsid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/tsid -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/tx509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/test/tx509 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/test/wp_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/whrlpool/wp_test.c -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/times/5.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/times/5.lnx -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/times/L1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/times/L1 -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/times/aix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/times/aix.t -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/times/sgi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/times/sgi.t -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/util/bat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/util/bat.sh -------------------------------------------------------------------------------- /crypto/openssl-1.0.0l/util/domd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/openssl-1.0.0l/util/domd -------------------------------------------------------------------------------- /crypto/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/signal.h -------------------------------------------------------------------------------- /crypto/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/stdarg.h -------------------------------------------------------------------------------- /crypto/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/stddef.h -------------------------------------------------------------------------------- /crypto/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/stdio.h -------------------------------------------------------------------------------- /crypto/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/string.h -------------------------------------------------------------------------------- /crypto/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/strings.h -------------------------------------------------------------------------------- /crypto/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/sys/ioctl.h -------------------------------------------------------------------------------- /crypto/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/sys/types.h -------------------------------------------------------------------------------- /crypto/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/termio.h -------------------------------------------------------------------------------- /crypto/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/time.h -------------------------------------------------------------------------------- /crypto/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/crypto/unistd.h -------------------------------------------------------------------------------- /debug/Makefile: -------------------------------------------------------------------------------- 1 | # config macros 2 | objs-1 += gdbstub.o 3 | -------------------------------------------------------------------------------- /debug/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/debug/gdbstub.c -------------------------------------------------------------------------------- /debug/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/debug/gdbstub.h -------------------------------------------------------------------------------- /defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/defconfig -------------------------------------------------------------------------------- /defconfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/defconfig.tmpl -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/ata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/Makefile -------------------------------------------------------------------------------- /drivers/ata/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ahci.c -------------------------------------------------------------------------------- /drivers/ata/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ahci.h -------------------------------------------------------------------------------- /drivers/ata/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata.h -------------------------------------------------------------------------------- /drivers/ata/ata_bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_bm.c -------------------------------------------------------------------------------- /drivers/ata/ata_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_bm.h -------------------------------------------------------------------------------- /drivers/ata/ata_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_cmd.c -------------------------------------------------------------------------------- /drivers/ata/ata_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_cmd.h -------------------------------------------------------------------------------- /drivers/ata/ata_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_core.c -------------------------------------------------------------------------------- /drivers/ata/ata_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_debug.c -------------------------------------------------------------------------------- /drivers/ata/ata_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_debug.h -------------------------------------------------------------------------------- /drivers/ata/ata_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_error.h -------------------------------------------------------------------------------- /drivers/ata/ata_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_init.c -------------------------------------------------------------------------------- /drivers/ata/ata_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_init.h -------------------------------------------------------------------------------- /drivers/ata/ata_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_pci.c -------------------------------------------------------------------------------- /drivers/ata/ata_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_pci.h -------------------------------------------------------------------------------- /drivers/ata/ata_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_time.h -------------------------------------------------------------------------------- /drivers/ata/ata_vendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/ata_vendor.c -------------------------------------------------------------------------------- /drivers/ata/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/atapi.c -------------------------------------------------------------------------------- /drivers/ata/atapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/atapi.h -------------------------------------------------------------------------------- /drivers/ata/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/packet.c -------------------------------------------------------------------------------- /drivers/ata/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ata/packet.h -------------------------------------------------------------------------------- /drivers/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/core.c -------------------------------------------------------------------------------- /drivers/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/debug.h -------------------------------------------------------------------------------- /drivers/dmar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/dmar.c -------------------------------------------------------------------------------- /drivers/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/error.h -------------------------------------------------------------------------------- /drivers/ieee1394.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ieee1394.c -------------------------------------------------------------------------------- /drivers/ieee1394log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/ieee1394log.c -------------------------------------------------------------------------------- /drivers/iommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/iommu.c -------------------------------------------------------------------------------- /drivers/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/Makefile -------------------------------------------------------------------------------- /drivers/net/bnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/bnx.c -------------------------------------------------------------------------------- /drivers/net/pro100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/pro100.c -------------------------------------------------------------------------------- /drivers/net/pro100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/pro100.h -------------------------------------------------------------------------------- /drivers/net/pro1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/pro1000.c -------------------------------------------------------------------------------- /drivers/net/rtl8169.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/rtl8169.c -------------------------------------------------------------------------------- /drivers/net/rtl8169.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/rtl8169.h -------------------------------------------------------------------------------- /drivers/net/virtio_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/virtio_net.c -------------------------------------------------------------------------------- /drivers/net/virtio_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/net/virtio_net.h -------------------------------------------------------------------------------- /drivers/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci.h -------------------------------------------------------------------------------- /drivers/pci_conceal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_conceal.c -------------------------------------------------------------------------------- /drivers/pci_conceal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_conceal.h -------------------------------------------------------------------------------- /drivers/pci_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_core.c -------------------------------------------------------------------------------- /drivers/pci_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_core.h -------------------------------------------------------------------------------- /drivers/pci_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_debug.c -------------------------------------------------------------------------------- /drivers/pci_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_init.c -------------------------------------------------------------------------------- /drivers/pci_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_init.h -------------------------------------------------------------------------------- /drivers/pci_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_internal.h -------------------------------------------------------------------------------- /drivers/pci_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_match.c -------------------------------------------------------------------------------- /drivers/pci_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_match.h -------------------------------------------------------------------------------- /drivers/pci_match_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_match_compat.c -------------------------------------------------------------------------------- /drivers/pci_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/pci_monitor.c -------------------------------------------------------------------------------- /drivers/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/security.c -------------------------------------------------------------------------------- /drivers/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/security.h -------------------------------------------------------------------------------- /drivers/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/Makefile -------------------------------------------------------------------------------- /drivers/usb/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci.c -------------------------------------------------------------------------------- /drivers/usb/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci.h -------------------------------------------------------------------------------- /drivers/usb/ehci_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci_debug.c -------------------------------------------------------------------------------- /drivers/usb/ehci_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci_debug.h -------------------------------------------------------------------------------- /drivers/usb/ehci_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci_shadow.c -------------------------------------------------------------------------------- /drivers/usb/ehci_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/ehci_trans.c -------------------------------------------------------------------------------- /drivers/usb/uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/uhci.c -------------------------------------------------------------------------------- /drivers/usb/uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/uhci.h -------------------------------------------------------------------------------- /drivers/usb/uhci_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/uhci_debug.c -------------------------------------------------------------------------------- /drivers/usb/uhci_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/uhci_shadow.c -------------------------------------------------------------------------------- /drivers/usb/uhci_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/uhci_trans.c -------------------------------------------------------------------------------- /drivers/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb.c -------------------------------------------------------------------------------- /drivers/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb.h -------------------------------------------------------------------------------- /drivers/usb/usb_ccid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_ccid.c -------------------------------------------------------------------------------- /drivers/usb/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_device.c -------------------------------------------------------------------------------- /drivers/usb/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_device.h -------------------------------------------------------------------------------- /drivers/usb/usb_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_hid.c -------------------------------------------------------------------------------- /drivers/usb/usb_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_hook.c -------------------------------------------------------------------------------- /drivers/usb/usb_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_hook.h -------------------------------------------------------------------------------- /drivers/usb/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_hub.c -------------------------------------------------------------------------------- /drivers/usb/usb_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_hub.h -------------------------------------------------------------------------------- /drivers/usb/usb_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_log.c -------------------------------------------------------------------------------- /drivers/usb/usb_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_log.h -------------------------------------------------------------------------------- /drivers/usb/usb_mscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_mscd.c -------------------------------------------------------------------------------- /drivers/usb/usb_mscd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/usb_mscd.h -------------------------------------------------------------------------------- /drivers/usb/xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/xhci.c -------------------------------------------------------------------------------- /drivers/usb/xhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/xhci.h -------------------------------------------------------------------------------- /drivers/usb/xhci_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/xhci_shadow.c -------------------------------------------------------------------------------- /drivers/usb/xhci_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/usb/xhci_trans.c -------------------------------------------------------------------------------- /drivers/vga_intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/vga_intel.c -------------------------------------------------------------------------------- /drivers/x540.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/drivers/x540.c -------------------------------------------------------------------------------- /edk/Foundation/Include/EfiBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/edk/Foundation/Include/EfiBind.h -------------------------------------------------------------------------------- /edk/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/edk/License.txt -------------------------------------------------------------------------------- /idman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/Makefile -------------------------------------------------------------------------------- /idman/idman_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/idman_msg.h -------------------------------------------------------------------------------- /idman/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/kernel.c -------------------------------------------------------------------------------- /idman/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/Makefile -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcAtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcAtr.c -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcAtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcAtr.h -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcCcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcCcid.h -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcInitCard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcInitCard.c -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcProtocol.c -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcProtocol.h -------------------------------------------------------------------------------- /idman/lib/ccid/IDMan_CcUsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/IDMan_CcUsb.c -------------------------------------------------------------------------------- /idman/lib/ccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/Makefile -------------------------------------------------------------------------------- /idman/lib/ccid/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/Makefile.inc -------------------------------------------------------------------------------- /idman/lib/ccid/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/ccid/configure -------------------------------------------------------------------------------- /idman/lib/iccard/IDMan_ICSCard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/iccard/IDMan_ICSCard.c -------------------------------------------------------------------------------- /idman/lib/iccard/IDMan_ICSCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/iccard/IDMan_ICSCard.h -------------------------------------------------------------------------------- /idman/lib/iccard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/iccard/Makefile -------------------------------------------------------------------------------- /idman/lib/idman_pkcs11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/idman_pkcs11/Makefile -------------------------------------------------------------------------------- /idman/lib/pcsc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/COPYING -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcMisc.h -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcPcsclite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcPcsclite.h -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcReader.h -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcWinscard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcWinscard.c -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcWinscard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcWinscard.h -------------------------------------------------------------------------------- /idman/lib/pcsc/IDMan_PcWintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/IDMan_PcWintypes.h -------------------------------------------------------------------------------- /idman/lib/pcsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/Makefile -------------------------------------------------------------------------------- /idman/lib/pcsc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/Makefile.inc -------------------------------------------------------------------------------- /idman/lib/pcsc/README: -------------------------------------------------------------------------------- 1 | Title : PCSC Lite 2 | License : See file COPYING 3 | -------------------------------------------------------------------------------- /idman/lib/pcsc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pcsc/configure -------------------------------------------------------------------------------- /idman/lib/pkcs11/IDMan_PKList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/IDMan_PKList.c -------------------------------------------------------------------------------- /idman/lib/pkcs11/IDMan_PKList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/IDMan_PKList.h -------------------------------------------------------------------------------- /idman/lib/pkcs11/IDMan_PKPkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/IDMan_PKPkcs11.c -------------------------------------------------------------------------------- /idman/lib/pkcs11/IDMan_PKPkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/IDMan_PKPkcs11.h -------------------------------------------------------------------------------- /idman/lib/pkcs11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/Makefile -------------------------------------------------------------------------------- /idman/lib/pkcs11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/pkcs11/pkcs11.h -------------------------------------------------------------------------------- /idman/lib/standardio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/standardio/Makefile -------------------------------------------------------------------------------- /idman/lib/standardio/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/standardio/stddef.h -------------------------------------------------------------------------------- /idman/lib/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/idman/lib/user.c -------------------------------------------------------------------------------- /include/IDMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/IDMan.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common.h -------------------------------------------------------------------------------- /include/common/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/arraylist.h -------------------------------------------------------------------------------- /include/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/assert.h -------------------------------------------------------------------------------- /include/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/config.h -------------------------------------------------------------------------------- /include/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/list.h -------------------------------------------------------------------------------- /include/common/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/string.h -------------------------------------------------------------------------------- /include/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/common/types.h -------------------------------------------------------------------------------- /include/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core.h -------------------------------------------------------------------------------- /include/core/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/acpi.h -------------------------------------------------------------------------------- /include/core/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/arith.h -------------------------------------------------------------------------------- /include/core/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/assert.h -------------------------------------------------------------------------------- /include/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/config.h -------------------------------------------------------------------------------- /include/core/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/cpu.h -------------------------------------------------------------------------------- /include/core/disconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/disconnect.h -------------------------------------------------------------------------------- /include/core/exint_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/exint_pass.h -------------------------------------------------------------------------------- /include/core/gmm_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/gmm_access.h -------------------------------------------------------------------------------- /include/core/iccard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/iccard.h -------------------------------------------------------------------------------- /include/core/initfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/initfunc.h -------------------------------------------------------------------------------- /include/core/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/io.h -------------------------------------------------------------------------------- /include/core/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/linkage.h -------------------------------------------------------------------------------- /include/core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/list.h -------------------------------------------------------------------------------- /include/core/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/mm.h -------------------------------------------------------------------------------- /include/core/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/mmio.h -------------------------------------------------------------------------------- /include/core/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/panic.h -------------------------------------------------------------------------------- /include/core/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/printf.h -------------------------------------------------------------------------------- /include/core/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/process.h -------------------------------------------------------------------------------- /include/core/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/spinlock.h -------------------------------------------------------------------------------- /include/core/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/stdarg.h -------------------------------------------------------------------------------- /include/core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/string.h -------------------------------------------------------------------------------- /include/core/strtol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/strtol.h -------------------------------------------------------------------------------- /include/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/thread.h -------------------------------------------------------------------------------- /include/core/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/time.h -------------------------------------------------------------------------------- /include/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/timer.h -------------------------------------------------------------------------------- /include/core/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/tty.h -------------------------------------------------------------------------------- /include/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/types.h -------------------------------------------------------------------------------- /include/core/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/vga.h -------------------------------------------------------------------------------- /include/core/vt_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/core/vt_regs.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/io.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/net/netapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/net/netapi.h -------------------------------------------------------------------------------- /include/passthrough/dmar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/passthrough/dmar.h -------------------------------------------------------------------------------- /include/passthrough/intel-iommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/passthrough/intel-iommu.h -------------------------------------------------------------------------------- /include/passthrough/iodom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/passthrough/iodom.h -------------------------------------------------------------------------------- /include/passthrough/vtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/passthrough/vtd.h -------------------------------------------------------------------------------- /include/share/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/share/config.h -------------------------------------------------------------------------------- /include/share/loadcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/share/loadcfg.h -------------------------------------------------------------------------------- /include/share/uefi_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/share/uefi_boot.h -------------------------------------------------------------------------------- /include/share/vmm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/share/vmm_types.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/storage.h -------------------------------------------------------------------------------- /include/storage_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/storage_io.h -------------------------------------------------------------------------------- /include/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/tcg.h -------------------------------------------------------------------------------- /include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/include/token.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/install.sh -------------------------------------------------------------------------------- /ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/Makefile -------------------------------------------------------------------------------- /ip/arch/sys_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/arch/sys_arch.c -------------------------------------------------------------------------------- /ip/echo-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/echo-client.c -------------------------------------------------------------------------------- /ip/echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/echo-server.c -------------------------------------------------------------------------------- /ip/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/echo.h -------------------------------------------------------------------------------- /ip/echoctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/echoctl.c -------------------------------------------------------------------------------- /ip/gdb_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/gdb_remote.c -------------------------------------------------------------------------------- /ip/include/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/include/arch/cc.h -------------------------------------------------------------------------------- /ip/include/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/include/arch/perf.h -------------------------------------------------------------------------------- /ip/include/arch/sys_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/include/lwip/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/include/lwip/lwipopts.h -------------------------------------------------------------------------------- /ip/include/stddef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/include/string.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/include/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/include/tcpip.h -------------------------------------------------------------------------------- /ip/ip_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/ip_main.c -------------------------------------------------------------------------------- /ip/ip_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/ip_main.h -------------------------------------------------------------------------------- /ip/ip_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/ip_sys.c -------------------------------------------------------------------------------- /ip/ip_sys.h: -------------------------------------------------------------------------------- 1 | unsigned int ip_sys_now (void); 2 | -------------------------------------------------------------------------------- /ip/lwip-1.4.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/CHANGELOG -------------------------------------------------------------------------------- /ip/lwip-1.4.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/COPYING -------------------------------------------------------------------------------- /ip/lwip-1.4.1/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/FILES -------------------------------------------------------------------------------- /ip/lwip-1.4.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/README -------------------------------------------------------------------------------- /ip/lwip-1.4.1/UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/UPGRADING -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/FILES -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/contrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/contrib.txt -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/rawapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/rawapi.txt -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/savannah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/savannah.txt -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/snmp_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/snmp_agent.txt -------------------------------------------------------------------------------- /ip/lwip-1.4.1/doc/sys_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/doc/sys_arch.txt -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/FILES -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/api_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/api_lib.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/api_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/api_msg.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/err.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/netbuf.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/netdb.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/netifapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/netifapi.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/sockets.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/api/tcpip.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/def.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/dhcp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/dns.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/init.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/ipv4/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/ipv4/ip.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/ipv6/ip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/ipv6/ip6.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/mem.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/memp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/netif.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/pbuf.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/raw.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/stats.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/sys.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/tcp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/tcp_in.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/tcp_out.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/timers.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/core/udp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/FILES -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/etharp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/etharp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/fsm.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/fsm.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/lcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/lcp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/lcp.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/md5.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/md5.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/pap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/pap.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/pap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/pap.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/ppp.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/ppp.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/vj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/vj.c -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/ppp/vj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/ppp/vj.h -------------------------------------------------------------------------------- /ip/lwip-1.4.1/src/netif/slipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/lwip-1.4.1/src/netif/slipif.c -------------------------------------------------------------------------------- /ip/net_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/net_main.c -------------------------------------------------------------------------------- /ip/net_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/ip/net_main.h -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- 1 | objs-1 += netapi.o 2 | -------------------------------------------------------------------------------- /net/netapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/net/netapi.c -------------------------------------------------------------------------------- /process/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/Makefile -------------------------------------------------------------------------------- /process/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/debug.c -------------------------------------------------------------------------------- /process/echoctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/echoctl.c -------------------------------------------------------------------------------- /process/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/help.c -------------------------------------------------------------------------------- /process/idman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/idman.c -------------------------------------------------------------------------------- /process/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/init.c -------------------------------------------------------------------------------- /process/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/Makefile -------------------------------------------------------------------------------- /process/lib/lib_arith.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_arith.s -------------------------------------------------------------------------------- /process/lib/lib_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_assert.c -------------------------------------------------------------------------------- /process/lib/lib_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_assert.h -------------------------------------------------------------------------------- /process/lib/lib_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_ctype.c -------------------------------------------------------------------------------- /process/lib/lib_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_ctype.h -------------------------------------------------------------------------------- /process/lib/lib_lineinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_lineinput.c -------------------------------------------------------------------------------- /process/lib/lib_lineinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_lineinput.h -------------------------------------------------------------------------------- /process/lib/lib_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_mm.c -------------------------------------------------------------------------------- /process/lib/lib_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_mm.h -------------------------------------------------------------------------------- /process/lib/lib_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_printf.c -------------------------------------------------------------------------------- /process/lib/lib_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_printf.h -------------------------------------------------------------------------------- /process/lib/lib_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_putchar.c -------------------------------------------------------------------------------- /process/lib/lib_putchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_putchar.h -------------------------------------------------------------------------------- /process/lib/lib_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_spinlock.h -------------------------------------------------------------------------------- /process/lib/lib_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_stdlib.c -------------------------------------------------------------------------------- /process/lib/lib_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_stdlib.h -------------------------------------------------------------------------------- /process/lib/lib_storage_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_storage_io.c -------------------------------------------------------------------------------- /process/lib/lib_storage_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_storage_io.h -------------------------------------------------------------------------------- /process/lib/lib_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_string.h -------------------------------------------------------------------------------- /process/lib/lib_string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_string.s -------------------------------------------------------------------------------- /process/lib/lib_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_syscalls.c -------------------------------------------------------------------------------- /process/lib/lib_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/lib_syscalls.h -------------------------------------------------------------------------------- /process/lib/longmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/lib/longmode.h -------------------------------------------------------------------------------- /process/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/log.c -------------------------------------------------------------------------------- /process/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/monitor.c -------------------------------------------------------------------------------- /process/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/panic.c -------------------------------------------------------------------------------- /process/recvexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/recvexample.c -------------------------------------------------------------------------------- /process/sendexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/sendexample.c -------------------------------------------------------------------------------- /process/sendint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/sendint.c -------------------------------------------------------------------------------- /process/serialtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/serialtest.c -------------------------------------------------------------------------------- /process/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/shell.c -------------------------------------------------------------------------------- /process/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/storage.c -------------------------------------------------------------------------------- /process/vpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/process/vpn.c -------------------------------------------------------------------------------- /storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/Makefile -------------------------------------------------------------------------------- /storage/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/kernel.c -------------------------------------------------------------------------------- /storage/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/Makefile -------------------------------------------------------------------------------- /storage/lib/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/crypto/Makefile -------------------------------------------------------------------------------- /storage/lib/crypto/aes-gladman/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/lib/crypto/aes_xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/crypto/aes_xts.c -------------------------------------------------------------------------------- /storage/lib/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/crypto/crypto.c -------------------------------------------------------------------------------- /storage/lib/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/crypto/crypto.h -------------------------------------------------------------------------------- /storage/lib/crypto/none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/crypto/none.c -------------------------------------------------------------------------------- /storage/lib/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/storage.c -------------------------------------------------------------------------------- /storage/lib/storage_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/lib/storage_msg.h -------------------------------------------------------------------------------- /storage/storage_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/storage_io.c -------------------------------------------------------------------------------- /storage/storage_io_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/storage/storage_io_msg.h -------------------------------------------------------------------------------- /tools/common/call_vmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/common/call_vmm.c -------------------------------------------------------------------------------- /tools/common/call_vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/common/call_vmm.h -------------------------------------------------------------------------------- /tools/dbgsh-uefi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/dbgsh-uefi/Makefile -------------------------------------------------------------------------------- /tools/dbgsh-uefi/dbgsh-uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/dbgsh-uefi/dbgsh-uefi.c -------------------------------------------------------------------------------- /tools/dbgsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/dbgsh/Makefile -------------------------------------------------------------------------------- /tools/dbgsh/dbgsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/dbgsh/dbgsh.c -------------------------------------------------------------------------------- /tools/iccard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/iccard/Makefile -------------------------------------------------------------------------------- /tools/iccard/iccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/iccard/iccard.c -------------------------------------------------------------------------------- /tools/ieee1394log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/ieee1394log/Makefile -------------------------------------------------------------------------------- /tools/ieee1394log/ieee1394log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/ieee1394log/ieee1394log.c -------------------------------------------------------------------------------- /tools/log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/log/Makefile -------------------------------------------------------------------------------- /tools/log/logget-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/log/logget-linux.c -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/Makefile.am -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/autogen.sh -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/configure.in -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/mkinstalldirs -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/src/call_vmm.c: -------------------------------------------------------------------------------- 1 | ../../common/call_vmm.c -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/src/call_vmm.h: -------------------------------------------------------------------------------- 1 | ../../common/call_vmm.h -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/src/main.c -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/src/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/src/support.c -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/src/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-gtk/src/support.h -------------------------------------------------------------------------------- /tools/vmmstatus-gtk/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tools/vmmstatus-win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-win32/Makefile -------------------------------------------------------------------------------- /tools/vmmstatus-win32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-win32/main.c -------------------------------------------------------------------------------- /tools/vmmstatus-win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-win32/resource.h -------------------------------------------------------------------------------- /tools/vmmstatus-win32/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/tools/vmmstatus-win32/resource.rc -------------------------------------------------------------------------------- /vpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/Makefile -------------------------------------------------------------------------------- /vpn/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/kernel.c -------------------------------------------------------------------------------- /vpn/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Makefile -------------------------------------------------------------------------------- /vpn/lib/Se/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/Makefile -------------------------------------------------------------------------------- /vpn/lib/Se/Se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/Se.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeConfig.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeConfig.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeCrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeCrypto.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeCrypto.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeIke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIke.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeIke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIke.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeInterface.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeInterface.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeIp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIp4.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeIp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIp4.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeIp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIp6.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeIp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeIp6.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeKernel.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeKernel.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeMemory.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeMemory.h -------------------------------------------------------------------------------- /vpn/lib/Se/SePacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SePacket.c -------------------------------------------------------------------------------- /vpn/lib/Se/SePacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SePacket.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeSec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeSec.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeSec.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeStr.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeStr.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeTypes.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn4.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn4.h -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn6.c -------------------------------------------------------------------------------- /vpn/lib/Se/SeVpn6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/Se/SeVpn6.h -------------------------------------------------------------------------------- /vpn/lib/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/crypt.c -------------------------------------------------------------------------------- /vpn/lib/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/crypt.h -------------------------------------------------------------------------------- /vpn/lib/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/lib/user.c -------------------------------------------------------------------------------- /vpn/vpn_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKX1209/bitvisor-gdb/HEAD/vpn/vpn_msg.h --------------------------------------------------------------------------------