Class BaseX509KeyManager
java.lang.Object
org.postgresql.ssl.BaseX509KeyManager
- All Implemented Interfaces:
KeyManager, X509KeyManager
- Direct Known Subclasses:
PEMKeyManager, PKCS12KeyManager
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionchooseClientAlias(String[] keyType, Principal[] principals, Socket socket) chooseServerAlias(String s, Principal[] principals, Socket socket) String[]getClientAliases(String keyType, Principal[] principals) String[]getServerAliases(String s, Principal[] principals) voidgetCertificateChain and getPrivateKey cannot throw exceptions, therefore any exception is stored inerrorand can be raised by this method.static voidvalidateKeyFilePermissions(Path keyPath) Validates that the private key file has secure permissions, matching libpq behavior.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface X509KeyManager
getCertificateChain, getPrivateKey
-
Field Details
-
error
-
-
Constructor Details
-
BaseX509KeyManager
public BaseX509KeyManager()
-
-
Method Details
-
throwKeyManagerException
getCertificateChain and getPrivateKey cannot throw exceptions, therefore any exception is stored inerrorand can be raised by this method.- Throws:
PSQLException- if any exception is stored inerrorand can be raised
-
getClientAliases
- Specified by:
getClientAliasesin interfaceX509KeyManager
-
chooseClientAlias
- Specified by:
chooseClientAliasin interfaceX509KeyManager
-
getServerAliases
- Specified by:
getServerAliasesin interfaceX509KeyManager
-
chooseServerAlias
- Specified by:
chooseServerAliasin interfaceX509KeyManager
-
validateKeyFilePermissions
Validates that the private key file has secure permissions, matching libpq behavior. On POSIX systems, root-owned files are allowed group-read access (up to 0640), since it's common for root to own certs and grant read access via group membership. Files owned by anyone else must be 0600 or stricter. On Windows, ACLs are checked to ensure only the owner and trusted system accounts have access.- Parameters:
keyPath- the path to the private key file- Throws:
PSQLException- if the file has insecure permissions
-