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:
@@ -232,7 +232,6 @@ int
|
||||
main (int argc, char *const *argv)
|
||||
{
|
||||
unsigned int errorCount = 0;
|
||||
const char *aes256_sha_tlsv1 = "AES256-SHA";
|
||||
(void) argc; (void) argv; /* Unused. Silent compiler warning. */
|
||||
|
||||
#ifdef MHD_HTTPS_REQUIRE_GCRYPT
|
||||
@@ -249,13 +248,8 @@ main (int argc, char *const *argv)
|
||||
curl_global_cleanup ();
|
||||
return 77;
|
||||
}
|
||||
|
||||
if (curl_tls_is_nss ())
|
||||
{
|
||||
aes256_sha_tlsv1 = "rsa_aes_256_sha";
|
||||
}
|
||||
errorCount +=
|
||||
test_secure_get (NULL, aes256_sha_tlsv1, CURL_SSLVERSION_TLSv1);
|
||||
test_secure_get (NULL, NULL, CURL_SSLVERSION_TLSv1);
|
||||
errorCount += testEmptyGet (0);
|
||||
curl_global_cleanup ();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user