We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following unified diff fixes two issues:
I am not familiar with git and "git push" didn't work for me so I've attached it here.
diff --git a/sslscan.c b/sslscan.c index 6ae6ec3..9e688dc 100644 --- a/sslscan.c +++ b/sslscan.c @@ -1549,6 +1549,7 @@ int getCertificate(struct sslCheckOptions *options) printf(" DSA Public Key: NULL\n"); } break; +#ifdef EVP_PKEY_EC case EVP_PKEY_EC: if (publicKey->pkey.ec) { @@ -1567,6 +1568,7 @@ int getCertificate(struct sslCheckOptions *options) printf(" EC Public Key: NULL\n"); } break; +#endif // #ifdef EVP_PKEY_EC default: printf(" Public Key: Unknown\n"); if (options->xmlOutput != 0) @@ -1781,7 +1783,7 @@ int testHost(struct sslCheckOptions *options) if (status == true) { // Test preferred ciphers...
printf("\n %sPrefered Server Cipher(s):%s\n", COL_BLUE, RESET);
printf("\n %sPreferred Server Cipher(s):%s\n", COL_BLUE, RESET); if (options->pout == true) printf("|| Version || Bits || Cipher ||\n"); switch (options->sslVersion)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following unified diff fixes two issues:
I am not familiar with git and "git push" didn't work for me so I've attached it here.
diff --git a/sslscan.c b/sslscan.c
index 6ae6ec3..9e688dc 100644
--- a/sslscan.c
+++ b/sslscan.c
@@ -1549,6 +1549,7 @@ int getCertificate(struct sslCheckOptions *options)
printf(" DSA Public Key: NULL\n");
}
break;
+#ifdef EVP_PKEY_EC
case EVP_PKEY_EC:
if (publicKey->pkey.ec)
{
@@ -1567,6 +1568,7 @@ int getCertificate(struct sslCheckOptions *options)
printf(" EC Public Key: NULL\n");
}
break;
+#endif // #ifdef EVP_PKEY_EC
default:
printf(" Public Key: Unknown\n");
if (options->xmlOutput != 0)
@@ -1781,7 +1783,7 @@ int testHost(struct sslCheckOptions *options)
if (status == true)
{
// Test preferred ciphers...
The text was updated successfully, but these errors were encountered: