@@ -65,7 +65,7 @@ typedef struct {
65
65
*
66
66
* The size of this buffer is given by psa_drv_se_t::persistent_data_size
67
67
* when the driver is registered, and this value is also recorded in the
68
- * ::persistent_data_size field of this structure.
68
+ * psa_drv_se_context_t ::persistent_data_size field of this structure.
69
69
*
70
70
* Before the driver is initialized for the first time, the content of
71
71
* the persistent data is all-bits-zero. After a driver upgrade, if the
@@ -979,21 +979,26 @@ typedef struct {
979
979
/** Function that allocates a slot for a key.
980
980
*
981
981
* The core calls this function to determine a slot number, then
982
- * calls the actual creation function (such as ::p_import or
983
- * ::p_generate).
982
+ * calls the actual creation function (such as
983
+ * psa_drv_se_key_management_t::p_import or
984
+ * psa_drv_se_key_management_t::p_generate).
984
985
*
985
986
* If this function succeeds, the next call that the core makes to the
986
- * driver is either the creation function or ::p_destroy. Note that
987
+ * driver is either the creation function or
988
+ * psa_drv_se_key_management_t::p_destroy. Note that
987
989
* if the platform is reset after this function returns, the core
988
- * may either subsequently call ::p_destroy or may behave as if the
989
- * last call to this function had not taken place.
990
+ * may either subsequently call psa_drv_se_key_management_t ::p_destroy
991
+ * or may behave as if the last call to this function had not taken place.
990
992
*/
991
993
psa_drv_se_allocate_key_t p_allocate ;
992
994
/** Function that allocates a slot.
993
995
*
994
- * The core calls this function instead of ::p_allocate to create
996
+ * The core calls this function instead of
997
+ * psa_drv_se_key_management_t::p_allocate to create
995
998
* a key in a specific slot. It then calls the actual creation function
996
- * (such as ::p_import or ::p_generate) or ::p_destroy.
999
+ * (such as psa_drv_se_key_management_t::p_import or
1000
+ * psa_drv_se_key_management_t::p_generate) or
1001
+ * psa_drv_se_key_management_t::p_destroy.
997
1002
*/
998
1003
psa_drv_se_check_key_slot_validity_t p_check_slot ;
999
1004
/** Function that performs a key import operation */
0 commit comments