mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-08-02 13:51:12 +00:00
Update PSA_CIPHER_ENCRYPT_OUTPUT_MAX_SIZE
Signed-off-by: gabor-mezei-arm <gabor.mezei@arm.com>
This commit is contained in:
parent
9c3b5077e6
commit
5699101ac9
|
@ -971,7 +971,8 @@
|
||||||
*/
|
*/
|
||||||
#define PSA_CIPHER_ENCRYPT_OUTPUT_MAX_SIZE(input_length) \
|
#define PSA_CIPHER_ENCRYPT_OUTPUT_MAX_SIZE(input_length) \
|
||||||
(PSA_ROUND_UP_TO_MULTIPLE(PSA_BLOCK_CIPHER_BLOCK_MAX_SIZE, \
|
(PSA_ROUND_UP_TO_MULTIPLE(PSA_BLOCK_CIPHER_BLOCK_MAX_SIZE, \
|
||||||
(input_length) + PSA_BLOCK_CIPHER_BLOCK_MAX_SIZE))
|
(input_length) + 1) + \
|
||||||
|
PSA_CIPHER_IV_MAX_SIZE)
|
||||||
|
|
||||||
/** The maximum size of the output of psa_cipher_decrypt(), in bytes.
|
/** The maximum size of the output of psa_cipher_decrypt(), in bytes.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue