File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
doc/resources/dox_files/APIs/asymmetric_key_management Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ stse_ReturnCode_t stse_get_ecc_key_table_info(
6666 * \details This API query STSE and return ecc key informations for a given key slot
6767 * \param[in] pSTSE Pointer to STSE Handler
6868 * \param[in] private_key_slot_number Slot number to query
69- * \param[out] pChange_right Private key table information change right
7069 * \param[out] pGlobal_usage_limit Private key table information global usage limit
7170 * \param[out] private_key_slot_info Key slot informations
7271 * \return \ref STSE_OK on success ; \ref stse_ReturnCode_t error code otherwise
@@ -75,7 +74,6 @@ stse_ReturnCode_t stse_get_ecc_key_table_info(
7574stse_ReturnCode_t stse_get_ecc_key_slot_info (
7675 stse_Handler_t * pSTSE ,
7776 PLAT_UI8 private_key_slot_number ,
78- PLAT_UI8 * pChange_right ,
7977 PLAT_UI16 * pGlobal_usage_limit ,
8078 stsafea_private_key_slot_information_t * private_key_slot_info );
8179
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ Following diagram illustrates the interactions performed between the Host and th
3030
3131 stse_ReturnCode_t ret;
3232 PLAT_UI8 slot_count;
33- PLAT_UI8 change_right;
3433 PLAT_UI16 global_usage_limit;
3534
3635 ret = stse_get_ecc_key_slots_count(pSTSE, &slot_count);
@@ -45,7 +44,6 @@ Following diagram illustrates the interactions performed between the Host and th
4544 ret = stse_get_ecc_key_table_info(
4645 pSTSE,
4746 slot_count,
48- &change_right,
4947 &global_usage_limit,
5048 private_key_table_info);
5149
Original file line number Diff line number Diff line change @@ -86,15 +86,13 @@ stse_ReturnCode_t stsafea_query_private_key_slots_count(
8686 * \details This service formats and sends the query private key table command
8787 * \param[in] pSTSE Pointer to STSE Handler
8888 * \param[in] private_key_slot_count Number of private key slots
89- * \param[out] pChange_right Pointer to change right value
9089 * \param[out] pGlobal_usage_limit Pointer to global usage limit value
9190 * \param[out] private_key_table_info Pointer to private key table information structure
9291 * \return \ref STSE_OK on success ; \ref stse_ReturnCode_t error code otherwise
9392 */
9493stse_ReturnCode_t stsafea_query_private_key_table (
9594 stse_Handler_t * pSTSE ,
9695 PLAT_UI8 private_key_slot_count ,
97- PLAT_UI8 * pChange_right ,
9896 PLAT_UI16 * pGlobal_usage_limit ,
9997 stsafea_private_key_slot_information_t * private_key_table_info );
10098
You can’t perform that action at this time.
0 commit comments