1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

De-abbreviate "len" -> "length"

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2023-11-20 12:54:09 +00:00
parent 671f5f539e
commit 2f307b4216
3 changed files with 32 additions and 32 deletions

View File

@ -856,7 +856,7 @@ psa_status_t mbedtls_psa_verify_hash_abort(
typedef struct psa_crypto_input_copy_s {
uint8_t *buffer;
size_t len;
size_t length;
} psa_crypto_input_copy_t;
#define PSA_CRYPTO_INPUT_COPY_INIT { NULL, 0 }
@ -886,7 +886,7 @@ void psa_crypto_input_copy_free(psa_crypto_input_copy_t *input_copy);
typedef struct psa_crypto_output_copy_s {
uint8_t *original;
uint8_t *buffer;
size_t len;
size_t length;
} psa_crypto_output_copy_t;
#define PSA_CRYPTO_OUTPUT_COPY_INIT { NULL, NULL, 0 }