1
0
Fork 0
mirror of https://github.com/yuzu-emu/mbedtls.git synced 2025-10-09 01:57:45 +00:00
mbedtls/programs/pkey
Hanno Becker b70ba9fec7 Address issues found by coverity
1) The MPI test for prime generation missed a return value
   check for a call to `mbedtls_mpi_shift_r`. This is neither
   critical nor new but should be fixed.

2) The RSA keygeneration example program contained code
   initializing an RSA context after a potentially failing
   call to CTR DRBG initialization, leaving the corresponding
   RSA context free call in the cleanup section orphaned.
   The commit fixes this by moving the initializtion of the
   RSA context prior to the first potentially failing call.
2018-01-10 10:46:18 +00:00
..
CMakeLists.txt
dh_client.c
dh_genprime.c
dh_prime.txt
dh_server.c
ecdsa.c Clarify the use of ECDSA API 2017-06-07 15:59:21 +01:00
gen_key.c Add extra compilation conditions to gen_key.c 2016-10-07 14:17:22 +01:00
key_app.c
key_app_writer.c
mpi_demo.c
pk_decrypt.c
pk_encrypt.c
pk_sign.c
pk_verify.c
rsa_decrypt.c fix for issue 1101: missing rsa context initialization 2017-03-01 16:05:25 +00:00
rsa_encrypt.c Add missing stdlib.h header to rsa sample programs 2016-05-18 19:36:03 +01:00
rsa_genkey.c Address issues found by coverity 2018-01-10 10:46:18 +00:00
rsa_priv.txt
rsa_pub.txt
rsa_sign.c
rsa_sign_pss.c
rsa_verify.c
rsa_verify_pss.c