Re: Increase limit on max length of the password( pg versions < 14)

Поиск
Список
Период
Сортировка
От Vik Fearing
Тема Re: Increase limit on max length of the password( pg versions < 14)
Дата
Msg-id 50872cc9-5461-7973-058b-20ae338cf969@postgresfriends.org
обсуждение исходный текст
Ответ на Increase limit on max length of the password( pg versions < 14)  (mahendrakar s <mahendrakarforpg@gmail.com>)
Ответы Re: Increase limit on max length of the password( pg versions < 14)  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On 7/18/23 11:30, mahendrakar s wrote:
> Hi hackers,
> 
> We have encountered an issue (invalid message length) when the
> password length is > 1000 in pg 11,12,13 versions. This is due to the
> limit(1000) on the max length of the password. In this case the
> password is an access token(JWT) which can have varied  lengths >
> 1000. I see that this is already handled for GSS and SSPI
> authentication tokens where the maximum accepted size is 65535.
> 
> This is not the case with pg versions >=14 as the limit on max length
> is 65535(this change was added as part of sanity checks[1]).
> 
> So we have two options:
> 1. Backport patch[1] to 11,12,13
> 2. Change ONLY the limit on the max length of the password(my patch attached).
> 
> Please let me know your thoughts.

The third option is to upgrade.
-- 
Vik Fearing




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

Предыдущее
От: mahendrakar s
Дата:
Сообщение: Re: Increase limit on max length of the password( pg versions < 14)
Следующее
От: Amit Kapila
Дата:
Сообщение: Re: [PATCH] Reuse Workers and Replication Slots during Logical Replication