mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-26 04:09:30 +03:00
testcurl/https: removed explicit cipher setting
Explicit ciphers are not required and not future-proof.
This commit is contained in:
@@ -131,7 +131,6 @@ int
|
||||
main (int argc, char *const *argv)
|
||||
{
|
||||
unsigned int errorCount = 0;
|
||||
const char *aes256_sha = "AES256-SHA";
|
||||
(void) argc; (void) argv; /* Unused. Silent compiler warning. */
|
||||
|
||||
#ifdef MHD_HTTPS_REQUIRE_GCRYPT
|
||||
@@ -149,13 +148,8 @@ main (int argc, char *const *argv)
|
||||
return 77;
|
||||
}
|
||||
|
||||
if (curl_tls_is_nss ())
|
||||
{
|
||||
aes256_sha = "rsa_aes_256_sha";
|
||||
}
|
||||
|
||||
errorCount +=
|
||||
test_concurent_daemon_pair (NULL, aes256_sha, CURL_SSLVERSION_TLSv1);
|
||||
test_concurent_daemon_pair (NULL, NULL, CURL_SSLVERSION_TLSv1);
|
||||
|
||||
print_test_result (errorCount, "concurent_daemon_pair");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user