[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eMacAlgorithm\u003c/code\u003e is used to select the desired MAC (Message Authentication Code) algorithm for secure communication.\u003c/p\u003e\n"],["\u003cp\u003eThe available options for \u003ccode\u003eMacAlgorithm\u003c/code\u003e are HMAC_MD5, HMAC_SHA_1, HMAC_SHA_256, HMAC_SHA_384, and HMAC_SHA_512, all represented as enumerations.\u003c/p\u003e\n"],["\u003cp\u003eThese algorithms provide cryptographic hashing functions used for data integrity and authentication.\u003c/p\u003e\n"]]],["The `MacAlgorithm` is a selector for choosing a Message Authentication Code (MAC) algorithm. It offers five specific HMAC algorithms: `HMAC_MD5`, `HMAC_SHA_1`, `HMAC_SHA_256`, `HMAC_SHA_384`, and `HMAC_SHA_512`. Each option is represented as an `Enum` type property within the `MacAlgorithm`, each one being a type of MAC hashing. The user can select between these properties.\n"],null,["MacAlgorithm\n\nSelector of MAC algorithm \n\nProperties\n\n| Property | Type | Description |\n|----------------|--------|-------------|\n| `HMAC_MD5` | `Enum` | |\n| `HMAC_SHA_1` | `Enum` | |\n| `HMAC_SHA_256` | `Enum` | |\n| `HMAC_SHA_384` | `Enum` | |\n| `HMAC_SHA_512` | `Enum` | |"]]