Fix ots sig length check in LMS validate function
Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
parent
f36874a535
commit
02cf8234b4
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue