├── .clang-format ├── .github └── workflows │ ├── mkosi.yml │ └── pullrequest.yml ├── .gitignore ├── .gitmodules ├── BUILDING ├── CODE_OF_CONDUCT.md ├── COPYRIGHT ├── Cryptlib ├── Base.h ├── Cipher │ ├── CryptAesNull.c │ ├── CryptArc4Null.c │ └── CryptTdesNull.c ├── Cryptlib.diff ├── Hash │ ├── CryptMd4Null.c │ ├── CryptMd5.c │ ├── CryptSha1.c │ ├── CryptSha256.c │ └── CryptSha512.c ├── Hmac │ ├── CryptHmacMd5Null.c │ ├── CryptHmacSha1Null.c │ └── CryptHmacSha256Null.c ├── Include │ ├── OpenSslSupport.h │ ├── Protocol │ │ └── RuntimeCrypt.h │ ├── arpa │ │ └── inet.h │ ├── assert.h │ ├── dirent.h │ ├── errno.h │ ├── limits.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── netdb.h │ ├── netinet │ │ └── in.h │ ├── openssl │ │ ├── README │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h │ ├── sgtty.h │ ├── signal.h │ ├── stdio.h │ ├── sys │ │ ├── ioctl.h │ │ ├── param.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── times.h │ │ ├── types.h │ │ └── un.h │ ├── syslog.h │ ├── time.h │ └── unistd.h ├── InternalCryptLib.h ├── Library │ ├── BaseCryptLib.h │ ├── BaseLib.h │ ├── BaseMemoryLib.h │ ├── DebugLib.h │ └── MemoryAllocationLib.h ├── Makefile ├── OpenSSL │ ├── Makefile │ ├── buildinf.h │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── aes │ │ │ ├── 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 │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_par.c │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── 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 │ │ ├── bio │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── bn.h │ │ │ ├── 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_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bn_x931p.c │ │ │ └── rsaz_exp.h │ │ ├── buffer │ │ │ ├── buf_err.c │ │ │ ├── buf_str.c │ │ │ └── buffer.c │ │ ├── cmac │ │ │ ├── cm_ameth.c │ │ │ ├── cm_pmeth.c │ │ │ └── cmac.c │ │ ├── comp │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── conf_api.c │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ └── conf_sap.c │ │ ├── constant_time_locl.h │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── cversion.c │ │ ├── dh │ │ │ ├── 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 │ │ │ └── dh_rfc5114.c │ │ ├── dso │ │ │ ├── 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 │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err_all.c │ │ │ └── err_prn.c │ │ ├── evp │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_aes_cbc_hmac_sha1.c │ │ │ ├── e_aes_cbc_hmac_sha256.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc4_hmac_md5.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp_acnf.c │ │ │ ├── evp_cnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── fips_ers.c │ │ ├── hmac │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ └── hmac.c │ │ ├── lhash │ │ │ ├── lh_stats.c │ │ │ └── lhash.c │ │ ├── md32_common.h │ │ ├── md5 │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ └── md5_one.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── cbc128.c │ │ │ ├── ccm128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ ├── cts128.c │ │ │ ├── gcm128.c │ │ │ ├── modes_lcl.h │ │ │ ├── ofb128.c │ │ │ ├── wrap128.c │ │ │ └── xts128.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_fips.c │ │ ├── o_init.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_xref.c │ │ │ └── obj_xref.h │ │ ├── ocsp │ │ │ ├── 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 │ │ ├── pem │ │ │ ├── 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 │ │ │ └── pvkfmt.c │ │ ├── pkcs12 │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ └── pk12err.c │ │ ├── pkcs7 │ │ │ ├── bio_pk7.c │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ └── pkcs7err.c │ │ ├── rand │ │ │ ├── md_rand.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_unix.c │ │ │ └── randfile.c │ │ ├── rc4 │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ └── rc4_utl.c │ │ ├── rsa │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_crpt.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_x931.c │ │ ├── sha │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha256.c │ │ │ ├── sha512.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ └── sha_one.c │ │ ├── stack │ │ │ └── stack.c │ │ ├── txt_db │ │ │ └── txt_db.c │ │ ├── uid.c │ │ ├── x509 │ │ │ ├── vpm_int.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_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ └── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── 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 │ │ │ └── v3err.c │ ├── e_os.h │ ├── openssl-bio-b_print-disable-sse.patch │ └── update.sh ├── Pem │ └── CryptPemNull.c ├── Pk │ ├── CryptAuthenticode.c │ ├── CryptDhNull.c │ ├── CryptPkcs7SignNull.c │ ├── CryptPkcs7Verify.c │ ├── CryptPkcs7VerifyEku.c │ ├── CryptRsaBasic.c │ ├── CryptRsaExtNull.c │ ├── CryptTs.c │ └── CryptX509.c ├── Rand │ └── CryptRand.c ├── SysCall │ ├── BaseMemAllocation.c │ ├── BaseStrings.c │ ├── CrtWrapper.c │ └── TimerWrapper.c ├── opensslconf-diff.patch └── update.sh ├── Delivering_Sbat_Revocations.md ├── Make.defaults ├── Make.rules ├── Makefile ├── MokManager.c ├── MokVars.txt ├── PasswordCrypt.c ├── README.fallback ├── README.md ├── README.tpm ├── SBAT.example.md ├── SBAT.md ├── SbatLevel_Variable.txt ├── TODO ├── cert.S ├── crypt_blowfish.c ├── csv.c ├── data └── sbat.csv ├── dp.c ├── elf_aarch64_efi.lds ├── elf_arm_efi.lds ├── elf_ia32_efi.lds ├── elf_ia64_efi.lds ├── elf_x86_64_efi.lds ├── errlog.c ├── fallback.c ├── fuzz-csv.c ├── fuzz-pe-relocate.c ├── fuzz-sbat.c ├── generate_sbat_var_defs.c ├── globals.c ├── httpboot.c ├── include ├── asm.h ├── cc.h ├── compiler.h ├── configtable.h ├── console.h ├── coverity.mk ├── crypt_blowfish.h ├── dp.h ├── efiauthenticated.h ├── endian.h ├── errlog.h ├── errors.h ├── execute.h ├── fanalyzer.mk ├── fuzz.mk ├── guid.h ├── hexdump.h ├── http.h ├── httpboot.h ├── ip4config2.h ├── ip6config.h ├── list.h ├── load-options.h ├── loader-proto.h ├── memattrs.h ├── mock-variables.h ├── mok.h ├── netboot.h ├── passwordcrypt.h ├── pe.h ├── peimage.h ├── sbat.h ├── sbat_var_defs.h ├── scan-build.mk ├── security_policy.h ├── shell.h ├── simple_file.h ├── ssp.h ├── ssp_var_defs.h ├── str.h ├── system │ ├── alloca.h │ ├── builtins_begin_.h │ ├── builtins_end_.h │ ├── ctype.h │ ├── efistdarg.h │ ├── inttypes.h │ ├── stdarg.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── strings.h ├── test-data-efivars-0.h ├── test-data-efivars-1.h ├── test.h ├── test.mk ├── tpm.h ├── ucs2.h ├── utils.h ├── variables.h ├── verify.h └── wincert.h ├── lib ├── Makefile ├── configtable.c ├── console.c ├── execute.c ├── guid.c ├── print_crypto.c ├── security_policy.c ├── shell.c ├── simple_file.c ├── string.c └── variables.c ├── load-options.c ├── loader-proto.c ├── make-archive ├── make-certs ├── memattrs.c ├── mkosi ├── mkosi.build.chroot ├── mkosi.clean ├── mkosi.conf ├── mkosi.conf.d │ ├── centos-fedora │ │ ├── mkosi.conf │ │ └── mkosi.conf.d │ │ │ ├── grub-arm64.conf │ │ │ └── grub-x86-64.conf │ ├── centos │ │ └── certs │ │ │ └── shim.crt │ ├── debian-ubuntu │ │ ├── mkosi.conf │ │ └── mkosi.conf.d │ │ │ ├── grub-arm64.conf │ │ │ └── grub-x86-64.conf │ ├── debian │ │ └── certs │ │ │ └── shim.crt │ ├── fedora │ │ ├── certs │ │ │ ├── mok │ │ │ │ └── redhat-test.crt │ │ │ └── shim.crt │ │ └── mkosi.conf │ └── ubuntu │ │ ├── certs │ │ └── shim.crt │ │ └── mkosi.conf ├── mkosi.extra │ └── usr │ │ ├── bin │ │ └── mkosi-test.sh │ │ └── lib │ │ └── systemd │ │ └── system │ │ └── mkosi-test.service ├── mkosi.finalize ├── mkosi.postoutput └── mkosi.repart │ ├── 00-esp.conf │ └── 10-root.conf ├── mock-variables.c ├── model.c ├── mok.c ├── netboot.c ├── pe-relocate.c ├── pe.c ├── post-process-pe.c ├── sbat.c ├── sbat_var.S ├── shim.c ├── shim.h ├── test-csv.c ├── test-data ├── .gitignore ├── efivars-0 │ ├── AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226 │ ├── AMD_RAID-fe26a894-d199-47d4-8afa-070e3d54ba86 │ ├── AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e │ ├── Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── db-d719b2cb-3d3a-4596-a3bc-dad00e67656f │ ├── dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f │ └── dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c ├── efivars-1 │ ├── AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226 │ ├── AMD_RAID-fe26a894-d199-47d4-8afa-070e3d54ba86 │ ├── AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e │ ├── AMITSESetup-c811fa38-42c8-4579-a9bb-60e94eddfb34 │ ├── AOD_SETUP-5ed15dc0-edef-4161-9151-6014c4cc630c │ ├── AmdAcpiVar-79941ecd-ed36-49d0-8124-e4c31ac75cd4 │ ├── AmdSetup-3a997502-647a-4c82-998e-52ef9486a247 │ ├── AmiHardwareSignatureSetupUpdateCountVar-81c76078-bfde-4368-9790-570914c01a65 │ ├── ApSyncFlagNv-ad3f6761-f0a3-46c8-a4cb-19b70ffdb305 │ ├── AsbkpInfo-cb825795-feb1-4c0b-894f-cc70f8064395 │ ├── AsusExtFancard-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── AsusFanSetupFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── AsusHwmSetupOneof-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── AsusNodePsu-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── AsusQFanSetupData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── AsusRomLayout-7186d975-2dba-4413-81a8-9f1538faef5e │ ├── AsusSetupDataBackup-1111b056-c5e9-40ca-aba3-ec172533d814 │ ├── AutoDetectData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── BiosEventLog-4034591c-48ea-4cdc-864f-e7cb61cfd0f2 │ ├── Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0003-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0005-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Boot0006-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── BootCurrent-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── BootFromUSB-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── BootOptionSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── CMOSfailflag-c89dc9c7-5105-472c-a743-b1621e142b41 │ ├── ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── CurrentPolicy-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── DefaultBootOrder-45cf35f6-0d6e-4d04-856a-0370a5b16f53 │ ├── DeploymentModeNv-97e8965f-c761-4f48-b6e4-9ffa9cb2a2d6 │ ├── DownCoreStatus-29749bad-401b-4f6d-b124-cece8c590c48 │ ├── EnWpData-cbab171f-f356-4009-baaa-6628353a0a29 │ ├── ErrOut-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── FPLayoutOrder-4db88a62-6721-47a0-9082-280b00323594 │ ├── FTMActiveFlag-4034591c-48ea-4cdc-864f-e7cb61cfd0f2 │ ├── FastBootOption-b540a530-6978-4da7-91cb-7207d764d262 │ ├── FirstBootFlag-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── HddSmartInfo-a6f44860-b2e8-4fda-bd45-78368994b6ae │ ├── HiiDB-1b838190-4625-4ead-abc9-cd5e6af18fe0 │ ├── HwErrRecSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── KEK-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── KEKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── Kernel_ATPSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── Kernel_DriverSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── Kernel_RvkSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── Kernel_SiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── Kernel_SkuSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── Kernel_WinSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b │ ├── LastBoot-b540a530-6978-4da7-91cb-7207d764d262 │ ├── MaximumTableSize-4b3082a3-80c6-4d7e-9cd0-583917265df1 │ ├── MemoryOverwriteRequestControl-e20939be-32d4-41be-a150-897f85d49829 │ ├── MemoryOverwriteRequestControlLock-bb983ccf-151d-40e1-a07b-4a17be168292 │ ├── MokList-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── MokListRT-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── MokListX-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── MokListXRT-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── MonotonicCounter-01368881-c4ad-4b1d-b631-d57a8ec8db6b │ ├── MyFav-4034591c-48ea-4cdc-864f-e7cb61cfd0f2 │ ├── NVRAM_Verify-15a9dd61-e4f8-4a99-80db-353b13d76490 │ ├── NetworkStackVar-d1405d16-7afc-4695-bb12-41459d3695a2 │ ├── NvHdd0-e57abcbd-9456-4639-8f65-06aab41d840f │ ├── NvHdd8-e57abcbd-9456-4639-8f65-06aab41d840f │ ├── OsIndications-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── OsIndicationsSupported-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── PCI_COMMON-aca9f304-21e2-4852-9875-7ff4881d67a5 │ ├── PK-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── PKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── PcieSataModVar-5e9a565f-cdc0-413b-ad13-1fe8713ffdcd │ ├── PlatformLang-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── PreVgaInfo-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── RsdpAddr-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── SIDSUPPORT-7d3dceee-cbce-4ea7-8709-6e552f1edbde │ ├── SbatLevel-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── SbatLevelRT-605dab50-e046-4300-abb6-3dd810dd8b23 │ ├── SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── SecureBootSetup-7b59104a-c00d-4158-87ff-f04d6396a915 │ ├── Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── SetupLedData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── SetupMode-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── SignatureSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── SmbiosEntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1 │ ├── SmbiosScratchBuffer-4b3082a3-80c6-4d7e-9cd0-583917265df1 │ ├── SmbiosV3EntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1 │ ├── StdDefaults-4599d26f-1a11-49b8-b91f-858745cff824 │ ├── TPMPERBIOSFLAGS-7d3dceee-cbce-4ea7-8709-6e552f1edbde │ ├── Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── TotalNumberOfRootBridges-fb5703f5-f8a7-f401-18b4-3f108deb2612 │ ├── TpmServFlags-7d3dceee-cbce-4ea7-8709-6e552f1edbde │ ├── UsbSupport-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 │ ├── VARSTORE_OCMR_SETTINGS_NAME-c05fba7d-7a92-49e0-bcee-233b14dca803 │ ├── VendorKeys-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── WpBufAddr-cba83c4a-a5fc-48a8-b3a6-d33636166544 │ ├── WriteOnceStatus-4b3082a3-80c6-4d7e-9cd0-583917265df1 │ ├── db-d719b2cb-3d3a-4596-a3bc-dad00e67656f │ ├── dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c │ ├── dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f │ └── dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c ├── grubx64.0.76.el7.1.efi ├── grubx64.0.76.el7.efi └── grubx64.0.80.el7.efi ├── test-load-options.c ├── test-mock-variables.c ├── test-mok-mirror.c ├── test-pe-relocate.c ├── test-pe-util.c ├── test-sbat.c ├── test-str.c ├── test.c ├── testplan.txt ├── tpm.c ├── utils.c ├── verify.c ├── version.c.in └── version.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/mkosi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/.github/workflows/mkosi.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/BUILDING -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Cryptlib/Base.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cryptlib/Cipher/CryptAesNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Cipher/CryptAesNull.c -------------------------------------------------------------------------------- /Cryptlib/Cipher/CryptArc4Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Cipher/CryptArc4Null.c -------------------------------------------------------------------------------- /Cryptlib/Cipher/CryptTdesNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Cipher/CryptTdesNull.c -------------------------------------------------------------------------------- /Cryptlib/Cryptlib.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Cryptlib.diff -------------------------------------------------------------------------------- /Cryptlib/Hash/CryptMd4Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hash/CryptMd4Null.c -------------------------------------------------------------------------------- /Cryptlib/Hash/CryptMd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hash/CryptMd5.c -------------------------------------------------------------------------------- /Cryptlib/Hash/CryptSha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hash/CryptSha1.c -------------------------------------------------------------------------------- /Cryptlib/Hash/CryptSha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hash/CryptSha256.c -------------------------------------------------------------------------------- /Cryptlib/Hash/CryptSha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hash/CryptSha512.c -------------------------------------------------------------------------------- /Cryptlib/Hmac/CryptHmacMd5Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hmac/CryptHmacMd5Null.c -------------------------------------------------------------------------------- /Cryptlib/Hmac/CryptHmacSha1Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hmac/CryptHmacSha1Null.c -------------------------------------------------------------------------------- /Cryptlib/Hmac/CryptHmacSha256Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Hmac/CryptHmacSha256Null.c -------------------------------------------------------------------------------- /Cryptlib/Include/OpenSslSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/OpenSslSupport.h -------------------------------------------------------------------------------- /Cryptlib/Include/Protocol/RuntimeCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/Protocol/RuntimeCrypt.h -------------------------------------------------------------------------------- /Cryptlib/Include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/arpa/inet.h -------------------------------------------------------------------------------- /Cryptlib/Include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/assert.h -------------------------------------------------------------------------------- /Cryptlib/Include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/dirent.h -------------------------------------------------------------------------------- /Cryptlib/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/errno.h -------------------------------------------------------------------------------- /Cryptlib/Include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/limits.h -------------------------------------------------------------------------------- /Cryptlib/Include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/malloc.h -------------------------------------------------------------------------------- /Cryptlib/Include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/math.h -------------------------------------------------------------------------------- /Cryptlib/Include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/memory.h -------------------------------------------------------------------------------- /Cryptlib/Include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/netdb.h -------------------------------------------------------------------------------- /Cryptlib/Include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/netinet/in.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/README -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/aes.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/asn1.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/asn1t.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/bio.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/blowfish.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/bn.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/buffer.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/camellia.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/cast.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/cmac.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/cms.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/comp.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/conf.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/conf_api.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/crypto.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/des.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/des_old.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/dh.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/dsa.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/dso.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/dtls1.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/e_os2.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ebcdic.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ec.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ecdh.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/engine.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/err.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/evp.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/hmac.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/idea.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/kssl.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/lhash.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/md4.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/md5.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/mdc2.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/modes.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/obj_mac.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/objects.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ocsp.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/opensslconf.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/opensslv.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/pem.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/pem2.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/pkcs12.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/pqueue.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/rand.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/rc2.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/rc4.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ripemd.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/rsa.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/safestack.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/seed.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/sha.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/srp.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/srtp.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ssl.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ssl2.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ssl23.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ssl3.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/stack.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/symhacks.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/tls1.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ts.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/txt_db.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ui.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/ui_compat.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/whrlpool.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/x509.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /Cryptlib/Include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/openssl/x509v3.h -------------------------------------------------------------------------------- /Cryptlib/Include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sgtty.h -------------------------------------------------------------------------------- /Cryptlib/Include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/signal.h -------------------------------------------------------------------------------- /Cryptlib/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/stdio.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/ioctl.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/param.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/socket.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/stat.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/time.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/times.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/types.h -------------------------------------------------------------------------------- /Cryptlib/Include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/sys/un.h -------------------------------------------------------------------------------- /Cryptlib/Include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/syslog.h -------------------------------------------------------------------------------- /Cryptlib/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/time.h -------------------------------------------------------------------------------- /Cryptlib/Include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Include/unistd.h -------------------------------------------------------------------------------- /Cryptlib/InternalCryptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/InternalCryptLib.h -------------------------------------------------------------------------------- /Cryptlib/Library/BaseCryptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Library/BaseCryptLib.h -------------------------------------------------------------------------------- /Cryptlib/Library/BaseLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Library/BaseLib.h -------------------------------------------------------------------------------- /Cryptlib/Library/BaseMemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Library/BaseMemoryLib.h -------------------------------------------------------------------------------- /Cryptlib/Library/DebugLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cryptlib/Library/MemoryAllocationLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cryptlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Makefile -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/Makefile -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/buildinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/buildinf.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/LPdir_nyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/LPdir_nyi.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_cbc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_cfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_cfb.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_core.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_ctr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_ecb.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_ige.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_ige.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_misc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_ofb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_ofb.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/aes/aes_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/aes/aes_wrap.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_bitstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_bitstr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_bool.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_bytes.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_d2i_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_d2i_fp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_digest.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_dup.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_enum.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_gentm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_gentm.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_i2d_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_i2d_fp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_int.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_mbstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_mbstr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_object.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_octet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_octet.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_print.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_set.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_sign.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_strex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_strex.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_strnid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_strnid.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_time.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_type.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_utctm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_utctm.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_utf8.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/a_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/a_verify.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/ameth_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/ameth_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn1_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn1_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn1_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn1_gen.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn1_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn1_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn1_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn1_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn1_par.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn_mime.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn_moid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn_moid.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/asn_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/asn_pack.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/bio_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/bio_asn1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/bio_ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/bio_ndef.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/charmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/charmap.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/d2i_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/d2i_pr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/d2i_pu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/d2i_pu.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/evp_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/evp_asn1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/f_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/f_enum.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/f_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/f_int.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/f_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/f_string.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/i2d_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/i2d_pr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/i2d_pu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/i2d_pu.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/n_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/n_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/nsseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/nsseq.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/p5_pbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/p5_pbe.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/p5_pbev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/p5_pbev2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/p8_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/p8_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_bitst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_bitst.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_crl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_req.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_spki.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_x509.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/t_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/t_x509a.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_dec.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_enc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_fre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_fre.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_new.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_typ.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/tasn_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/tasn_utl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_algor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_algor.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_attrib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_bignum.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_crl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_exten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_exten.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_info.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_long.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_name.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_nx509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_nx509.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_pubkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_req.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_sig.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_spki.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_val.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_x509.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/asn1/x_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/asn1/x_x509a.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/b_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/b_dump.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/b_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/b_print.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/b_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/b_sock.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bf_buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bf_buff.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bf_nbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bf_nbio.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bf_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bf_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bio_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bio_cb.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bio_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bio_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bio_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bio_lcl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bio_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bio_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_acpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_acpt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_bio.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_conn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_dgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_dgram.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_fd.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_file.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_log.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_mem.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bio/bss_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bio/bss_sock.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_add.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_asm.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_blind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_blind.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_const.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_ctx.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_depr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_div.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_exp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_exp2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_gcd.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_gf2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_gf2m.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_kron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_kron.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_lcl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_mod.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_mont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_mont.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_mpi.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_mul.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_nist.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_prime.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_prime.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_print.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_rand.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_recp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_recp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_shift.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_sqr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_sqrt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_word.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/bn_x931p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/bn_x931p.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/bn/rsaz_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/bn/rsaz_exp.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/buffer/buf_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/buffer/buf_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/buffer/buf_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/buffer/buf_str.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/buffer/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/buffer/buffer.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cmac/cm_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cmac/cm_ameth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cmac/cm_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cmac/cm_pmeth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cmac/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cmac/cmac.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/comp/c_rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/comp/c_rle.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/comp/c_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/comp/c_zlib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/comp/comp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/comp/comp_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/comp/comp_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/comp/comp_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_api.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_def.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_def.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_mall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_mall.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_mod.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/conf/conf_sap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/conf/conf_sap.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/constant_time_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/constant_time_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cpt_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cpt_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cryptlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cryptlib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cryptlib.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/cversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/cversion.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_ameth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_asn1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_check.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_depr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_gen.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_key.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_pmeth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dh/dh_rfc5114.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dh/dh_rfc5114.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_beos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_beos.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_dl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_dlfcn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_openssl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_vms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_vms.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/dso/dso_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/dso/dso_win32.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ebcdic.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/err/err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/err/err_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/err/err_all.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/err/err_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/err/err_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/bio_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/bio_b64.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/bio_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/bio_enc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/bio_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/bio_md.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/bio_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/bio_ok.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/c_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/c_all.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/c_allc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/c_allc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/c_alld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/c_alld.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/digest.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_aes.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_aes_cbc_hmac_sha256.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_bf.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_camellia.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_cast.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_des.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_des3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_des3.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_idea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_idea.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_old.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_rc2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_rc4.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_rc4_hmac_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_rc4_hmac_md5.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_rc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_rc5.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_seed.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/e_xcbc_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/e_xcbc_d.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/encode.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_acnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_acnf.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_cnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_cnf.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_enc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_key.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_pbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_pbe.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/evp_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/evp_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_dss.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_dss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_dss1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_ecdsa.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_md2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_md4.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_md5.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_mdc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_mdc2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_ripemd.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_sha.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_sha1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_sigver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_sigver.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/m_wp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/m_wp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/names.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p5_crpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p5_crpt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p5_crpt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p5_crpt2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_dec.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_enc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_open.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_seal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_seal.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_sign.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/p_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/p_verify.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/pmeth_fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/pmeth_fn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/pmeth_gn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/pmeth_gn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/evp/pmeth_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/evp/pmeth_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ex_data.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/fips_ers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/fips_ers.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/hmac/hm_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/hmac/hm_ameth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/hmac/hm_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/hmac/hm_pmeth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/hmac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/hmac/hmac.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/lhash/lh_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/lhash/lh_stats.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/lhash/lhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/lhash/lhash.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/md32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/md32_common.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/md5/md5_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/md5/md5_dgst.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/md5/md5_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/md5/md5_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/md5/md5_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/md5/md5_one.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/mem.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/mem_clr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/mem_clr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/mem_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/mem_dbg.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/cbc128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/cbc128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/ccm128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/ccm128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/cfb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/cfb128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/ctr128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/ctr128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/cts128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/cts128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/gcm128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/gcm128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/modes_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/modes_lcl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/ofb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/ofb128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/wrap128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/wrap128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/modes/xts128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/modes/xts128.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_dir.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_dir.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_fips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_fips.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_init.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_str.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_str.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_time.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/o_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/o_time.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/o_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/o_names.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_dat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_dat.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_dat.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_xref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_xref.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/objects/obj_xref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/objects/obj_xref.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_asn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_cl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ext.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_ht.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_srv.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/ocsp/ocsp_vfy.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_all.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_info.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_oth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_oth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_pk8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_pk8.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_pkey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_seal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_seal.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_sign.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_x509.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pem_xaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pem_xaux.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pem/pvkfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pem/pvkfmt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_add.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_asn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_asn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_attr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_crpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_crpt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_crt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_decr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_decr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_init.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_key.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_kiss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_kiss.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_mutl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_mutl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_npas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_npas.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_p8d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_p8d.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_p8e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_p8e.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/p12_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/p12_utl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs12/pk12err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs12/pk12err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/bio_pk7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/bio_pk7.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_asn1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_attr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_doit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_doit.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_mime.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/pkcs7/pkcs7err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/pkcs7/pkcs7err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/md_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/md_rand.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/rand_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/rand_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/rand_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/rand_lcl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/rand_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/rand_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/rand_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/rand_unix.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rand/randfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rand/randfile.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rc4/rc4_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rc4/rc4_enc.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rc4/rc4_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rc4/rc4_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rc4/rc4_skey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rc4/rc4_skey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rc4/rc4_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rc4/rc4_utl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_ameth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_ameth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_asn1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_chk.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_crpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_crpt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_depr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_depr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_eay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_eay.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_none.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_null.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_oaep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_oaep.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_pk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_pk1.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_pmeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_pmeth.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_pss.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_saos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_saos.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_sign.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_ssl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/rsa/rsa_x931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/rsa/rsa_x931.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha1_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha1_one.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha1dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha1dgst.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha256.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha512.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha_dgst.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha_locl.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/sha/sha_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/sha/sha_one.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/stack/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/stack/stack.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/txt_db/txt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/txt_db/txt_db.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/uid.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/vpm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/vpm_int.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_att.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_cmp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_d2.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_def.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_ext.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_lu.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_obj.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_r2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_r2x.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_req.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_set.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_trs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_trs.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_txt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_v3.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_vfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_vfy.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509_vpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509_vpm.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509cset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509cset.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509name.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509rset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509rset.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509spki.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x509type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x509type.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509/x_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509/x_all.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/ext_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/ext_dat.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_cache.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_data.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_int.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_map.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_node.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/pcy_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/pcy_tree.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_addr.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_akey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_akey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_akeya.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_akeya.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_alt.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_asid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_asid.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_bcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_bcons.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_bitst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_bitst.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_conf.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_cpols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_cpols.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_crld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_crld.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_enum.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_extku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_extku.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_genn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_genn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_ia5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_ia5.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_info.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_int.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_lib.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_ncons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_ncons.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_ocsp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_pci.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_pcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_pcia.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_pcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_pcons.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_pku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_pku.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_pmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_pmaps.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_prn.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_purp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_purp.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_skey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_skey.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_sxnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_sxnet.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3_utl.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/crypto/x509v3/v3err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/crypto/x509v3/v3err.c -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/e_os.h -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/openssl-bio-b_print-disable-sse.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/openssl-bio-b_print-disable-sse.patch -------------------------------------------------------------------------------- /Cryptlib/OpenSSL/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/OpenSSL/update.sh -------------------------------------------------------------------------------- /Cryptlib/Pem/CryptPemNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pem/CryptPemNull.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptAuthenticode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptAuthenticode.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptDhNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptDhNull.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptPkcs7SignNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptPkcs7SignNull.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptPkcs7Verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptPkcs7Verify.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptPkcs7VerifyEku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptPkcs7VerifyEku.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptRsaBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptRsaBasic.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptRsaExtNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptRsaExtNull.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptTs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptTs.c -------------------------------------------------------------------------------- /Cryptlib/Pk/CryptX509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Pk/CryptX509.c -------------------------------------------------------------------------------- /Cryptlib/Rand/CryptRand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/Rand/CryptRand.c -------------------------------------------------------------------------------- /Cryptlib/SysCall/BaseMemAllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/SysCall/BaseMemAllocation.c -------------------------------------------------------------------------------- /Cryptlib/SysCall/BaseStrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/SysCall/BaseStrings.c -------------------------------------------------------------------------------- /Cryptlib/SysCall/CrtWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/SysCall/CrtWrapper.c -------------------------------------------------------------------------------- /Cryptlib/SysCall/TimerWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/SysCall/TimerWrapper.c -------------------------------------------------------------------------------- /Cryptlib/opensslconf-diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/opensslconf-diff.patch -------------------------------------------------------------------------------- /Cryptlib/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Cryptlib/update.sh -------------------------------------------------------------------------------- /Delivering_Sbat_Revocations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Delivering_Sbat_Revocations.md -------------------------------------------------------------------------------- /Make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Make.defaults -------------------------------------------------------------------------------- /Make.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Make.rules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/Makefile -------------------------------------------------------------------------------- /MokManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/MokManager.c -------------------------------------------------------------------------------- /MokVars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/MokVars.txt -------------------------------------------------------------------------------- /PasswordCrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/PasswordCrypt.c -------------------------------------------------------------------------------- /README.fallback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/README.fallback -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/README.md -------------------------------------------------------------------------------- /README.tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/README.tpm -------------------------------------------------------------------------------- /SBAT.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/SBAT.example.md -------------------------------------------------------------------------------- /SBAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/SBAT.md -------------------------------------------------------------------------------- /SbatLevel_Variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/SbatLevel_Variable.txt -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/TODO -------------------------------------------------------------------------------- /cert.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/cert.S -------------------------------------------------------------------------------- /crypt_blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/crypt_blowfish.c -------------------------------------------------------------------------------- /csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/csv.c -------------------------------------------------------------------------------- /data/sbat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/data/sbat.csv -------------------------------------------------------------------------------- /dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/dp.c -------------------------------------------------------------------------------- /elf_aarch64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/elf_aarch64_efi.lds -------------------------------------------------------------------------------- /elf_arm_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/elf_arm_efi.lds -------------------------------------------------------------------------------- /elf_ia32_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/elf_ia32_efi.lds -------------------------------------------------------------------------------- /elf_ia64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/elf_ia64_efi.lds -------------------------------------------------------------------------------- /elf_x86_64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/elf_x86_64_efi.lds -------------------------------------------------------------------------------- /errlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/errlog.c -------------------------------------------------------------------------------- /fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/fallback.c -------------------------------------------------------------------------------- /fuzz-csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/fuzz-csv.c -------------------------------------------------------------------------------- /fuzz-pe-relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/fuzz-pe-relocate.c -------------------------------------------------------------------------------- /fuzz-sbat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/fuzz-sbat.c -------------------------------------------------------------------------------- /generate_sbat_var_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/generate_sbat_var_defs.c -------------------------------------------------------------------------------- /globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/globals.c -------------------------------------------------------------------------------- /httpboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/httpboot.c -------------------------------------------------------------------------------- /include/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/asm.h -------------------------------------------------------------------------------- /include/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/cc.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/configtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/configtable.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/console.h -------------------------------------------------------------------------------- /include/coverity.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/coverity.mk -------------------------------------------------------------------------------- /include/crypt_blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/crypt_blowfish.h -------------------------------------------------------------------------------- /include/dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/dp.h -------------------------------------------------------------------------------- /include/efiauthenticated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/efiauthenticated.h -------------------------------------------------------------------------------- /include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/endian.h -------------------------------------------------------------------------------- /include/errlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/errlog.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/execute.h -------------------------------------------------------------------------------- /include/fanalyzer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/fanalyzer.mk -------------------------------------------------------------------------------- /include/fuzz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/fuzz.mk -------------------------------------------------------------------------------- /include/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/guid.h -------------------------------------------------------------------------------- /include/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/hexdump.h -------------------------------------------------------------------------------- /include/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/http.h -------------------------------------------------------------------------------- /include/httpboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/httpboot.h -------------------------------------------------------------------------------- /include/ip4config2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/ip4config2.h -------------------------------------------------------------------------------- /include/ip6config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/ip6config.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/list.h -------------------------------------------------------------------------------- /include/load-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/load-options.h -------------------------------------------------------------------------------- /include/loader-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/loader-proto.h -------------------------------------------------------------------------------- /include/memattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/memattrs.h -------------------------------------------------------------------------------- /include/mock-variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/mock-variables.h -------------------------------------------------------------------------------- /include/mok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/mok.h -------------------------------------------------------------------------------- /include/netboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/netboot.h -------------------------------------------------------------------------------- /include/passwordcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/passwordcrypt.h -------------------------------------------------------------------------------- /include/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/pe.h -------------------------------------------------------------------------------- /include/peimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/peimage.h -------------------------------------------------------------------------------- /include/sbat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/sbat.h -------------------------------------------------------------------------------- /include/sbat_var_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/sbat_var_defs.h -------------------------------------------------------------------------------- /include/scan-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/scan-build.mk -------------------------------------------------------------------------------- /include/security_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/security_policy.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/simple_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/simple_file.h -------------------------------------------------------------------------------- /include/ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/ssp.h -------------------------------------------------------------------------------- /include/ssp_var_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/ssp_var_defs.h -------------------------------------------------------------------------------- /include/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/str.h -------------------------------------------------------------------------------- /include/system/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/alloca.h -------------------------------------------------------------------------------- /include/system/builtins_begin_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/builtins_begin_.h -------------------------------------------------------------------------------- /include/system/builtins_end_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/builtins_end_.h -------------------------------------------------------------------------------- /include/system/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/ctype.h -------------------------------------------------------------------------------- /include/system/efistdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/efistdarg.h -------------------------------------------------------------------------------- /include/system/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/inttypes.h -------------------------------------------------------------------------------- /include/system/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/stdarg.h -------------------------------------------------------------------------------- /include/system/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/stdio.h -------------------------------------------------------------------------------- /include/system/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/stdlib.h -------------------------------------------------------------------------------- /include/system/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/string.h -------------------------------------------------------------------------------- /include/system/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/system/strings.h -------------------------------------------------------------------------------- /include/test-data-efivars-0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/test-data-efivars-0.h -------------------------------------------------------------------------------- /include/test-data-efivars-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/test-data-efivars-1.h -------------------------------------------------------------------------------- /include/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/test.h -------------------------------------------------------------------------------- /include/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/test.mk -------------------------------------------------------------------------------- /include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/tpm.h -------------------------------------------------------------------------------- /include/ucs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/ucs2.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/variables.h -------------------------------------------------------------------------------- /include/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/verify.h -------------------------------------------------------------------------------- /include/wincert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/include/wincert.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/configtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/configtable.c -------------------------------------------------------------------------------- /lib/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/console.c -------------------------------------------------------------------------------- /lib/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/execute.c -------------------------------------------------------------------------------- /lib/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/guid.c -------------------------------------------------------------------------------- /lib/print_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/print_crypto.c -------------------------------------------------------------------------------- /lib/security_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/security_policy.c -------------------------------------------------------------------------------- /lib/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/shell.c -------------------------------------------------------------------------------- /lib/simple_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/simple_file.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/lib/variables.c -------------------------------------------------------------------------------- /load-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/load-options.c -------------------------------------------------------------------------------- /loader-proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/loader-proto.c -------------------------------------------------------------------------------- /make-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/make-archive -------------------------------------------------------------------------------- /make-certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/make-certs -------------------------------------------------------------------------------- /memattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/memattrs.c -------------------------------------------------------------------------------- /mkosi/mkosi.build.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.build.chroot -------------------------------------------------------------------------------- /mkosi/mkosi.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.clean -------------------------------------------------------------------------------- /mkosi/mkosi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/centos-fedora/mkosi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/centos-fedora/mkosi.conf -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/centos-fedora/mkosi.conf.d/grub-arm64.conf: -------------------------------------------------------------------------------- 1 | [Match] 2 | Architecture=arm64 3 | 4 | [Content] 5 | Packages=grub2-efi-aa64 6 | -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/centos-fedora/mkosi.conf.d/grub-x86-64.conf: -------------------------------------------------------------------------------- 1 | [Match] 2 | Architecture=x86-64 3 | 4 | [Content] 5 | Packages=grub2-efi-x64 6 | -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/centos/certs/shim.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/centos/certs/shim.crt -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/debian-ubuntu/mkosi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/debian-ubuntu/mkosi.conf -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/debian-ubuntu/mkosi.conf.d/grub-arm64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/debian-ubuntu/mkosi.conf.d/grub-arm64.conf -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/debian-ubuntu/mkosi.conf.d/grub-x86-64.conf: -------------------------------------------------------------------------------- 1 | [Match] 2 | Architecture=x86-64 3 | 4 | [Content] 5 | Packages=grub-efi-amd64-signed 6 | -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/debian/certs/shim.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/debian/certs/shim.crt -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/fedora/certs/mok/redhat-test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/fedora/certs/mok/redhat-test.crt -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/fedora/certs/shim.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/fedora/certs/shim.crt -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/fedora/mkosi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/fedora/mkosi.conf -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/ubuntu/certs/shim.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/ubuntu/certs/shim.crt -------------------------------------------------------------------------------- /mkosi/mkosi.conf.d/ubuntu/mkosi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.conf.d/ubuntu/mkosi.conf -------------------------------------------------------------------------------- /mkosi/mkosi.extra/usr/bin/mkosi-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.extra/usr/bin/mkosi-test.sh -------------------------------------------------------------------------------- /mkosi/mkosi.extra/usr/lib/systemd/system/mkosi-test.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.extra/usr/lib/systemd/system/mkosi-test.service -------------------------------------------------------------------------------- /mkosi/mkosi.finalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.finalize -------------------------------------------------------------------------------- /mkosi/mkosi.postoutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.postoutput -------------------------------------------------------------------------------- /mkosi/mkosi.repart/00-esp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.repart/00-esp.conf -------------------------------------------------------------------------------- /mkosi/mkosi.repart/10-root.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mkosi/mkosi.repart/10-root.conf -------------------------------------------------------------------------------- /mock-variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mock-variables.c -------------------------------------------------------------------------------- /model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/model.c -------------------------------------------------------------------------------- /mok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/mok.c -------------------------------------------------------------------------------- /netboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/netboot.c -------------------------------------------------------------------------------- /pe-relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/pe-relocate.c -------------------------------------------------------------------------------- /pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/pe.c -------------------------------------------------------------------------------- /post-process-pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/post-process-pe.c -------------------------------------------------------------------------------- /sbat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/sbat.c -------------------------------------------------------------------------------- /sbat_var.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/sbat_var.S -------------------------------------------------------------------------------- /shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/shim.c -------------------------------------------------------------------------------- /shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/shim.h -------------------------------------------------------------------------------- /test-csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-csv.c -------------------------------------------------------------------------------- /test-data/.gitignore: -------------------------------------------------------------------------------- 1 | !/*.efi 2 | -------------------------------------------------------------------------------- /test-data/efivars-0/AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226 -------------------------------------------------------------------------------- /test-data/efivars-0/AMD_RAID-fe26a894-d199-47d4-8afa-070e3d54ba86: -------------------------------------------------------------------------------- 1 | cg@ -------------------------------------------------------------------------------- /test-data/efivars-0/AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e -------------------------------------------------------------------------------- /test-data/efivars-0/Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-0/db-d719b2cb-3d3a-4596-a3bc-dad00e67656f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/db-d719b2cb-3d3a-4596-a3bc-dad00e67656f -------------------------------------------------------------------------------- /test-data/efivars-0/dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-0/dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f -------------------------------------------------------------------------------- /test-data/efivars-0/dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-0/dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AMD_PBS_SETUP-a339d746-f678-49b3-9fc7-54ce0f9df226 -------------------------------------------------------------------------------- /test-data/efivars-1/AMD_RAID-fe26a894-d199-47d4-8afa-070e3d54ba86: -------------------------------------------------------------------------------- 1 | cg@ -------------------------------------------------------------------------------- /test-data/efivars-1/AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AMITCGPPIVAR-a8a2093b-fefa-43c1-8e62-ce526847265e -------------------------------------------------------------------------------- /test-data/efivars-1/AMITSESetup-c811fa38-42c8-4579-a9bb-60e94eddfb34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AMITSESetup-c811fa38-42c8-4579-a9bb-60e94eddfb34 -------------------------------------------------------------------------------- /test-data/efivars-1/AOD_SETUP-5ed15dc0-edef-4161-9151-6014c4cc630c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AOD_SETUP-5ed15dc0-edef-4161-9151-6014c4cc630c -------------------------------------------------------------------------------- /test-data/efivars-1/AmdAcpiVar-79941ecd-ed36-49d0-8124-e4c31ac75cd4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AmdAcpiVar-79941ecd-ed36-49d0-8124-e4c31ac75cd4 -------------------------------------------------------------------------------- /test-data/efivars-1/AmdSetup-3a997502-647a-4c82-998e-52ef9486a247: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AmdSetup-3a997502-647a-4c82-998e-52ef9486a247 -------------------------------------------------------------------------------- /test-data/efivars-1/AmiHardwareSignatureSetupUpdateCountVar-81c76078-bfde-4368-9790-570914c01a65: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/ApSyncFlagNv-ad3f6761-f0a3-46c8-a4cb-19b70ffdb305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ApSyncFlagNv-ad3f6761-f0a3-46c8-a4cb-19b70ffdb305 -------------------------------------------------------------------------------- /test-data/efivars-1/AsbkpInfo-cb825795-feb1-4c0b-894f-cc70f8064395: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AsbkpInfo-cb825795-feb1-4c0b-894f-cc70f8064395 -------------------------------------------------------------------------------- /test-data/efivars-1/AsusExtFancard-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/AsusFanSetupFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AsusFanSetupFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/AsusHwmSetupOneof-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 | cg```$ -------------------------------------------------------------------------------- /test-data/efivars-1/AsusNodePsu-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/AsusQFanSetupData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AsusQFanSetupData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/AsusRomLayout-7186d975-2dba-4413-81a8-9f1538faef5e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AsusRomLayout-7186d975-2dba-4413-81a8-9f1538faef5e -------------------------------------------------------------------------------- /test-data/efivars-1/AsusSetupDataBackup-1111b056-c5e9-40ca-aba3-ec172533d814: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/AutoDetectData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/AutoDetectData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/BiosEventLog-4034591c-48ea-4cdc-864f-e7cb61cfd0f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/BiosEventLog-4034591c-48ea-4cdc-864f-e7cb61cfd0f2 -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0003-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0003-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0005-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0005-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Boot0006-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Boot0006-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/BootCurrent-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /test-data/efivars-1/BootFromUSB-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/BootOptionSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 | cgF&fV -------------------------------------------------------------------------------- /test-data/efivars-1/CMOSfailflag-c89dc9c7-5105-472c-a743-b1621e142b41: -------------------------------------------------------------------------------- 1 | cg -------------------------------------------------------------------------------- /test-data/efivars-1/ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/CurrentPolicy-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 | ' -------------------------------------------------------------------------------- /test-data/efivars-1/DefaultBootOrder-45cf35f6-0d6e-4d04-856a-0370a5b16f53: -------------------------------------------------------------------------------- 1 | cgF& -------------------------------------------------------------------------------- /test-data/efivars-1/DeploymentModeNv-97e8965f-c761-4f48-b6e4-9ffa9cb2a2d6: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/DownCoreStatus-29749bad-401b-4f6d-b124-cece8c590c48: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/EnWpData-cbab171f-f356-4009-baaa-6628353a0a29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/EnWpData-cbab171f-f356-4009-baaa-6628353a0a29 -------------------------------------------------------------------------------- /test-data/efivars-1/ErrOut-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/ErrOut-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/FPLayoutOrder-4db88a62-6721-47a0-9082-280b00323594: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/FTMActiveFlag-4034591c-48ea-4cdc-864f-e7cb61cfd0f2: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/FastBootOption-b540a530-6978-4da7-91cb-7207d764d262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/FastBootOption-b540a530-6978-4da7-91cb-7207d764d262 -------------------------------------------------------------------------------- /test-data/efivars-1/FirstBootFlag-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/HddSmartInfo-a6f44860-b2e8-4fda-bd45-78368994b6ae: -------------------------------------------------------------------------------- 1 | cg -------------------------------------------------------------------------------- /test-data/efivars-1/HiiDB-1b838190-4625-4ead-abc9-cd5e6af18fe0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/HiiDB-1b838190-4625-4ead-abc9-cd5e6af18fe0 -------------------------------------------------------------------------------- /test-data/efivars-1/HwErrRecSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/KEK-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/KEK-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/KEKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/KEKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_ATPSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_DriverSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_RvkSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_SiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_SkuSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/Kernel_WinSiStatus-77fa9abd-0359-4d32-bd60-28f4e78f784b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/LastBoot-b540a530-6978-4da7-91cb-7207d764d262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/LastBoot-b540a530-6978-4da7-91cb-7207d764d262 -------------------------------------------------------------------------------- /test-data/efivars-1/MaximumTableSize-4b3082a3-80c6-4d7e-9cd0-583917265df1: -------------------------------------------------------------------------------- 1 | Z -------------------------------------------------------------------------------- /test-data/efivars-1/MemoryOverwriteRequestControl-e20939be-32d4-41be-a150-897f85d49829: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/MemoryOverwriteRequestControlLock-bb983ccf-151d-40e1-a07b-4a17be168292: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/MokList-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/MokList-605dab50-e046-4300-abb6-3dd810dd8b23 -------------------------------------------------------------------------------- /test-data/efivars-1/MokListRT-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/MokListRT-605dab50-e046-4300-abb6-3dd810dd8b23 -------------------------------------------------------------------------------- /test-data/efivars-1/MokListX-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/MokListX-605dab50-e046-4300-abb6-3dd810dd8b23 -------------------------------------------------------------------------------- /test-data/efivars-1/MokListXRT-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/MokListXRT-605dab50-e046-4300-abb6-3dd810dd8b23 -------------------------------------------------------------------------------- /test-data/efivars-1/MonotonicCounter-01368881-c4ad-4b1d-b631-d57a8ec8db6b: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/MyFav-4034591c-48ea-4cdc-864f-e7cb61cfd0f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/MyFav-4034591c-48ea-4cdc-864f-e7cb61cfd0f2 -------------------------------------------------------------------------------- /test-data/efivars-1/NVRAM_Verify-15a9dd61-e4f8-4a99-80db-353b13d76490: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/NVRAM_Verify-15a9dd61-e4f8-4a99-80db-353b13d76490 -------------------------------------------------------------------------------- /test-data/efivars-1/NetworkStackVar-d1405d16-7afc-4695-bb12-41459d3695a2: -------------------------------------------------------------------------------- 1 | cgFF f` -------------------------------------------------------------------------------- /test-data/efivars-1/NvHdd0-e57abcbd-9456-4639-8f65-06aab41d840f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/NvHdd0-e57abcbd-9456-4639-8f65-06aab41d840f -------------------------------------------------------------------------------- /test-data/efivars-1/NvHdd8-e57abcbd-9456-4639-8f65-06aab41d840f: -------------------------------------------------------------------------------- 1 | M.2_3(Gray) -------------------------------------------------------------------------------- /test-data/efivars-1/OsIndications-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 | cg@ -------------------------------------------------------------------------------- /test-data/efivars-1/OsIndicationsSupported-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/OsIndicationsSupported-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/PCI_COMMON-aca9f304-21e2-4852-9875-7ff4881d67a5: -------------------------------------------------------------------------------- 1 | cgF ` -------------------------------------------------------------------------------- /test-data/efivars-1/PK-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/PK-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/PKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/PKDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/PcieSataModVar-5e9a565f-cdc0-413b-ad13-1fe8713ffdcd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/PlatformLang-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 | en-US -------------------------------------------------------------------------------- /test-data/efivars-1/PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/PreVgaInfo-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/PreVgaInfo-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/RsdpAddr-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/RsdpAddr-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/SIDSUPPORT-7d3dceee-cbce-4ea7-8709-6e552f1edbde: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/SbatLevel-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- 1 | sbat,1,2021030218 2 | -------------------------------------------------------------------------------- /test-data/efivars-1/SbatLevelRT-605dab50-e046-4300-abb6-3dd810dd8b23: -------------------------------------------------------------------------------- 1 | sbat,1,2021030218 2 | -------------------------------------------------------------------------------- /test-data/efivars-1/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/SecureBootSetup-7b59104a-c00d-4158-87ff-f04d6396a915: -------------------------------------------------------------------------------- 1 | cg```dd -------------------------------------------------------------------------------- /test-data/efivars-1/Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9 -------------------------------------------------------------------------------- /test-data/efivars-1/SetupLedData-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/SetupMode-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/SignatureSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/SignatureSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/SmbiosEntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/SmbiosEntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1 -------------------------------------------------------------------------------- /test-data/efivars-1/SmbiosScratchBuffer-4b3082a3-80c6-4d7e-9cd0-583917265df1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/SmbiosScratchBuffer-4b3082a3-80c6-4d7e-9cd0-583917265df1 -------------------------------------------------------------------------------- /test-data/efivars-1/SmbiosV3EntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/SmbiosV3EntryPointTable-4b3082a3-80c6-4d7e-9cd0-583917265df1 -------------------------------------------------------------------------------- /test-data/efivars-1/StdDefaults-4599d26f-1a11-49b8-b91f-858745cff824: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/StdDefaults-4599d26f-1a11-49b8-b91f-858745cff824 -------------------------------------------------------------------------------- /test-data/efivars-1/TPMPERBIOSFLAGS-7d3dceee-cbce-4ea7-8709-6e552f1edbde: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /test-data/efivars-1/Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/TotalNumberOfRootBridges-fb5703f5-f8a7-f401-18b4-3f108deb2612: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/TpmServFlags-7d3dceee-cbce-4ea7-8709-6e552f1edbde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/TpmServFlags-7d3dceee-cbce-4ea7-8709-6e552f1edbde -------------------------------------------------------------------------------- /test-data/efivars-1/UsbSupport-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9: -------------------------------------------------------------------------------- 1 | cg```dd`S" P%+ -------------------------------------------------------------------------------- /test-data/efivars-1/VARSTORE_OCMR_SETTINGS_NAME-c05fba7d-7a92-49e0-bcee-233b14dca803: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/VARSTORE_OCMR_SETTINGS_NAME-c05fba7d-7a92-49e0-bcee-233b14dca803 -------------------------------------------------------------------------------- /test-data/efivars-1/VendorKeys-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-data/efivars-1/WpBufAddr-cba83c4a-a5fc-48a8-b3a6-d33636166544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/WpBufAddr-cba83c4a-a5fc-48a8-b3a6-d33636166544 -------------------------------------------------------------------------------- /test-data/efivars-1/WriteOnceStatus-4b3082a3-80c6-4d7e-9cd0-583917265df1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/WriteOnceStatus-4b3082a3-80c6-4d7e-9cd0-583917265df1 -------------------------------------------------------------------------------- /test-data/efivars-1/db-d719b2cb-3d3a-4596-a3bc-dad00e67656f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/db-d719b2cb-3d3a-4596-a3bc-dad00e67656f -------------------------------------------------------------------------------- /test-data/efivars-1/dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/dbDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/efivars-1/dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/dbx-d719b2cb-3d3a-4596-a3bc-dad00e67656f -------------------------------------------------------------------------------- /test-data/efivars-1/dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/efivars-1/dbxDefault-8be4df61-93ca-11d2-aa0d-00e098032b8c -------------------------------------------------------------------------------- /test-data/grubx64.0.76.el7.1.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/grubx64.0.76.el7.1.efi -------------------------------------------------------------------------------- /test-data/grubx64.0.76.el7.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/grubx64.0.76.el7.efi -------------------------------------------------------------------------------- /test-data/grubx64.0.80.el7.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-data/grubx64.0.80.el7.efi -------------------------------------------------------------------------------- /test-load-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-load-options.c -------------------------------------------------------------------------------- /test-mock-variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-mock-variables.c -------------------------------------------------------------------------------- /test-mok-mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-mok-mirror.c -------------------------------------------------------------------------------- /test-pe-relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-pe-relocate.c -------------------------------------------------------------------------------- /test-pe-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-pe-util.c -------------------------------------------------------------------------------- /test-sbat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-sbat.c -------------------------------------------------------------------------------- /test-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test-str.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/test.c -------------------------------------------------------------------------------- /testplan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/testplan.txt -------------------------------------------------------------------------------- /tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/tpm.c -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/utils.c -------------------------------------------------------------------------------- /verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/verify.c -------------------------------------------------------------------------------- /version.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/version.c.in -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhboot/shim/HEAD/version.h --------------------------------------------------------------------------------