pgsql: OpenSSL 3.0.0 compatibility in tests

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: OpenSSL 3.0.0 compatibility in tests
Date: 2020-06-05 09:19:03
Message-ID: E1jh8VD-0006ud-1x@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

OpenSSL 3.0.0 compatibility in tests

DES has been deprecated in OpenSSL 3.0.0 which makes loading keys
encrypted with DES fail with "fetch failed". Solve by changing the
cipher used to aes256 which has been supported since 1.0.1 (and is
more realistic to use anyways).

Note that the minimum supported OpenSSL version is 1.0.1 as of
7b283d0e1d1d79bf1c962d790c94d2a53f3bb38a, so this does not introduce
any new version requirements.

Author: Daniel Gustafsson <daniel(at)yesql(dot)se>
Discussion: https://www.postgresql.org/message-id/flat/FEF81714-D479-4512-839B-C769D2605F8A%40yesql.se

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f0d2c65f17cab8cfaf4d39f7f8e2254824cd4092

Modified Files
--------------
src/test/ssl/Makefile | 2 +-
src/test/ssl/ssl/server-password.key | 52 ++++++++++++++++++------------------
2 files changed, 27 insertions(+), 27 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2020-06-05 20:19:26 pgsql: Use query collation, not column's collation, while examining sta
Previous Message Michael Paquier 2020-06-05 01:33:09 pgsql: Preserve pg_index.indisreplident across REINDEX CONCURRENTLY