Fix ots sig length check in LMS validate function

Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
Raef Coles 2022-10-07 13:52:47 +01:00
parent f36874a535
commit 02cf8234b4
No known key found for this signature in database
GPG key ID: 1AAF1B43DF2086F4

View file

@ -733,7 +733,7 @@ int mbedtls_lms_sign( mbedtls_lms_private_t *ctx,
ret = mbedtls_lmots_sign( &ctx->ots_private_keys[q_leaf_identifier],
f_rng, p_rng, msg, msg_size,
sig + SIG_OTS_SIG_OFFSET,
MBEDTLS_LMS_SIG_LEN(ctx->params.type, ctx->params.otstype),
MBEDTLS_LMS_SIG_LEN(ctx->params.type, ctx->params.otstype) - SIG_OTS_SIG_OFFSET,
NULL );
if( ret != 0 )
{