mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-02 07:20:26 +00:00
Fix bug in LMS public key loading
To avoid using the type before it is parsed from the signature Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
parent
3f6cdd7aab
commit
e89488debf
@ -409,6 +409,11 @@ void mbedtls_lmots_public_free( mbedtls_lmots_public_t *ctx )
|
|||||||
int mbedtls_lmots_import_public_key( mbedtls_lmots_public_t *ctx,
|
int mbedtls_lmots_import_public_key( mbedtls_lmots_public_t *ctx,
|
||||||
const unsigned char *key, size_t key_len )
|
const unsigned char *key, size_t key_len )
|
||||||
{
|
{
|
||||||
|
if( key_len < MBEDTLS_LMOTS_SIG_TYPE_OFFSET + MBEDTLS_LMOTS_TYPE_LEN )
|
||||||
|
{
|
||||||
|
return( MBEDTLS_ERR_LMS_BAD_INPUT_DATA );
|
||||||
|
}
|
||||||
|
|
||||||
ctx->params.type =
|
ctx->params.type =
|
||||||
mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMOTS_TYPE_LEN,
|
mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMOTS_TYPE_LEN,
|
||||||
key + MBEDTLS_LMOTS_SIG_TYPE_OFFSET );
|
key + MBEDTLS_LMOTS_SIG_TYPE_OFFSET );
|
||||||
|
@ -235,11 +235,6 @@ int mbedtls_lms_import_public_key( mbedtls_lms_public_t *ctx,
|
|||||||
mbedtls_lms_algorithm_type_t type;
|
mbedtls_lms_algorithm_type_t type;
|
||||||
mbedtls_lmots_algorithm_type_t otstype;
|
mbedtls_lmots_algorithm_type_t otstype;
|
||||||
|
|
||||||
if( key_size != MBEDTLS_LMS_PUBLIC_KEY_LEN(ctx->params.type) )
|
|
||||||
{
|
|
||||||
return( MBEDTLS_ERR_LMS_BAD_INPUT_DATA );
|
|
||||||
}
|
|
||||||
|
|
||||||
type = mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMS_TYPE_LEN,
|
type = mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMS_TYPE_LEN,
|
||||||
key + PUBLIC_KEY_TYPE_OFFSET );
|
key + PUBLIC_KEY_TYPE_OFFSET );
|
||||||
if( type != MBEDTLS_LMS_SHA256_M32_H10 )
|
if( type != MBEDTLS_LMS_SHA256_M32_H10 )
|
||||||
@ -248,6 +243,11 @@ int mbedtls_lms_import_public_key( mbedtls_lms_public_t *ctx,
|
|||||||
}
|
}
|
||||||
ctx->params.type = type;
|
ctx->params.type = type;
|
||||||
|
|
||||||
|
if( key_size != MBEDTLS_LMS_PUBLIC_KEY_LEN(ctx->params.type) )
|
||||||
|
{
|
||||||
|
return( MBEDTLS_ERR_LMS_BAD_INPUT_DATA );
|
||||||
|
}
|
||||||
|
|
||||||
otstype = mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMOTS_TYPE_LEN,
|
otstype = mbedtls_lms_network_bytes_to_unsigned_int( MBEDTLS_LMOTS_TYPE_LEN,
|
||||||
key + PUBLIC_KEY_OTSTYPE_OFFSET );
|
key + PUBLIC_KEY_OTSTYPE_OFFSET );
|
||||||
if( otstype != MBEDTLS_LMOTS_SHA256_N32_W8 )
|
if( otstype != MBEDTLS_LMOTS_SHA256_N32_W8 )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user