x-pg-client.4.3.7.source-code.enums.adoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-pg-client Show documentation
Show all versions of vertx-pg-client Show documentation
The Reactive PostgreSQL Client
= Enums
[[SslMode]]
== SslMode
++++
The different values for the sslmode parameter provide different levels of
protection. See more information in Protection
Provided in Different Modes.
++++
'''
[cols=">25%,75%"]
[frame="topbot"]
|===
^|Name | Description
|[[DISABLE]]`DISABLE`|+++
only try a non-SSL connection.
+++
|[[ALLOW]]`ALLOW`|+++
first try a non-SSL connection; if that fails, try an SSL connection.
+++
|[[PREFER]]`PREFER`|+++
first try an SSL connection; if that fails, try a non-SSL connection.
+++
|[[REQUIRE]]`REQUIRE`|+++
only try an SSL connection. If a root CA file is present, verify the certificate in the same way as if verify-ca was specified.
+++
|[[VERIFY_CA]]`VERIFY_CA`|+++
only try an SSL connection, and verify that the server certificate is issued by a trusted certificate authority (CA).
+++
|[[VERIFY_FULL]]`VERIFY_FULL`|+++
only try an SSL connection, verify that the server certificate is issued by a trusted CA and that the requested server host name matches that in the certificate.
+++
|===
© 2015 - 2024 Weber Informatics LLC | Privacy Policy