mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-05-03 00:30:17 +02:00
Revert change to mbedtls_pk_{sign,verify}_restartable and replace with ext version
Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
This commit is contained in:
@@ -1243,10 +1243,10 @@ static int ssl_async_resume(mbedtls_ssl_context *ssl,
|
||||
|
||||
switch (ctx->operation_type) {
|
||||
case ASYNC_OP_SIGN:
|
||||
ret = mbedtls_pk_sign_restartable(key_slot->pk,
|
||||
ctx->md_alg,
|
||||
ctx->input, ctx->input_len,
|
||||
output, output_size, output_len, NULL);
|
||||
ret = mbedtls_pk_sign(key_slot->pk,
|
||||
ctx->md_alg,
|
||||
ctx->input, ctx->input_len,
|
||||
output, output_size, output_len);
|
||||
break;
|
||||
default:
|
||||
mbedtls_printf(
|
||||
|
||||
Reference in New Issue
Block a user