Re: Support for cert auth in JDBC

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: Support for cert auth in JDBC
Дата
Msg-id 4DD3D1B0.90602@postnewspapers.com.au
обсуждение исходный текст
Ответ на Re: Support for cert auth in JDBC  (Marc-André Laverdière<marc-andre@atc.tcs.com>)
Список pgsql-jdbc
Oh, also, your code has a simple thinko or copy-n-paste bug. On line 79:

fInTrustStore = new FileInputStream(keyPath);

should read:

fInTrustStore = new FileInputStream(trustPath);

Currently, trustPath never escapes the method and is effectively unused;
it's only tested for null/empty, then ignored.

--
Craig Ringer

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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: Support for cert auth in JDBC
Следующее
От: Kris Jurka
Дата:
Сообщение: Re: Support for cert auth in JDBC