summaryrefslogtreecommitdiffstats
path: root/contrib/pgcrypto/expected/des_1.out
blob: e8cca0505fe184e23ae3851fd633c363f6a0103d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--
-- 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 ?