From: "PierreGondois" <pierre.gondois@arm.com>
To: "Yao, Jiewen" <jiewen.yao@intel.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: Sami Mujawar <sami.mujawar@arm.com>,
Leif Lindholm <quic_llindhol@quicinc.com>,
Ard Biesheuvel <ardb+tianocore@kernel.org>,
Rebecca Cran <rebecca@bsdio.com>,
"Kinney, Michael D" <michael.d.kinney@intel.com>,
"Gao, Liming" <gaoliming@byosoft.com.cn>,
Edward Pickup <Edward.Pickup@arm.com>
Subject: Re: [edk2-devel] [PATCH RESEND v1 5/7] MdePkg/AesLib: Definition for AES library class interface
Date: Fri, 1 Jul 2022 11:48:51 +0200 [thread overview]
Message-ID: <499390b1-0916-2f25-3831-b1e2d406bc49@arm.com> (raw)
In-Reply-To: <MW4PR11MB587244DCD02F1055C8BBA96C8CBA9@MW4PR11MB5872.namprd11.prod.outlook.com>
Hello Yao,
On 6/30/22 02:29, Yao, Jiewen wrote:
> Hi
> 1) Would you please educate me, how this library be used in cryptolib? - https://github.com/tianocore/edk2/blob/master/CryptoPkg/Include/Library/BaseCryptLib.h#L1091
>
> Currently, we have AES_CBC. We are going to add AES_GCM in near future.
>
We are currently looking forward to do that. Just to be sure, the
AesInit() function pointed above is for AesCbcEncrypt(), which can
encrypt a buffer.
The AesInitCtx() in this file is for a single block encryption. So
there should be nothing preventing from implementing CBC (or other)
encryption based on the Aes block encryption added by this patch-set.
> 2) For Intel AES_NI, we added support in OpensslLib directly - https://github.com/tianocore/edk2/tree/master/CryptoPkg/Library/OpensslLib/X64, can ARM use the similar model?
>
We also need to have a look at this. However this might be a bit more
difficult if we want to avoid Openssl license.
> 3) Do you have chance to take a look if this interface is good enough to implement Intel AES_NI instruction?
>
We have not looked at the AES_NI instruction, but the interface
definition should be generic enough to accept any implementation.
Please tell us if you think this requires modification.
Regards,
Pierre
> Thank you
> Yao Jiewen
>
>> -----Original Message-----
>> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of
>> PierreGondois
>> Sent: Thursday, June 30, 2022 3:14 AM
>> To: devel@edk2.groups.io
>> Cc: Sami Mujawar <sami.mujawar@arm.com>; Leif Lindholm
>> <quic_llindhol@quicinc.com>; Ard Biesheuvel <ardb+tianocore@kernel.org>;
>> Rebecca Cran <rebecca@bsdio.com>; Kinney, Michael D
>> <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>;
>> Edward Pickup <Edward.Pickup@arm.com>
>> Subject: [edk2-devel] [PATCH RESEND v1 5/7] MdePkg/AesLib: Definition for AES
>> library class interface
>>
>> From: Pierre Gondois <Pierre.Gondois@arm.com>
>>
>> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3970
>>
>> The FIPS PUB 197: "Advanced Encryption Standard (AES)"
>> details the AES algorithm. Add a library to allow
>> different architecture specific implementations.
>>
>> Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
>> ---
>> MdePkg/Include/Library/AesLib.h | 104 ++++++++++++++++++++++++++++++++
>> MdePkg/MdePkg.dec | 4 ++
>> 2 files changed, 108 insertions(+)
>> create mode 100644 MdePkg/Include/Library/AesLib.h
>>
>> diff --git a/MdePkg/Include/Library/AesLib.h b/MdePkg/Include/Library/AesLib.h
>> new file mode 100644
>> index 000000000000..bc3408bb249b
>> --- /dev/null
>> +++ b/MdePkg/Include/Library/AesLib.h
>> @@ -0,0 +1,104 @@
>> +/** @file
>> + AES library.
>> +
>> + Copyright (c) 2022, Arm Limited. All rights reserved.<BR>
>> +
>> + SPDX-License-Identifier: BSD-2-Clause-Patent
>> +
>> + @par Reference(s):
>> + - FIPS 197 November 26, 2001:
>> + Specification for the ADVANCED ENCRYPTION STANDARD (AES)
>> +**/
>> +
>> +#ifndef AES_LIB_H_
>> +#define AES_LIB_H_
>> +
>> +/// Key size in bytes.
>> +#define AES_KEY_SIZE_128 16
>> +#define AES_KEY_SIZE_192 24
>> +#define AES_KEY_SIZE_256 32
>> +#define AES_BLOCK_SIZE 16
>> +
>> +/*
>> + The Key Expansion generates a total of Nb (Nr + 1) words with:
>> + - Nb = 4:
>> + Number of columns (32-bit words) comprising the State
>> + - Nr = 10, 12, or 14:
>> + Number of rounds.
>> + */
>> +#define AES_MAX_KEYLENGTH_U32 (4 * (14 + 1))
>> +
>> +/** A context holding information to for AES encryption/decryption.
>> + */
>> +typedef struct {
>> + /// Expanded encryption key.
>> + UINT32 ExpEncKey[AES_MAX_KEYLENGTH_U32];
>> + /// Expanded decryption key.
>> + UINT32 ExpDecKey[AES_MAX_KEYLENGTH_U32];
>> + /// Key size, in bytes.
>> + /// Must be one of 16|24|32.
>> + UINT32 KeySize;
>> +} AES_CTX;
>> +
>> +/** Encrypt an AES block.
>> +
>> + Buffers are little-endian. Overlapping is not checked.
>> +
>> + @param [in] AesCtx AES context.
>> + AesCtx is initialized with AesInitCtx ().
>> + @param [in] InBlock Input Block. The block to cipher.
>> + @param [out] OutBlock Output Block. The ciphered block.
>> +
>> + @retval RETURN_SUCCESS Success.
>> + @retval RETURN_INVALID_PARAMETER Invalid parameter.
>> + @retval RETURN_UNSUPPORTED Unsupported.
>> +**/
>> +RETURN_STATUS
>> +EFIAPI
>> +AesEncrypt (
>> + IN AES_CTX *AesCtx,
>> + IN UINT8 CONST *InBlock,
>> + OUT UINT8 *OutBlock
>> + );
>> +
>> +/** Decrypt an AES block.
>> +
>> + Buffers are little-endian. Overlapping is not checked.
>> +
>> + @param [in] AesCtx AES context.
>> + AesCtx is initialized with AesInitCtx ().
>> + @param [in] InBlock Input Block. The block to de-cipher.
>> + @param [out] OutBlock Output Block. The de-ciphered block.
>> +
>> + @retval RETURN_SUCCESS Success.
>> + @retval RETURN_INVALID_PARAMETER Invalid parameter.
>> + @retval RETURN_UNSUPPORTED Unsupported.
>> +**/
>> +RETURN_STATUS
>> +EFIAPI
>> +AesDecrypt (
>> + IN AES_CTX *AesCtx,
>> + IN UINT8 CONST *InBlock,
>> + OUT UINT8 *OutBlock
>> + );
>> +
>> +/** Initialize an AES_CTX structure.
>> +
>> + @param [in] Key AES key. Buffer of KeySize bytes.
>> + The buffer is little endian.
>> + @param [in] KeySize Size of the key. Must be one of 128|192|256.
>> + @param [in, out] AesCtx AES context to initialize.
>> +
>> + @retval RETURN_SUCCESS Success.
>> + @retval RETURN_INVALID_PARAMETER Invalid parameter.
>> + @retval RETURN_UNSUPPORTED Unsupported.
>> +**/
>> +RETURN_STATUS
>> +EFIAPI
>> +AesInitCtx (
>> + IN UINT8 *Key,
>> + IN UINT32 KeySize,
>> + IN OUT AES_CTX *AesCtx
>> + );
>> +
>> +#endif // AES_LIB_H_
>> diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec
>> index 7ff26e22f915..078ae9323ba6 100644
>> --- a/MdePkg/MdePkg.dec
>> +++ b/MdePkg/MdePkg.dec
>> @@ -280,6 +280,10 @@ [LibraryClasses]
>> #
>> TrngLib|Include/Library/TrngLib.h
>>
>> + ## @libraryclass Provides AES encryption/decryption services.
>> + #
>> + AesLib|Include/Library/AesLib.h
>> +
>> [LibraryClasses.IA32, LibraryClasses.X64, LibraryClasses.AARCH64]
>> ## @libraryclass Provides services to generate random number.
>> #
>> --
>> 2.25.1
>>
>>
>>
>> -=-=-=-=-=-=
>> Groups.io Links: You receive all messages sent to this group.
>> View/Reply Online (#90895): https://edk2.groups.io/g/devel/message/90895
>> Mute This Topic: https://groups.io/mt/92072168/1772286
>> Group Owner: devel+owner@edk2.groups.io
>> Unsubscribe: https://edk2.groups.io/g/devel/unsub [jiewen.yao@intel.com]
>> -=-=-=-=-=-=
>>
>
next prev parent reply other threads:[~2022-07-01 9:49 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-29 19:13 [PATCH RESEND v1 0/7] Add AesLib and ArmAesLib PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 1/7] ArmPkg: Update Armpkg.ci.yaml PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 2/7] ArmPkg/ArmDisassemblerLib: Replace RotateRight() PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 3/7] ArmPkg/ArmLib: Add ArmReadIdIsaR5() helper PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 4/7] ArmPkg/ArmLib: Add ArmHasAesExt() PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 5/7] MdePkg/AesLib: Definition for AES library class interface PierreGondois
2022-06-30 0:29 ` [edk2-devel] " Yao, Jiewen
2022-07-01 9:48 ` PierreGondois [this message]
2022-07-01 11:55 ` Yao, Jiewen
2022-07-01 13:58 ` PierreGondois
2022-07-01 14:40 ` Yao, Jiewen
2022-07-01 15:22 ` PierreGondois
2022-07-01 16:11 ` Yao, Jiewen
2022-07-04 13:16 ` PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 6/7] MdePkg/AesLib: Add NULL instance of AesLib PierreGondois
2022-06-29 19:13 ` [PATCH RESEND v1 7/7] ArmPkg/ArmAesLib: Add ArmAesLib PierreGondois
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=499390b1-0916-2f25-3831-b1e2d406bc49@arm.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox