mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
In FIPS mode, these tests will fail. By having them in a separate file, it would make it easier to have an alternative output file or selectively disable these tests. This isn't done here; this is just some preparation. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://www.postgresql.org/message-id/2766054.1700080156@sss.pgh.pa.us
8 lines
154 B
SQL
8 lines
154 B
SQL
--
|
|
-- PGP encrypt using MD5
|
|
--
|
|
|
|
select pgp_sym_decrypt(
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-digest-algo=md5'),
|
|
'key', 'expect-s2k-digest-algo=md5');
|