File: des.sql

package info (click to toggle)
postgresql-9.4 9.4.18-0%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 121,624 kB
  • sloc: ansic: 672,040; sql: 55,424; yacc: 28,505; perl: 10,067; lex: 6,757; sh: 5,199; makefile: 4,103; asm: 65; sed: 15; python: 12
file content (29 lines) | stat: -rw-r--r-- 859 bytes parent folder | download | duplicates (12)
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
--
-- 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');

-- empty data
select encode(	encrypt('', 'foo', 'des'), 'hex');
-- 8 bytes key
select encode(	encrypt('foo', '01234589', 'des'), 'hex');

-- decrypt
select decrypt(encrypt('foo', '0123456', 'des'), '0123456', 'des');

-- iv
select encode(encrypt_iv('foo', '0123456', 'abcd', 'des'), 'hex');
select decrypt_iv(decode('50735067b073bb93', 'hex'), '0123456', 'abcd', 'des');

-- long message
select encode(encrypt('Lets try a longer message.', '01234567', 'des'), 'hex');
select decrypt(encrypt('Lets try a longer message.', '01234567', 'des'), '01234567', 'des');