move entropy init prior arguments number recognition
Signed-off-by: PiotrBzdrega <piotrbzdrega@yandex.com>
This commit is contained in:
parent
c3d17cde46
commit
2b20ff62fc
1 changed files with 1 additions and 2 deletions
|
@ -248,7 +248,7 @@ int main(int argc, char *argv[])
|
||||||
mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP);
|
mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP);
|
||||||
mbedtls_mpi_init(&DQ); mbedtls_mpi_init(&QP);
|
mbedtls_mpi_init(&DQ); mbedtls_mpi_init(&QP);
|
||||||
#endif /* MBEDTLS_RSA_C */
|
#endif /* MBEDTLS_RSA_C */
|
||||||
|
mbedtls_entropy_init(&entropy);
|
||||||
mbedtls_pk_init(&key);
|
mbedtls_pk_init(&key);
|
||||||
mbedtls_ctr_drbg_init(&ctr_drbg);
|
mbedtls_ctr_drbg_init(&ctr_drbg);
|
||||||
memset(buf, 0, sizeof(buf));
|
memset(buf, 0, sizeof(buf));
|
||||||
|
@ -336,7 +336,6 @@ usage:
|
||||||
mbedtls_printf("\n . Seeding the random number generator...");
|
mbedtls_printf("\n . Seeding the random number generator...");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
|
||||||
mbedtls_entropy_init(&entropy);
|
|
||||||
#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
|
#if !defined(_WIN32) && defined(MBEDTLS_FS_IO)
|
||||||
if (opt.use_dev_random) {
|
if (opt.use_dev_random) {
|
||||||
if ((ret = mbedtls_entropy_add_source(&entropy, dev_random_entropy_poll,
|
if ((ret = mbedtls_entropy_add_source(&entropy, dev_random_entropy_poll,
|
||||||
|
|
Loading…
Reference in a new issue