File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
components/TARGET_PSA/services/crypto/COMPONENT_SPE Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
#include "crypto_platform.h"
24
24
25
+ /* initialize the module, resets all tracked information */
25
26
void psa_crypto_access_control_init (void );
26
27
28
+ /* deinitialize the module, resets all tracked information */
27
29
void psa_crypto_access_control_destroy (void );
28
30
31
+ /* tracks and associates the key_handle with partition_id */
29
32
void psa_crypto_access_control_register_handle (psa_key_handle_t key_handle , int32_t partition_id );
30
33
34
+ /* removes tracking of the key_handle */
31
35
void psa_crypto_access_control_unregister_handle (psa_key_handle_t key_handle );
32
36
37
+ /* checks if the key_handle is associated with the partition_id, returns 0 is false otherwise 1 */
33
38
uint8_t psa_crypto_access_control_is_handle_permitted (psa_key_handle_t key_handle , int32_t partition_id );
34
39
35
40
#endif /* PSA_CRYPTO_ACCESS_CONTROL_H */
You can’t perform that action at this time.
0 commit comments