mbedtls/programs/pkey
Manuel Pégourié-Gonnard 3ef6a6dc5c Fix const-ness in mbedtls_param_failed()
The previous prototype gave warnings are the strings produced by #cond and
__FILE__ are const, so we shouldn't implicitly cast them to non-const.

While at it modifying most example programs:
- include the header that has the function declaration, so that the definition
  can be checked to match by the compiler
- fix whitespace
- make it work even if PLATFORM_C is not defined:
    - CHECK_PARAMS is not documented as depending on PLATFORM_C and there is
      no reason why it should
    - so, remove the corresponding #if defined in each program...
    - and add missing #defines for mbedtls_exit when needed

The result has been tested (make all test with -Werror) with the following
configurations:

- full with    CHECK_PARAMS with    PLATFORM_C
- full with    CHECK_PARAMS without PLATFORM_C
- full without CHECK_PARAMS without PLATFORM_C
- full without CHECK_PARAMS with    PLATFORM_C

Additionally, it has been manually tested that adding

    mbedtls_aes_init( NULL );

near the normal call to mbedtls_aes_init() in programs/aes/aescrypt2.c has the
expected effect when running the program.
2018-12-11 12:28:56 +01:00
..
CMakeLists.txt Add example program for Curve25519 2015-10-09 12:13:29 +01:00
dh_client.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
dh_genprime.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
dh_prime.txt - Changed saved value to RCF 3526 2048 MODP group 2012-10-03 19:50:54 +00:00
dh_server.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
ecdh_curve25519.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
ecdsa.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
gen_key.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
key_app.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
key_app_writer.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
mpi_demo.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
pk_decrypt.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
pk_encrypt.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
pk_sign.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
pk_verify.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_decrypt.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_encrypt.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_genkey.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_priv.txt - Smaller default values 2012-10-24 14:29:17 +00:00
rsa_pub.txt - Smaller default values 2012-10-24 14:29:17 +00:00
rsa_sign.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_sign_pss.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_verify.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00
rsa_verify_pss.c Fix const-ness in mbedtls_param_failed() 2018-12-11 12:28:56 +01:00