| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | sutyak <sutyak(at)proton(dot)me> |
| Cc: | "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org> |
| Subject: | Re: PostgreSQL 18 FIPS mode in Windows |
| Date: | 2026-09-24 20:13:21 |
| Message-ID: | 1814989.1790280801@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
sutyak <sutyak(at)proton(dot)me> writes:
> The steps I have already taken are:
> - Install PostgreSQL 18.6 windows-x64
> - Install OpenSSL 3.5.8 with FIPS Provider 3.1.2
> - Enable pgcrypto extension via pgAdmin
> - set builtin_crypto_enabled to 'fips'
> - Executing SELECT fips_mode(); always returns false.
> - Verified FIPS is not being enforced by executing SELECT encode(digest('test', 'md5'), 'hex'); and it always returns a value.
> What am I missing? Thank you,
'builtin_crypto_enabled = fips' merely tells pgcrypto to expect
failure of relevant calls. It does not cause OpenSSL to actually
go into FIPS mode. You'd have to consult the OpenSSL docs to
find out how to do that.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Daniel Gustafsson | 2026-09-24 20:16:45 | Re: PostgreSQL 18 FIPS mode in Windows |
| Previous Message | sutyak | 2026-09-24 20:07:48 | PostgreSQL 18 FIPS mode in Windows |