You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since #9926, error codes can no longer be the sum of a low-level code and a high-level code. They're all MBEDTLS_ERR_xxx constants (or PSA_ERROR_xxx, but that's a separate issue).
The goal of this issue is to simplify error.c (technically error.fmt) and generate_errors.pl accordingly. The current code still copes with values that are the sum of a low-level code and a high-level code, but this is no longer meaningful. We just have one set of numerical constants to translate to string constants.
Since #9926, error codes can no longer be the sum of a low-level code and a high-level code. They're all
MBEDTLS_ERR_xxx
constants (orPSA_ERROR_xxx
, but that's a separate issue).The goal of this issue is to simplify
error.c
(technicallyerror.fmt
) andgenerate_errors.pl
accordingly. The current code still copes with values that are the sum of a low-level code and a high-level code, but this is no longer meaningful. We just have one set of numerical constants to translate to string constants.We may or may not want to handle
PSA_ERROR_xxx
values at the same time.The text was updated successfully, but these errors were encountered: