Fix comment typos in rsa_encrypt_wrap()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-02-24 15:27:54 +01:00
parent dac2f23a82
commit ac014ca5d9

View file

@ -239,7 +239,7 @@ static int rsa_encrypt_wrap( void *ctx,
psa_status_t status;
mbedtls_pk_context key;
int key_len;
/* see RSA_PUR_DER_MAX_BYTES in pkwrite.c */
/* see RSA_PUB_DER_MAX_BYTES in pkwrite.c */
unsigned char buf[38 + 2 * MBEDTLS_MPI_MAX_SIZE];
mbedtls_pk_info_t pk_info = mbedtls_rsa_info;
psa_algorithm_t psa_alg_md;
@ -266,7 +266,7 @@ static int rsa_encrypt_wrap( void *ctx,
if( *olen > osize )
return( MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE );
/* mbedtls_pk_write_pubkey() expects a full PK context;
/* mbedtls_pk_write_pubkey_der() expects a full PK context;
* re-construct one to make it happy */
key.pk_info = &pk_info;
key.pk_ctx = ctx;