Introduce psa_key_handle_is_null inline function
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
91e9515424
commit
c26f8d467a
14 changed files with 46 additions and 33 deletions
|
@ -53,6 +53,17 @@
|
|||
typedef uint16_t psa_key_handle_t;
|
||||
#define PSA_KEY_HANDLE_INIT ( (psa_key_handle_t)0 )
|
||||
|
||||
/** Check whether a handle is null.
|
||||
*
|
||||
* \param handle Key handle.
|
||||
*
|
||||
* \return Non-zero if the key handle is null, zero otherwise.
|
||||
*/
|
||||
static inline int psa_key_handle_is_null( psa_key_handle_t handle )
|
||||
{
|
||||
return( handle == 0 );
|
||||
}
|
||||
|
||||
#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER)
|
||||
|
||||
/* Building for the PSA Crypto service on a PSA platform, a key owner is a PSA
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue