mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 01:15:43 +01:00
Fix indentation of documentation
This commit is contained in:
parent
62594a8b12
commit
c0a1be08a0
@ -317,17 +317,17 @@ int mbedtls_cipher_setkey( mbedtls_cipher_context_t *ctx,
|
|||||||
cipher_psa->slot_state = MBEDTLS_CIPHER_PSA_KEY_OWNED;
|
cipher_psa->slot_state = MBEDTLS_CIPHER_PSA_KEY_OWNED;
|
||||||
|
|
||||||
/* From that point on, the responsibility for destroying the
|
/* From that point on, the responsibility for destroying the
|
||||||
* key slot is on mbedtls_cipher_free(). This includes the case
|
* key slot is on mbedtls_cipher_free(). This includes the case
|
||||||
* where the policy setup or key import below fail, as
|
* where the policy setup or key import below fail, as
|
||||||
* mbedtls_cipher_free() needs to be called in any case. */
|
* mbedtls_cipher_free() needs to be called in any case. */
|
||||||
|
|
||||||
/* Setup policy for the new key slot. */
|
/* Setup policy for the new key slot. */
|
||||||
psa_key_policy_init( &key_policy );
|
psa_key_policy_init( &key_policy );
|
||||||
|
|
||||||
/* Mbed TLS' cipher layer doesn't enforce the mode of operation
|
/* Mbed TLS' cipher layer doesn't enforce the mode of operation
|
||||||
* (encrypt vs. decrypt): it is possible to setup a key for encryption
|
* (encrypt vs. decrypt): it is possible to setup a key for encryption
|
||||||
* and use it for AEAD decryption. Until tests relying on this
|
* and use it for AEAD decryption. Until tests relying on this
|
||||||
* are changed, allow any usage in PSA. */
|
* are changed, allow any usage in PSA. */
|
||||||
/* key_usage = mbedtls_psa_translate_cipher_operation( operation ); */
|
/* key_usage = mbedtls_psa_translate_cipher_operation( operation ); */
|
||||||
key_usage = PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT;
|
key_usage = PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT;
|
||||||
psa_key_policy_set_usage( &key_policy, key_usage, cipher_psa->alg );
|
psa_key_policy_set_usage( &key_policy, key_usage, cipher_psa->alg );
|
||||||
|
Loading…
Reference in New Issue
Block a user