From 5710229f9e837f28e4bafee6b51e828f901bf3f1 Mon Sep 17 00:00:00 2001 From: "zhiyang.shi" Date: Wed, 29 Nov 2023 14:07:15 +0800 Subject: [PATCH] fix(docs): revise the description of REGISTER_CRYPTO_LIB verify_hash should be placed before calc_hash align with crypto_mod.h Change-Id: I536125502d83bb732cf70fbe516d5fe009dc95fe Signed-off-by: zhiyang.shi --- docs/design/auth-framework.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/auth-framework.rst b/docs/design/auth-framework.rst index 597f955ec..281f35fe8 100644 --- a/docs/design/auth-framework.rst +++ b/docs/design/auth-framework.rst @@ -254,8 +254,8 @@ These functions are registered in the CM using the macro: REGISTER_CRYPTO_LIB(_name, _init, _verify_signature, - _calc_hash, _verify_hash, + _calc_hash, _auth_decrypt, _convert_pk);