Searched refs:pkdh (Results 1 – 2 of 2) sorted by relevance
3414 EVP_PKEY *pkdh = NULL; in ssl3_ctrl() local3419 pkdh = ssl_dh_to_pkey(dh); in ssl3_ctrl()3420 if (pkdh == NULL) { in ssl3_ctrl()3425 EVP_PKEY_security_bits(pkdh), 0, pkdh)) { in ssl3_ctrl()3427 EVP_PKEY_free(pkdh); in ssl3_ctrl()3431 s->cert->dh_tmp = pkdh; in ssl3_ctrl()3770 EVP_PKEY *pkdh = NULL; in ssl3_ctx_ctrl() local3775 pkdh = ssl_dh_to_pkey(dh); in ssl3_ctx_ctrl()3776 if (pkdh == NULL) { in ssl3_ctx_ctrl()3781 EVP_PKEY_security_bits(pkdh), 0, pkdh)) { in ssl3_ctx_ctrl()[all …]
2491 EVP_PKEY *pkdh = NULL; in tls_construct_server_key_exchange() local2535 pkdh = EVP_PKEY_new(); in tls_construct_server_key_exchange()2536 if (pkdh == NULL || dhp == NULL) { in tls_construct_server_key_exchange()2543 EVP_PKEY_assign_DH(pkdh, dhp); in tls_construct_server_key_exchange()2544 pkdhp = pkdh; in tls_construct_server_key_exchange()2550 pkdh = ssl_dh_to_pkey(dhp); in tls_construct_server_key_exchange()2551 if (pkdh == NULL) { in tls_construct_server_key_exchange()2557 pkdhp = pkdh; in tls_construct_server_key_exchange()2593 EVP_PKEY_free(pkdh); in tls_construct_server_key_exchange()2594 pkdh = NULL; in tls_construct_server_key_exchange()[all …]