Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75d7333 commit 9512970Copy full SHA for 9512970
src/test/ssl/t/002_scram.pl
@@ -44,11 +44,17 @@ sub switch_server_cert
44
# This is the pattern to use in pg_hba.conf to match incoming connections.
45
my $SERVERHOSTCIDR = '127.0.0.1/32';
46
47
+# Determine whether this build uses OpenSSL or LibreSSL.
48
+my $libressl = $ssl_server->is_libressl;
49
+
50
# Determine whether build supports detection of hash algorithms for
51
# RSA-PSS certificates.
52
my $supports_rsapss_certs =
53
check_pg_config("#define HAVE_X509_GET_SIGNATURE_INFO 1");
54
55
+# As of 5/2025, LibreSSL doesn't actually work for RSA-PSS certificates.
56
+$supports_rsapss_certs = 0 if $libressl;
57
58
# Allocation of base connection string shared among multiple tests.
59
my $common_connstr;
60
0 commit comments