Package org.postgresql.ssl
Class PKCS12KeyManager
- java.lang.Object
-
- org.postgresql.ssl.PKCS12KeyManager
-
- All Implemented Interfaces:
KeyManager
,X509KeyManager
public class PKCS12KeyManager extends Object implements X509KeyManager
-
-
Constructor Summary
Constructors Constructor Description PKCS12KeyManager(String pkcsFile, CallbackHandler cbh)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
chooseClientAlias(String[] strings, Principal[] principals, Socket socket)
String
chooseServerAlias(String s, Principal[] principals, Socket socket)
X509Certificate[]
getCertificateChain(String alias)
String[]
getClientAliases(String keyType, Principal[] principals)
PrivateKey
getPrivateKey(String s)
String[]
getServerAliases(String s, Principal[] principals)
void
throwKeyManagerException()
getCertificateChain and getPrivateKey cannot throw exeptions, therefore any exception is stored inerror
and can be raised by this method.
-
-
-
Constructor Detail
-
PKCS12KeyManager
public PKCS12KeyManager(String pkcsFile, CallbackHandler cbh) throws PSQLException
- Throws:
PSQLException
-
-
Method Detail
-
throwKeyManagerException
public void throwKeyManagerException() throws PSQLException
getCertificateChain and getPrivateKey cannot throw exeptions, therefore any exception is stored inerror
and can be raised by this method.- Throws:
PSQLException
- if any exception is stored inerror
and can be raised
-
getClientAliases
public String[] getClientAliases(String keyType, Principal[] principals)
- Specified by:
getClientAliases
in interfaceX509KeyManager
-
chooseClientAlias
public String chooseClientAlias(String[] strings, Principal[] principals, Socket socket)
- Specified by:
chooseClientAlias
in interfaceX509KeyManager
-
getServerAliases
public String[] getServerAliases(String s, Principal[] principals)
- Specified by:
getServerAliases
in interfaceX509KeyManager
-
chooseServerAlias
public String chooseServerAlias(String s, Principal[] principals, Socket socket)
- Specified by:
chooseServerAlias
in interfaceX509KeyManager
-
getCertificateChain
public X509Certificate[] getCertificateChain(String alias)
- Specified by:
getCertificateChain
in interfaceX509KeyManager
-
getPrivateKey
public PrivateKey getPrivateKey(String s)
- Specified by:
getPrivateKey
in interfaceX509KeyManager
-
-