mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-22 23:01:13 +00:00
Remove duplicated information in psa_open_key
The information about implmementation keys is duplicated.
This commit is contained in:
parent
de4453d960
commit
203491c65d
|
@ -358,18 +358,14 @@ void psa_reset_key_attributes(psa_key_attributes_t *attributes);
|
||||||
* with a lifetime other than #PSA_KEY_LIFETIME_VOLATILE. A persistent key
|
* with a lifetime other than #PSA_KEY_LIFETIME_VOLATILE. A persistent key
|
||||||
* always has a nonzero key identifier, set with psa_set_key_id() when
|
* always has a nonzero key identifier, set with psa_set_key_id() when
|
||||||
* creating the key. Implementations may provide additional pre-provisioned
|
* creating the key. Implementations may provide additional pre-provisioned
|
||||||
* keys with identifiers in the range
|
* keys that can be opened with psa_open_key(). Such keys have a key identifier
|
||||||
* #PSA_KEY_ID_VENDOR_MIN–#PSA_KEY_ID_VENDOR_MAX.
|
* in the vendor range, as documented in the description of #psa_key_id_t.
|
||||||
*
|
*
|
||||||
* The application must eventually close the handle with psa_close_key()
|
* The application must eventually close the handle with psa_close_key()
|
||||||
* to release associated resources. If the application dies without calling
|
* to release associated resources. If the application dies without calling
|
||||||
* psa_close_key(), the implementation should perform the equivalent of a
|
* psa_close_key(), the implementation should perform the equivalent of a
|
||||||
* call to psa_close_key().
|
* call to psa_close_key().
|
||||||
*
|
*
|
||||||
* Implementations may provide additional keys that can be opened with
|
|
||||||
* psa_open_key(). Such keys have a key identifier in the vendor range,
|
|
||||||
* as documented in the description of #psa_key_id_t.
|
|
||||||
*
|
|
||||||
* \param id The persistent identifier of the key.
|
* \param id The persistent identifier of the key.
|
||||||
* \param[out] handle On success, a handle to the key.
|
* \param[out] handle On success, a handle to the key.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue