Package org.postgresql.ssl
Class LazyKeyManager
java.lang.Object
org.postgresql.ssl.LazyKeyManager
- All Implemented Interfaces:
KeyManager,X509KeyManager
A Key manager that only loads the keys, if necessary.
-
Constructor Summary
ConstructorsConstructorDescriptionLazyKeyManager(@Nullable String certfile, @Nullable String keyfile, CallbackHandler cbh, boolean defaultfile) Constructor. -
Method Summary
Modifier and TypeMethodDescription@Nullable StringchooseClientAlias(String[] keyType, Principal @Nullable [] issuers, @Nullable Socket socket) @Nullable StringchooseServerAlias(String keyType, Principal @Nullable [] issuers, @Nullable Socket socket) X509Certificate @Nullable []getCertificateChain(String alias) String @Nullable []getClientAliases(String keyType, Principal @Nullable [] issuers) @Nullable PrivateKeygetPrivateKey(String alias) String @Nullable []getServerAliases(String keyType, Principal @Nullable [] issuers) voidgetCertificateChain and getPrivateKey cannot throw exceptions, therefore any exception is stored inerrorand can be raised by this method.
-
Constructor Details
-
LazyKeyManager
public LazyKeyManager(@Nullable String certfile, @Nullable String keyfile, CallbackHandler cbh, boolean defaultfile) Constructor. certfile and keyfile can be null, in that case no certificate is presented to the server.- Parameters:
certfile- certfilekeyfile- key filecbh- callback handlerdefaultfile- default file
-
-
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
-
chooseClientAlias
public @Nullable String chooseClientAlias(String[] keyType, Principal @Nullable [] issuers, @Nullable Socket socket) - Specified by:
chooseClientAliasin interfaceX509KeyManager
-
chooseServerAlias
public @Nullable String chooseServerAlias(String keyType, Principal @Nullable [] issuers, @Nullable Socket socket) - Specified by:
chooseServerAliasin interfaceX509KeyManager
-
getCertificateChain
- Specified by:
getCertificateChainin interfaceX509KeyManager
-
getClientAliases
- Specified by:
getClientAliasesin interfaceX509KeyManager
-
getPrivateKey
- Specified by:
getPrivateKeyin interfaceX509KeyManager
-
getServerAliases
- Specified by:
getServerAliasesin interfaceX509KeyManager
-