clarify description

This commit is contained in:
Takashi Kojo 2024-08-05 05:59:36 +09:00
parent 00e42151ca
commit 8368a32e7e
2 changed files with 6 additions and 6 deletions

View File

@ -3,8 +3,8 @@
\brief HMACオブジェクトを初期化しHMACの長さを設定します
\return 0 HMACオブジェクトの初期化に成功しました
\return BAD_FUNC_ARG .MD5SHASHA256SHA384SHA3-224SHA3-256SHA3-384SHA3-512
\return MEMORY_E 使
\return HMAC_MIN_KEYLEN_E FIPS実装を使用するときに返されることがありFIPS規格よりも短いです
\return MEMORY_E 使
\return HMAC_MIN_KEYLEN_E FIPS実装を使用するときにFIPS規格の最小許容(14)
\param hmac HMACオブジェクトへのポインタ
\param type HMACオブジェクトを使用する暗号化方式を指定します.MD5SHASHA256SHA384SHA3-224SHA3-256SHA3-384SHA3-512
\param key HMACオブジェクトを初期化するキーを含むバッファへのポインタ
@ -13,7 +13,7 @@
Hmac hmac;
byte key[] = { // initialize with key to use for encryption };
if (wc_HmacSetKey(&hmac, MD5, key, sizeof(key)) != 0) {
// error initializing Hmac object
// error initializing Hmac object
}
\endcode
\sa wc_HmacUpdate
@ -25,7 +25,7 @@ int wc_HmacSetKey(Hmac* hmac, int type, const byte* key, word32 keySz);
\ingroup HMAC
\brief HMACを使用して認証するメッセージを更新しますHMACオブジェクトがWC_HMACSETKEYで初期化された後に呼び出されるべきですwc_hmacupdateを呼び出した後wc_hmacfinalを呼び出す必要があります
\return 0
\return MEMORY_E 使
\return MEMORY_E 使
\param hmac HMACオブジェクトへのポインタ
\param msg
_Example_

View File

@ -8,9 +8,9 @@
\return BAD_FUNC_ARG Returned if the input type is invalid (see type param)
\return MEMORY_E Returned if there is an error allocating memory for the
structure to use for hashing
\return HMAC_MIN_KEYLEN_E May be returned when using a FIPS implementation
\return HMAC_MIN_KEYLEN_E Returned when using a FIPS implementation
and the key length specified is shorter than the minimum acceptable
FIPS standard
FIPS standard of 14 bytes
\param hmac pointer to the Hmac object to initialize
\param type type specifying which encryption method the Hmac object