pgjdbc is not working with PKCS8 certificates with password

Поиск
Список
Период
Сортировка
От just madhu
Тема pgjdbc is not working with PKCS8 certificates with password
Дата
Msg-id CALwjh=QQUdwfNq6dakWC-DOSSN2jABYsKXgAzL4gzFd0K1mqmQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: pgjdbc is not working with PKCS8 certificates with password  (just madhu <justvmadhu@gmail.com>)
Re: pgjdbc is not working with PKCS8 certificates with password  (just madhu <justvmadhu@gmail.com>)
Список pgsql-bugs
Hi ,

postgresql-42.7.1.jar

Trying to use establish a connection using PKCS8 certificate created with password.

openssl pkcs8 -topk8 -inform PEM -in client.key -outform DER -out client.pk8  -passout pass:foobar

I set the properties as below:
...
sslProperties.setProperty("sslkey", "client.pk8");
sslProperties.setProperty("sslpassword","foobar");
...
Connection connection = DriverManager.getConnection(jdbcUrl, sslProperties);
....
This is failing with the error:
org.postgresql.util.PSQLException: SSL error: Connection reset
at org.postgresql.ssl.MakeSSL.convert(MakeSSL.java:43)
at org.postgresql.core.v3.ConnectionFactoryImpl.enableSSL(ConnectionFactoryImpl.java:584)
at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:168)
...

Regards,
Madhu

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Alexander Korotkov
Дата:
Сообщение: Re: v17 Possible Union All Bug
Следующее
От: just madhu
Дата:
Сообщение: Re: pgjdbc is not working with PKCS8 certificates with password