From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id A913B941762 for ; Sat, 2 Sep 2023 14:16:50 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=sFx2cmCSkV0QNY9ZVUdLjoBkOtaOB+Fr5eZsUHmGHxs=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1693664209; v=1; b=Fd/LW+4LGOguc/OHxKq2/bDT1P32SaQySKK4t6jXSC2C55T6Kj2cEjkltBj8zEWk4B3KJIEV a84GGaEf9ixpzLBNrHNWYwvzbQPWQUpK0+Ybw074LveLjJITXQ0N2cb/lRD/epzv22kOAy8Cygt VOs6kyvvR5R3YYRpOqqGnVpw= X-Received: by 127.0.0.2 with SMTP id gCfZYY7687511x2AV86MVdMR; Sat, 02 Sep 2023 07:16:49 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web11.8769.1693664196705429436 for ; Sat, 02 Sep 2023 07:16:49 -0700 X-IronPort-AV: E=McAfee;i="6600,9927,10821"; a="440346279" X-IronPort-AV: E=Sophos;i="6.02,222,1688454000"; d="scan'208";a="440346279" X-Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Sep 2023 07:16:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10821"; a="805769487" X-IronPort-AV: E=Sophos;i="6.02,222,1688454000"; d="scan'208";a="805769487" X-Received: from shwdejointd777.ccr.corp.intel.com ([10.239.58.116]) by fmsmga008.fm.intel.com with ESMTP; 02 Sep 2023 07:16:47 -0700 From: "Wenxing Hou" To: devel@edk2.groups.io Cc: Jiewen Yao , Yi Li , Xiaoyu Lu , Guomin Jiang Subject: [edk2-devel] [PATCH v2 10/10] CryptoPkg: Add basic Readme for BaseCryptLibMbedTls Date: Sat, 2 Sep 2023 22:16:27 +0800 Message-Id: <20230902141627.3178-11-wenxing.hou@intel.com> In-Reply-To: <20230902141627.3178-1-wenxing.hou@intel.com> References: <20230902141627.3178-1-wenxing.hou@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,wenxing.hou@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: PRj3R5o6TR2bndjdSUsUEBfLx7686176AA= Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b="Fd/LW+4L"; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Update Readme for BaseCryptLibMbedTls. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D4177 Cc: Jiewen Yao Cc: Yi Li Cc: Xiaoyu Lu Cc: Guomin Jiang Signed-off-by: Wenxing Hou --- CryptoPkg/Readme.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/CryptoPkg/Readme.md b/CryptoPkg/Readme.md index 284a16f299..c808a5d241 100644 --- a/CryptoPkg/Readme.md +++ b/CryptoPkg/Readme.md @@ -3,7 +3,8 @@ This package provides cryptographic services that are used to implement fi= rmware=0D features such as UEFI Secure Boot, Measured Boot, firmware image authentic= ation,=0D and network boot. The cryptographic service implementation in this package= uses=0D -services from the [OpenSSL](https://www.openssl.org/) project.=0D +services from the [OpenSSL](https://www.openssl.org/) project and=0D +[MbedTLS](https://www.trustedfirmware.org/projects/mbed-tls/) project.=0D =0D EDK II firmware modules/libraries that requires the use of cryptographic=0D services can either statically link all the required services, or the EDK = II=0D @@ -18,14 +19,19 @@ provides the smallest overall firmware overhead. =0D # Public Library Classes=0D =0D -* **BaseCryptLib** - Provides library functions for cryptographic primitiv= es.=0D +* **BaseCryptLib** - Provides library functions based on OpenSSL for=0D + cryptographic primitives.=0D +* **BaseCryptLib** - Provides library functions based on MbedTLS for=0D + cryptographic primitives.=0D * **TlsLib** - Provides TLS library functions for EFI TLS protocol.= =0D * **HashApiLib** - Provides Unified API for different hash implementatio= ns.=0D =0D # Private Library Classes=0D =0D * **OpensslLib** - Provides library functions from the openssl project.= =0D -* **IntrinsicLib** - Provides C runtime library (CRT) required by openssl.= =0D +* **MbedTlsLib** - Provides library functions from the mbedtls project.= =0D +* **IntrinsicLib** - Provides C runtime library (CRT) required by openssl= =0D + and mbedtls.=0D =0D # Private Protocols and PPIs=0D =0D --=20 2.26.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#108245): https://edk2.groups.io/g/devel/message/108245 Mute This Topic: https://groups.io/mt/101114036/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-