From 753f2fbcc5420d00cacbed85bade463ef80a9f8b Mon Sep 17 00:00:00 2001 From: T Pratham Date: Thu, 16 Oct 2025 16:23:32 +0530 Subject: [PATCH] feat(linux): crypto: Update algorithms supported in AM62L Update the docs to include new algorithms whose support has been added to AM62L DTHEv2 linux crypto driver. The new algorithms added in this commit are: AES-GCM, HMAC(MD5), HMAC(SHA224), HMAC(SHA256), HMAC(SHA384), and HMAC(SHA512). To ease readability, the algorithms have been broken down into multiple lines according to their type. Signed-off-by: T Pratham --- .../Kernel/Kernel_Drivers/Crypto/DTHEv2.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/linux/Foundational_Components/Kernel/Kernel_Drivers/Crypto/DTHEv2.rst b/source/linux/Foundational_Components/Kernel/Kernel_Drivers/Crypto/DTHEv2.rst index aea0629b0..d3df0f0f1 100644 --- a/source/linux/Foundational_Components/Kernel/Kernel_Drivers/Crypto/DTHEv2.rst +++ b/source/linux/Foundational_Components/Kernel/Kernel_Drivers/Crypto/DTHEv2.rst @@ -17,7 +17,9 @@ devices: .. code-block:: text - * AM62LX : AES-ECB, AES-CBC, MD5, SHA224, SHA256, SHA384, SHA512 + * AM62LX : Encryption - AES-ECB, AES-CBC + Encryption with Authentication - AES-GCM + Hashing - MD5, SHA224, SHA256, SHA384, SHA512, HMAC(MD5), HMAC(SHA224), HMAC(SHA256), HMAC(SHA384), HMAC(SHA512) ******************** Building the Drivers