Manuel Pégourié-Gonnard b5a50e754d Always declare restartable function variants
Otherwise code that uses these functions in other modules will have to do:

    #if defined(MBEDTLS_ECP_RESTARTABLE)
    ret = do_stuff( there, may, be, many, args );
    #else
    ret = do_stuff( their, may, be, namy, args, rs_ctx );
    #fi

and there is a risk that the arg list will differ when code is updated, and
this might not be caught immediately by tests because this depends on a
config.h compile-time option which are harder to test.

Always declaring the restartable variants of the API functions avoids this
problem; the cost in ROM size should be negligible.
2017-08-09 11:44:53 +02:00
..
2017-07-27 15:08:01 +01:00
2017-07-27 15:08:01 +01:00
2016-10-13 13:51:11 +01:00
2016-12-14 15:27:22 +00:00
2017-08-09 11:44:53 +02:00
2016-05-25 00:59:37 +01:00
2017-03-10 11:31:41 +00:00
2017-08-09 11:44:53 +02:00
2016-01-03 16:14:14 +00:00
2016-01-03 16:14:14 +00:00
2016-01-03 16:14:14 +00:00
2016-10-13 13:51:12 +01:00
2016-10-13 13:48:48 +01:00
2015-10-05 11:41:36 +01:00
2016-01-03 16:14:14 +00:00
2017-07-27 15:08:01 +01:00
2017-06-08 10:12:16 +01:00
2015-09-25 04:27:22 +02:00
2017-06-20 23:08:10 +01:00