mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 19:20:18 +00:00
Remove permitting of 8 byte nonce with PolyChaCha
Also unify nonce length checking Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
0187651647
commit
cf2d66e022
@ -247,6 +247,21 @@ static psa_status_t psa_aead_unpadded_locate_tag( size_t tag_length,
|
|||||||
return( PSA_SUCCESS );
|
return( PSA_SUCCESS );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static psa_status_t mbedtls_aead_check_nonce_length(
|
||||||
|
mbedtls_psa_aead_operation_t *operation,
|
||||||
|
size_t nonce_length )
|
||||||
|
{
|
||||||
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
|
||||||
|
if( operation->alg == PSA_ALG_CHACHA20_POLY1305 )
|
||||||
|
{
|
||||||
|
if( nonce_length != 12 )
|
||||||
|
return( PSA_ERROR_NOT_SUPPORTED );
|
||||||
|
}
|
||||||
|
#endif /* MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305 */
|
||||||
|
|
||||||
|
return PSA_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
psa_status_t mbedtls_psa_aead_decrypt(
|
psa_status_t mbedtls_psa_aead_decrypt(
|
||||||
const psa_key_attributes_t *attributes,
|
const psa_key_attributes_t *attributes,
|
||||||
const uint8_t *key_buffer, size_t key_buffer_size,
|
const uint8_t *key_buffer, size_t key_buffer_size,
|
||||||
@ -272,6 +287,13 @@ psa_status_t mbedtls_psa_aead_decrypt(
|
|||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
|
if( mbedtls_aead_check_nonce_length( &operation, nonce_length )
|
||||||
|
!= PSA_SUCCESS)
|
||||||
|
{
|
||||||
|
status = PSA_ERROR_NOT_SUPPORTED;
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CCM)
|
||||||
if( operation.alg == PSA_ALG_CCM )
|
if( operation.alg == PSA_ALG_CCM )
|
||||||
{
|
{
|
||||||
@ -303,7 +325,7 @@ psa_status_t mbedtls_psa_aead_decrypt(
|
|||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
|
||||||
if( operation.alg == PSA_ALG_CHACHA20_POLY1305 )
|
if( operation.alg == PSA_ALG_CHACHA20_POLY1305 )
|
||||||
{
|
{
|
||||||
if( nonce_length != 12 || operation.tag_length != 16 )
|
if( operation.tag_length != 16 )
|
||||||
{
|
{
|
||||||
status = PSA_ERROR_NOT_SUPPORTED;
|
status = PSA_ERROR_NOT_SUPPORTED;
|
||||||
goto exit;
|
goto exit;
|
||||||
@ -397,6 +419,12 @@ psa_status_t mbedtls_psa_aead_set_nonce(
|
|||||||
{
|
{
|
||||||
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||||
|
|
||||||
|
if( mbedtls_aead_check_nonce_length( operation, nonce_length )
|
||||||
|
!= PSA_SUCCESS)
|
||||||
|
{
|
||||||
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_GCM)
|
||||||
if( operation->alg == PSA_ALG_GCM )
|
if( operation->alg == PSA_ALG_GCM )
|
||||||
{
|
{
|
||||||
@ -412,11 +440,6 @@ psa_status_t mbedtls_psa_aead_set_nonce(
|
|||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305)
|
||||||
if( operation->alg == PSA_ALG_CHACHA20_POLY1305 )
|
if( operation->alg == PSA_ALG_CHACHA20_POLY1305 )
|
||||||
{
|
{
|
||||||
if( nonce_length != 12 && nonce_length != 8)
|
|
||||||
{
|
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
||||||
}
|
|
||||||
|
|
||||||
status = mbedtls_to_psa_error(
|
status = mbedtls_to_psa_error(
|
||||||
mbedtls_chachapoly_starts( &operation->ctx.chachapoly,
|
mbedtls_chachapoly_starts( &operation->ctx.chachapoly,
|
||||||
nonce,
|
nonce,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user