HomeSort by: relevance | last modified time | path
    Searched defs:rsa_tmp (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/
rsa_kmgmt.c 574 RSA *rsa = NULL, *rsa_tmp = NULL; local
597 if ((rsa_tmp = ossl_rsa_new_with_ctx(gctx->libctx)) == NULL)
608 if (!ossl_rsa_acvp_test_set_params(rsa_tmp, gctx->acvp_test_params))
613 if (!RSA_generate_multi_prime_key(rsa_tmp,
618 if (!ossl_rsa_pss_params_30_copy(ossl_rsa_get0_pss_params_30(rsa_tmp),
622 RSA_clear_flags(rsa_tmp, RSA_FLAG_TYPE_MASK);
623 RSA_set_flags(rsa_tmp, gctx->rsa_type);
625 rsa = rsa_tmp;
626 rsa_tmp = NULL;
629 RSA_free(rsa_tmp);
    [all...]
  /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
rsa_kmgmt.c 580 RSA *rsa = NULL, *rsa_tmp = NULL; local
603 if ((rsa_tmp = ossl_rsa_new_with_ctx(gctx->libctx)) == NULL)
614 if (!ossl_rsa_acvp_test_set_params(rsa_tmp, gctx->acvp_test_params))
619 if (!RSA_generate_multi_prime_key(rsa_tmp,
624 if (!ossl_rsa_pss_params_30_copy(ossl_rsa_get0_pss_params_30(rsa_tmp),
628 RSA_clear_flags(rsa_tmp, RSA_FLAG_TYPE_MASK);
629 RSA_set_flags(rsa_tmp, gctx->rsa_type);
631 rsa = rsa_tmp;
632 rsa_tmp = NULL;
635 RSA_free(rsa_tmp);
    [all...]

Completed in 17 milliseconds