mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-22 15:02:59 +00:00
In two test cases, the exponentiation computation was not being fully tested as when A_bytes (the base) == N_bytes (the modulus) -> A = N. When this is the case A is reduced to 0 and therefore the result of the computation will always be 0. This fixes that issue and therefore increases the test coverage to ensure different computations are actually being run. Signed-off-by: Chris Jones <christopher.jones@arm.com>