Mahavir Jain 73cfa42bd3 bignum: add provision for combined software and hardware MPI approach
For exponential mod (API mbedtls_mpi_exp_mod) operation, some ESP target
chips needs to have ability for both hardware and software implementation.

Hardware implementation provided performance advantage but it can only
support upto 3072 bit operations (e.g., ESP32-C3) and hence we fallback
to software implementation in such cases (e.g., 4096 bit operations).

Earlier this was handled using linker "--wrap" flag but that does not
work in all scenarios as API `mbedtls_mpi_exp_mod` is being used in
same tranlation (compilation unit).

This approach was found to be next best option with minimal changes in
mbedTLS library.
2021-11-26 14:46:39 +05:30
..
2021-05-25 18:45:46 +02:00
2021-03-04 14:43:17 +00:00
2021-07-05 18:47:36 +02:00
2021-06-21 10:14:41 +02:00
2021-06-10 10:40:37 +02:00
2021-06-28 10:24:20 +01:00
2020-11-16 13:07:51 +01:00
2020-09-09 15:17:11 +02:00
2021-02-22 19:40:41 +01:00