From e3f9ed852b6003a9ae57054e215bd6b18e70ca5a Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Fri, 2 Feb 2024 11:49:37 +0100 Subject: [PATCH] docs(auth): add missing AUTH_PARAM_NV_CTR value Section "Describing the authentication method(s)" of the Authentication Framework documentation shows the authentication parameters types (auth_param_type_t enum type) but is missing the AUTH_PARAM_NV_CTR value. Add it. Signed-off-by: Sandrine Bailleux Change-Id: I7c9022badfb039bfa9f999ecee40f18b49e6764c --- docs/design/auth-framework.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/design/auth-framework.rst b/docs/design/auth-framework.rst index a5ca37755..6dc2245c1 100644 --- a/docs/design/auth-framework.rst +++ b/docs/design/auth-framework.rst @@ -505,11 +505,12 @@ uses this information to: typedef enum { AUTH_PARAM_NONE, - AUTH_PARAM_RAW_DATA, /* Raw image data */ + AUTH_PARAM_RAW_DATA, /* Raw image data */ AUTH_PARAM_SIG, /* The image signature */ AUTH_PARAM_SIG_ALG, /* The image signature algorithm */ AUTH_PARAM_HASH, /* A hash (including the algorithm) */ AUTH_PARAM_PUB_KEY, /* A public key */ + AUTH_PARAM_NV_CTR, /* A non-volatile counter */ } auth_param_type_t; The AM defines the following structure to identify an authentication parameter