From a6d3022ef4997d17c575c5b4743aa48e28b29b43 Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Thu, 24 Aug 2023 10:41:58 +0200 Subject: [PATCH] doc: nrf_security: Fix naming of SRP option to match configuration We're using SRP_6 as configuration option, so we should specify the version of SRP in the documentation also. Signed-off-by: Joakim Andersson --- doc/nrf/libraries/nrf_security/doc/driver_config.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/nrf/libraries/nrf_security/doc/driver_config.rst b/doc/nrf/libraries/nrf_security/doc/driver_config.rst index 4d434db5981f..f4b599ae0488 100644 --- a/doc/nrf/libraries/nrf_security/doc/driver_config.rst +++ b/doc/nrf/libraries/nrf_security/doc/driver_config.rst @@ -496,7 +496,7 @@ To enable password-authenticated key agreement support, configure the related pa +-----------------------+-----------------------------------------------+ | SPAKE2+ | :kconfig:option:`CONFIG_PSA_WANT_ALG_SPAKE2P` | +-----------------------+-----------------------------------------------+ -| SRP | :kconfig:option:`CONFIG_PSA_WANT_ALG_SRP` | +| SRP-6 | :kconfig:option:`CONFIG_PSA_WANT_ALG_SRP_6` | +-----------------------+-----------------------------------------------+ .. note:: @@ -515,5 +515,5 @@ You can use the following PSA driver-specific configurations for fine-grained co +-----------------------+--------------------------+---------------------------------------------------------------+ | SPAKE2+ | Not supported | :kconfig:option:`CONFIG_PSA_CRYPTO_DRIVER_ALG_SPAKE2P_OBERON` | +-----------------------+--------------------------+---------------------------------------------------------------+ -| SRP | Not supported | :kconfig:option:`CONFIG_PSA_CRYPTO_DRIVER_ALG_SRP_OBERON` | +| SRP-6 | Not supported | :kconfig:option:`CONFIG_PSA_CRYPTO_DRIVER_ALG_SRP_OBERON` | +-----------------------+--------------------------+---------------------------------------------------------------+