├── .azuredevops ├── CryptoTest.yml ├── MuDevOpsWrapper.yml ├── Ubuntu-GCC5.yml ├── Windows-VS.yml ├── pipelines │ ├── ReleaseBuild.yml │ └── template-build.yml └── scripts │ └── MuEMU.py ├── .devcontainer └── devcontainer.json ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_request.yml │ └── feature_request.yml ├── advanced-issue-labeler.yml ├── pull_request_template.md ├── release-draft-config-n-1-dev.yml ├── release-draft-config-n-1.yml ├── release-draft-config-n-dev.yml ├── release-draft-config-n.yml ├── release-draft-config.yml └── workflows │ ├── auto-approve.yml │ ├── auto-merge.yml │ ├── issue-assignment.yml │ ├── label-issues.yml │ ├── label-issues │ ├── file-paths.yml │ └── regex-pull-requests.yml │ ├── label-sync.yml │ ├── pull-request-formatting-validator.yml │ ├── release-draft.yml │ ├── scheduled-maintenance.yml │ ├── stale.yml │ └── triage-issues.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.yaml ├── .pytool └── CISettings.py ├── CommonBuildSettings.py ├── CryptoBinPkg ├── CryptoBinPkg.dec ├── CryptoBinPkg.dsc ├── Driver │ ├── Bin │ │ ├── Crypto.inc.dsc │ │ ├── Crypto.pcd.ALL.inc.dsc │ │ ├── Crypto.pcd.MINIMAL_SHA_SM3.inc.dsc │ │ ├── Crypto.pcd.SMALL_SHA_RSA.inc.dsc │ │ ├── Crypto.pcd.STANDARD.inc.dsc │ │ ├── Crypto.pcd.TINY_SHA.inc.dsc │ │ ├── CryptoDriver.BuildRules.inc.fdf │ │ ├── CryptoDriver.DXE.inc.fdf │ │ ├── CryptoDriver.PEI.inc.fdf │ │ ├── CryptoDriver.RUNTIMEDXE.inc.fdf │ │ ├── CryptoDriver.SMM.inc.fdf │ │ ├── CryptoDriver.STANDALONEMM.inc.fdf │ │ ├── CryptoDriver.STANDALONEMM_MMSUPV.inc.fdf │ │ ├── CryptoDriver.inc.dsc │ │ ├── CryptoDriverBin_ALL_Dxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_Dxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_ALL_Dxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_Dxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_Dxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_ALL_Dxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_ALL_Pei_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_Pei_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_ALL_Pei_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_Pei_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_Pei_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_ALL_Pei_RELEASE_X64.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_ALL_RuntimeDxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_ALL_Smm_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_ALL_Smm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_Smm_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_ALL_Smm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_MmSupv_DEBUG_X64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_MmSupv_RELEASE_X64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_ALL_StandaloneMm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_DEBUG_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_RELEASE_X64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_DEBUG_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_RELEASE_X64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Dxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Pei_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Smm_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Smm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_Smm_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_STANDARD_Smm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_DEBUG_X64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_RELEASE_X64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Dxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Pei_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Smm_DEBUG_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Smm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_Smm_RELEASE_IA32.inf │ │ ├── CryptoDriverBin_TINY_SHA_Smm_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_DEBUG_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_RELEASE_X64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_AARCH64.inf │ │ ├── CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_X64.inf │ │ └── CryptoPkg.ci.inc.dsc │ ├── Crypto.c │ ├── Crypto.uni │ ├── CryptoDxe.c │ ├── CryptoDxe.inf │ ├── CryptoMmSupervisorStandaloneMm.inf │ ├── CryptoPei.c │ ├── CryptoPei.inf │ ├── CryptoRuntimeDxe.inf │ ├── CryptoSmm.c │ ├── CryptoSmm.inf │ ├── CryptoStandaloneMm.c │ ├── CryptoStandaloneMm.inf │ ├── Images │ │ └── ffs_ver.jpg │ ├── Packaging │ │ ├── CryptLib.template.c │ │ ├── Crypto.template.c │ │ ├── Crypto.template.h │ │ ├── License.txt │ │ ├── crypto.order.json │ │ ├── edk2-BaseCryptoDriver.config.json │ │ └── generate_cryptodriver.py │ └── readme.md └── Plugin │ └── BundleCrypto │ ├── BundleCrypto.py │ └── BundleCrypto_plug_in.json ├── LICENSE.txt ├── MultiFlavorBuild.py ├── OpensslPkg ├── Library │ ├── BaseCryptLib │ │ ├── BaseCryptLib.inf │ │ ├── BaseCryptLib.uni │ │ ├── Bn │ │ │ ├── CryptBn.c │ │ │ └── CryptBnNull.c │ │ ├── Cipher │ │ │ ├── CryptAeadAesGcm.c │ │ │ ├── CryptAeadAesGcmNull.c │ │ │ ├── CryptAes.c │ │ │ └── CryptAesNull.c │ │ ├── Hash │ │ │ ├── CryptCShake256.c │ │ │ ├── CryptDispatchApDxe.c │ │ │ ├── CryptDispatchApMm.c │ │ │ ├── CryptDispatchApPei.c │ │ │ ├── CryptMd5.c │ │ │ ├── CryptMd5Null.c │ │ │ ├── CryptParallelHash.c │ │ │ ├── CryptParallelHash.h │ │ │ ├── CryptParallelHashNull.c │ │ │ ├── CryptSha1.c │ │ │ ├── CryptSha1Null.c │ │ │ ├── CryptSha256.c │ │ │ ├── CryptSha256Null.c │ │ │ ├── CryptSha3.c │ │ │ ├── CryptSha512.c │ │ │ ├── CryptSha512Null.c │ │ │ ├── CryptSm3.c │ │ │ ├── CryptSm3Null.c │ │ │ └── CryptXkcp.c │ │ ├── Hmac │ │ │ ├── CryptHmac.c │ │ │ └── CryptHmacNull.c │ │ ├── InternalCryptLib.h │ │ ├── Kdf │ │ │ ├── CryptHkdf.c │ │ │ └── CryptHkdfNull.c │ │ ├── PeiCryptLib.inf │ │ ├── PeiCryptLib.uni │ │ ├── Pem │ │ │ ├── CryptPem.c │ │ │ └── CryptPemNull.c │ │ ├── Pk │ │ │ ├── CryptAuthenticode.c │ │ │ ├── CryptAuthenticodeNull.c │ │ │ ├── CryptDh.c │ │ │ ├── CryptDhNull.c │ │ │ ├── CryptEc.c │ │ │ ├── CryptEcNull.c │ │ │ ├── CryptPkcs1Oaep.c │ │ │ ├── CryptPkcs1OaepNull.c │ │ │ ├── CryptPkcs5Pbkdf2.c │ │ │ ├── CryptPkcs5Pbkdf2Null.c │ │ │ ├── CryptPkcs7Encrypt.c │ │ │ ├── CryptPkcs7EncryptNull.c │ │ │ ├── CryptPkcs7Sign.c │ │ │ ├── CryptPkcs7SignNull.c │ │ │ ├── CryptPkcs7VerifyBase.c │ │ │ ├── CryptPkcs7VerifyCommon.c │ │ │ ├── CryptPkcs7VerifyEku.c │ │ │ ├── CryptPkcs7VerifyEkuNull.c │ │ │ ├── CryptPkcs7VerifyEkuRuntime.c │ │ │ ├── CryptPkcs7VerifyNull.c │ │ │ ├── CryptPkcs7VerifyRuntime.c │ │ │ ├── CryptRsaBasic.c │ │ │ ├── CryptRsaBasicNull.c │ │ │ ├── CryptRsaExt.c │ │ │ ├── CryptRsaExtNull.c │ │ │ ├── CryptRsaPss.c │ │ │ ├── CryptRsaPssNull.c │ │ │ ├── CryptRsaPssSign.c │ │ │ ├── CryptRsaPssSignNull.c │ │ │ ├── CryptTs.c │ │ │ ├── CryptTsNull.c │ │ │ ├── CryptX509.c │ │ │ └── CryptX509Null.c │ │ ├── Rand │ │ │ ├── CryptRand.c │ │ │ ├── CryptRandNull.c │ │ │ └── CryptRandTsc.c │ │ ├── RuntimeCryptLib.inf │ │ ├── RuntimeCryptLib.uni │ │ ├── SecCryptLib.inf │ │ ├── SecCryptLib.uni │ │ ├── SmmCryptLib.inf │ │ ├── SmmCryptLib.uni │ │ ├── SysCall │ │ │ ├── BaseMemAllocation.c │ │ │ ├── ConstantTimeClock.c │ │ │ ├── CrtWrapper.c │ │ │ ├── RuntimeMemAllocation.c │ │ │ ├── TimerWrapper.c │ │ │ └── UnitTestHostCrtWrapper.c │ │ └── UnitTestHostBaseCryptLib.inf │ ├── HmacSha1Lib │ │ ├── CryptHmacSha1.c │ │ ├── HmacSha1Lib.inf │ │ └── HmacSha1Lib.uni │ ├── Include │ │ ├── CrtLibSupport.h │ │ ├── arpa │ │ │ ├── inet.h │ │ │ └── nameser.h │ │ ├── assert.h │ │ ├── crypto │ │ │ └── dso_conf.h │ │ ├── ctype.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── intrin.h │ │ ├── limits.h │ │ ├── memory.h │ │ ├── netinet │ │ │ └── in.h │ │ ├── openssl │ │ │ └── opensslconf.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── param.h │ │ │ ├── shm.h │ │ │ ├── socket.h │ │ │ ├── syscall.h │ │ │ ├── time.h │ │ │ ├── types.h │ │ │ └── utsname.h │ │ ├── syslog.h │ │ ├── time.h │ │ └── unistd.h │ ├── IntrinsicLib │ │ ├── BaseIntrinsicLib.uni │ │ ├── CopyMem.c │ │ ├── Ia32 │ │ │ ├── MathFtol.c │ │ │ ├── MathLShiftS64.c │ │ │ ├── MathLShiftS64.nasm │ │ │ ├── MathLlmul.asm │ │ │ ├── MathLlshr.asm │ │ │ ├── MathRShiftU64.c │ │ │ └── MathRShiftU64.nasm │ │ ├── IntrinsicLib.inf │ │ └── MemoryIntrinsics.c │ ├── OpensslLib │ │ ├── EcSm2Null.c │ │ ├── IA32 │ │ │ └── crypto │ │ │ │ ├── aes │ │ │ │ ├── aesni-x86.nasm │ │ │ │ └── vpaes-x86.nasm │ │ │ │ ├── modes │ │ │ │ └── ghash-x86.nasm │ │ │ │ ├── sha │ │ │ │ ├── sha1-586.nasm │ │ │ │ ├── sha256-586.nasm │ │ │ │ └── sha512-586.nasm │ │ │ │ └── x86cpuid.nasm │ │ ├── IA32Gcc │ │ │ └── crypto │ │ │ │ ├── aes │ │ │ │ ├── aesni-x86.S │ │ │ │ └── vpaes-x86.S │ │ │ │ ├── modes │ │ │ │ └── ghash-x86.S │ │ │ │ ├── sha │ │ │ │ ├── sha1-586.S │ │ │ │ ├── sha256-586.S │ │ │ │ └── sha512-586.S │ │ │ │ └── x86cpuid.S │ │ ├── OpenSSL-HOWTO.txt │ │ ├── OpensslLib.inf │ │ ├── OpensslLib.uni │ │ ├── OpensslLibAccel.inf │ │ ├── OpensslLibAccel.uni │ │ ├── OpensslLibConstructor.c │ │ ├── OpensslLibCrypto.inf │ │ ├── OpensslLibCrypto.uni │ │ ├── OpensslLibFull.inf │ │ ├── OpensslLibFull.uni │ │ ├── OpensslLibFullAccel.inf │ │ ├── OpensslLibFullAccel.uni │ │ ├── SslNull.c │ │ ├── UefiAsm.conf │ │ ├── X64 │ │ │ ├── ApiHooks.c │ │ │ └── crypto │ │ │ │ ├── aes │ │ │ │ ├── aesni-mb-x86_64.nasm │ │ │ │ ├── aesni-sha1-x86_64.nasm │ │ │ │ ├── aesni-sha256-x86_64.nasm │ │ │ │ ├── aesni-x86_64.nasm │ │ │ │ └── vpaes-x86_64.nasm │ │ │ │ ├── modes │ │ │ │ ├── aesni-gcm-x86_64.nasm │ │ │ │ └── ghash-x86_64.nasm │ │ │ │ ├── sha │ │ │ │ ├── sha1-mb-x86_64.nasm │ │ │ │ ├── sha1-x86_64.nasm │ │ │ │ ├── sha256-mb-x86_64.nasm │ │ │ │ ├── sha256-x86_64.nasm │ │ │ │ └── sha512-x86_64.nasm │ │ │ │ └── x86_64cpuid.nasm │ │ ├── X64Gcc │ │ │ └── crypto │ │ │ │ ├── aes │ │ │ │ ├── aesni-mb-x86_64.S │ │ │ │ ├── aesni-sha1-x86_64.S │ │ │ │ ├── aesni-sha256-x86_64.S │ │ │ │ ├── aesni-x86_64.S │ │ │ │ └── vpaes-x86_64.S │ │ │ │ ├── modes │ │ │ │ ├── aesni-gcm-x86_64.S │ │ │ │ └── ghash-x86_64.S │ │ │ │ ├── sha │ │ │ │ ├── sha1-mb-x86_64.S │ │ │ │ ├── sha1-x86_64.S │ │ │ │ ├── sha256-mb-x86_64.S │ │ │ │ ├── sha256-x86_64.S │ │ │ │ └── sha512-x86_64.S │ │ │ │ └── x86_64cpuid.S │ │ ├── buildinf.h │ │ ├── ossl_store.c │ │ ├── process_files.pl │ │ ├── rand_pool.c │ │ └── readme.md │ └── TlsLib │ │ ├── InternalTlsLib.h │ │ ├── SysCall │ │ └── inet_pton.c │ │ ├── TlsConfig.c │ │ ├── TlsInit.c │ │ ├── TlsLib.inf │ │ ├── TlsLib.uni │ │ └── TlsProcess.c ├── OpensslPkg.ci.yaml ├── OpensslPkg.dec ├── OpensslPkg.dsc └── Private │ └── Library │ ├── IntrinsicLib.h │ └── OpensslLib.h ├── Readme.rst ├── SECURITY.md ├── SingleFlavorBuild.py └── pip-requirements.txt /.azuredevops/CryptoTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/CryptoTest.yml -------------------------------------------------------------------------------- /.azuredevops/MuDevOpsWrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/MuDevOpsWrapper.yml -------------------------------------------------------------------------------- /.azuredevops/Ubuntu-GCC5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/Ubuntu-GCC5.yml -------------------------------------------------------------------------------- /.azuredevops/Windows-VS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/Windows-VS.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/ReleaseBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/pipelines/ReleaseBuild.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/template-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/pipelines/template-build.yml -------------------------------------------------------------------------------- /.azuredevops/scripts/MuEMU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.azuredevops/scripts/MuEMU.py -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-draft-config-n-1-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/release-draft-config-n-1-dev.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/release-draft-config-n-1.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/release-draft-config-n-dev.yml -------------------------------------------------------------------------------- /.github/release-draft-config-n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/release-draft-config-n.yml -------------------------------------------------------------------------------- /.github/release-draft-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/release-draft-config.yml -------------------------------------------------------------------------------- /.github/workflows/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/auto-approve.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/issue-assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/issue-assignment.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/label-issues.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues/file-paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/label-issues/file-paths.yml -------------------------------------------------------------------------------- /.github/workflows/label-issues/regex-pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/label-issues/regex-pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/label-sync.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-formatting-validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/pull-request-formatting-validator.yml -------------------------------------------------------------------------------- /.github/workflows/release-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/release-draft.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/scheduled-maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/triage-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.github/workflows/triage-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.gitmodules -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pytool/CISettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/.pytool/CISettings.py -------------------------------------------------------------------------------- /CommonBuildSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CommonBuildSettings.py -------------------------------------------------------------------------------- /CryptoBinPkg/CryptoBinPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/CryptoBinPkg.dec -------------------------------------------------------------------------------- /CryptoBinPkg/CryptoBinPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/CryptoBinPkg.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.pcd.ALL.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.pcd.ALL.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.pcd.MINIMAL_SHA_SM3.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.pcd.MINIMAL_SHA_SM3.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.pcd.SMALL_SHA_RSA.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.pcd.SMALL_SHA_RSA.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.pcd.STANDARD.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.pcd.STANDARD.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/Crypto.pcd.TINY_SHA.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/Crypto.pcd.TINY_SHA.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.BuildRules.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.BuildRules.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.DXE.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.DXE.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.PEI.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.PEI.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.RUNTIMEDXE.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.RUNTIMEDXE.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.SMM.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.SMM.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.STANDALONEMM.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.STANDALONEMM.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.STANDALONEMM_MMSUPV.inc.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.STANDALONEMM_MMSUPV.inc.fdf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriver.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriver.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Dxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Pei_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_RuntimeDxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_Smm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_MmSupv_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_MmSupv_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_MmSupv_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_MmSupv_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_ALL_StandaloneMm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Dxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Pei_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_RuntimeDxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_Smm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_MmSupv_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_MINIMAL_SHA_SM3_StandaloneMm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Dxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Pei_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_RuntimeDxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_Smm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_MmSupv_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_SMALL_SHA_RSA_StandaloneMm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Dxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Pei_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_RuntimeDxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_Smm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_MmSupv_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_STANDARD_StandaloneMm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Dxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Pei_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_RuntimeDxe_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_DEBUG_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_DEBUG_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_RELEASE_IA32.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_RELEASE_IA32.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_Smm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_DEBUG_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_DEBUG_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_MmSupv_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_AARCH64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_AARCH64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_X64.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoDriverBin_TINY_SHA_StandaloneMm_RELEASE_X64.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Bin/CryptoPkg.ci.inc.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Bin/CryptoPkg.ci.inc.dsc -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Crypto.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Crypto.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Crypto.uni -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoDxe.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoDxe.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoMmSupervisorStandaloneMm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoMmSupervisorStandaloneMm.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoPei.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoPei.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoPei.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoRuntimeDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoRuntimeDxe.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoSmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoSmm.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoSmm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoSmm.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoStandaloneMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoStandaloneMm.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/CryptoStandaloneMm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/CryptoStandaloneMm.inf -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Images/ffs_ver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Images/ffs_ver.jpg -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/CryptLib.template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/CryptLib.template.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/Crypto.template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/Crypto.template.c -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/Crypto.template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/Crypto.template.h -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/License.txt -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/crypto.order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/crypto.order.json -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/edk2-BaseCryptoDriver.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/edk2-BaseCryptoDriver.config.json -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/Packaging/generate_cryptodriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/Packaging/generate_cryptodriver.py -------------------------------------------------------------------------------- /CryptoBinPkg/Driver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Driver/readme.md -------------------------------------------------------------------------------- /CryptoBinPkg/Plugin/BundleCrypto/BundleCrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Plugin/BundleCrypto/BundleCrypto.py -------------------------------------------------------------------------------- /CryptoBinPkg/Plugin/BundleCrypto/BundleCrypto_plug_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/CryptoBinPkg/Plugin/BundleCrypto/BundleCrypto_plug_in.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MultiFlavorBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/MultiFlavorBuild.py -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/BaseCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/BaseCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/BaseCryptLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/BaseCryptLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Bn/CryptBn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Bn/CryptBn.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Bn/CryptBnNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Bn/CryptBnNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Cipher/CryptAeadAesGcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Cipher/CryptAeadAesGcm.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Cipher/CryptAeadAesGcmNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Cipher/CryptAeadAesGcmNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Cipher/CryptAes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Cipher/CryptAes.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Cipher/CryptAesNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Cipher/CryptAesNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptCShake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptCShake256.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApDxe.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApMm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApMm.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptDispatchApPei.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptMd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptMd5.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptMd5Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptMd5Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHash.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHash.h -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHashNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptParallelHashNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha1.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha1Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha1Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha256.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha256Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha256Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha3.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha512.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSha512Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSha512Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSm3.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptSm3Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptSm3Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hash/CryptXkcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hash/CryptXkcp.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hmac/CryptHmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hmac/CryptHmac.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Hmac/CryptHmacNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Hmac/CryptHmacNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/InternalCryptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/InternalCryptLib.h -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Kdf/CryptHkdf.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Kdf/CryptHkdfNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Kdf/CryptHkdfNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/PeiCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/PeiCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/PeiCryptLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/PeiCryptLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pem/CryptPem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pem/CryptPem.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pem/CryptPemNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pem/CryptPemNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptAuthenticode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptAuthenticode.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptAuthenticodeNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptAuthenticodeNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptDh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptDh.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptDhNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptDhNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptEc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptEc.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptEcNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptEcNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs1Oaep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs1Oaep.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs1OaepNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs1OaepNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs5Pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs5Pbkdf2.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs5Pbkdf2Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs5Pbkdf2Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7Encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7Encrypt.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7EncryptNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7EncryptNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7Sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7Sign.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7SignNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7SignNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyBase.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyCommon.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEku.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEkuNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEkuNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEkuRuntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyEkuRuntime.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyRuntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptPkcs7VerifyRuntime.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaBasic.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaBasicNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaBasicNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaExt.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaExtNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaExtNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPss.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssSign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssSign.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssSignNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptRsaPssSignNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptTs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptTs.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptTsNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptTsNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptX509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptX509.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Pk/CryptX509Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Pk/CryptX509Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Rand/CryptRand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Rand/CryptRand.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Rand/CryptRandNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Rand/CryptRandNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/Rand/CryptRandTsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/Rand/CryptRandTsc.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/RuntimeCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/RuntimeCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/RuntimeCryptLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/RuntimeCryptLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SecCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SecCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SecCryptLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SecCryptLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SmmCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SmmCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SmmCryptLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SmmCryptLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/BaseMemAllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/BaseMemAllocation.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/ConstantTimeClock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/ConstantTimeClock.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/RuntimeMemAllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/RuntimeMemAllocation.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/TimerWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/TimerWrapper.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/SysCall/UnitTestHostCrtWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/SysCall/UnitTestHostCrtWrapper.c -------------------------------------------------------------------------------- /OpensslPkg/Library/BaseCryptLib/UnitTestHostBaseCryptLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/BaseCryptLib/UnitTestHostBaseCryptLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/HmacSha1Lib/CryptHmacSha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/HmacSha1Lib/CryptHmacSha1.c -------------------------------------------------------------------------------- /OpensslPkg/Library/HmacSha1Lib/HmacSha1Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/HmacSha1Lib/HmacSha1Lib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/HmacSha1Lib/HmacSha1Lib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/HmacSha1Lib/HmacSha1Lib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/CrtLibSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/CrtLibSupport.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/arpa/inet.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/arpa/nameser.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/assert.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/crypto/dso_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/crypto/dso_conf.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/ctype.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/errno.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/fcntl.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/intrin.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/limits.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/memory.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/netinet/in.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/openssl/opensslconf.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/stdarg.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/stddef.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/stdio.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/stdlib.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/string.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/strings.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/param.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/shm.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/socket.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/syscall.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/time.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/types.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/sys/utsname.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/syslog.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/time.h -------------------------------------------------------------------------------- /OpensslPkg/Library/Include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/Include/unistd.h -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/CopyMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/CopyMem.c -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathFtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathFtol.c -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.c -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathLlmul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathLlmul.asm -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathLlshr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathLlshr.asm -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/IntrinsicLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/IntrinsicLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/IntrinsicLib/MemoryIntrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/IntrinsicLib/MemoryIntrinsics.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/EcSm2Null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/EcSm2Null.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/aes/aesni-x86.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/aes/aesni-x86.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/aes/vpaes-x86.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/aes/vpaes-x86.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/modes/ghash-x86.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/modes/ghash-x86.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha1-586.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha1-586.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha256-586.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha256-586.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha512-586.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/sha/sha512-586.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32/crypto/x86cpuid.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32/crypto/x86cpuid.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/aes/aesni-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/aes/aesni-x86.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/aes/vpaes-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/aes/vpaes-x86.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/modes/ghash-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/modes/ghash-x86.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha1-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha1-586.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha256-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha256-586.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha512-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/sha/sha512-586.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/x86cpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/IA32Gcc/crypto/x86cpuid.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpenSSL-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpenSSL-HOWTO.txt -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibAccel.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibAccel.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibAccel.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibAccel.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibConstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibConstructor.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibCrypto.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibCrypto.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibCrypto.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibCrypto.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibFull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibFull.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibFull.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibFull.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibFullAccel.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibFullAccel.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/OpensslLibFullAccel.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/OpensslLibFullAccel.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/SslNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/SslNull.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/UefiAsm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/UefiAsm.conf -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/ApiHooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/ApiHooks.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-mb-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-mb-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-sha1-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-sha1-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-sha256-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-sha256-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/aes/aesni-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/aes/vpaes-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/aes/vpaes-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/modes/aesni-gcm-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/modes/aesni-gcm-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/modes/ghash-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/modes/ghash-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha1-mb-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha1-mb-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha1-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha1-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha256-mb-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha256-mb-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha256-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha256-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha512-x86_64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/sha/sha512-x86_64.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64/crypto/x86_64cpuid.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64/crypto/x86_64cpuid.nasm -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-mb-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-sha1-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-sha1-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-sha256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-sha256-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/aesni-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/vpaes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/aes/vpaes-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/modes/aesni-gcm-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/modes/aesni-gcm-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/modes/ghash-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/modes/ghash-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha1-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha1-mb-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha1-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha1-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha256-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha256-mb-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha256-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha512-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/sha/sha512-x86_64.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/X64Gcc/crypto/x86_64cpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/X64Gcc/crypto/x86_64cpuid.S -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/buildinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/buildinf.h -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/ossl_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/ossl_store.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/process_files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/process_files.pl -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/rand_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/rand_pool.c -------------------------------------------------------------------------------- /OpensslPkg/Library/OpensslLib/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/OpensslLib/readme.md -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/InternalTlsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/InternalTlsLib.h -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/SysCall/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/SysCall/inet_pton.c -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/TlsConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/TlsConfig.c -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/TlsInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/TlsInit.c -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/TlsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/TlsLib.inf -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/TlsLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/TlsLib.uni -------------------------------------------------------------------------------- /OpensslPkg/Library/TlsLib/TlsProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Library/TlsLib/TlsProcess.c -------------------------------------------------------------------------------- /OpensslPkg/OpensslPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/OpensslPkg.ci.yaml -------------------------------------------------------------------------------- /OpensslPkg/OpensslPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/OpensslPkg.dec -------------------------------------------------------------------------------- /OpensslPkg/OpensslPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/OpensslPkg.dsc -------------------------------------------------------------------------------- /OpensslPkg/Private/Library/IntrinsicLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Private/Library/IntrinsicLib.h -------------------------------------------------------------------------------- /OpensslPkg/Private/Library/OpensslLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/OpensslPkg/Private/Library/OpensslLib.h -------------------------------------------------------------------------------- /Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/Readme.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SingleFlavorBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/SingleFlavorBuild.py -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/mu_crypto_release/HEAD/pip-requirements.txt --------------------------------------------------------------------------------