mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
72bbff4cd6
OpenSSL 3 introduced the concept of providers to support modularization, and moved the outdated ciphers to the new legacy provider. In case it's not loaded in the users openssl.cnf file there will be a lot of regress test failures, so add alternative outputs covering those. Also document the need to load the legacy provider in order to use older ciphers with OpenSSL-enabled pgcrypto. This will be backpatched to all supported version once there is sufficient testing in the buildfarm of OpenSSL 3. Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/FEF81714-D479-4512-839B-C769D2605F8A@yesql.se
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
--
|
|
-- DES cipher
|
|
--
|
|
-- ensure consistent test output regardless of the default bytea format
|
|
SET bytea_output TO escape;
|
|
-- no official test vectors atm
|
|
-- from blowfish.sql
|
|
SELECT encode(encrypt(
|
|
decode('0123456789abcdef', 'hex'),
|
|
decode('fedcba9876543210', 'hex'),
|
|
'des-ecb/pad:none'), 'hex');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|
|
-- empty data
|
|
select encode( encrypt('', 'foo', 'des'), 'hex');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|
|
-- 8 bytes key
|
|
select encode( encrypt('foo', '01234589', 'des'), 'hex');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|
|
-- decrypt
|
|
select decrypt(encrypt('foo', '0123456', 'des'), '0123456', 'des');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|
|
-- iv
|
|
select encode(encrypt_iv('foo', '0123456', 'abcd', 'des'), 'hex');
|
|
ERROR: encrypt_iv error: Cipher cannot be initialized ?
|
|
select decrypt_iv(decode('50735067b073bb93', 'hex'), '0123456', 'abcd', 'des');
|
|
ERROR: decrypt_iv error: Cipher cannot be initialized ?
|
|
-- long message
|
|
select encode(encrypt('Lets try a longer message.', '01234567', 'des'), 'hex');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|
|
select decrypt(encrypt('Lets try a longer message.', '01234567', 'des'), '01234567', 'des');
|
|
ERROR: encrypt error: Cipher cannot be initialized ?
|