summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/expected
diff options
context:
space:
mode:
authorTom Lane2005-07-05 18:15:36 +0000
committerTom Lane2005-07-05 18:15:36 +0000
commit576ac4b8c9337cd5b0e12c2f827dd99c5ee6f25b (patch)
treee6f3a72f2de295536ea310b292ef406dc1d1a20e /contrib/pgcrypto/expected
parent7e33fae3c1c9fb3aedf9dff6acc6161305a77163 (diff)
Fix initialization bug in pgcrypto openssl code. Marko Kreen
Diffstat (limited to 'contrib/pgcrypto/expected')
-rw-r--r--contrib/pgcrypto/expected/3des.out8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/pgcrypto/expected/3des.out b/contrib/pgcrypto/expected/3des.out
index 51de60b2bc4..7b6e3dcfdf5 100644
--- a/contrib/pgcrypto/expected/3des.out
+++ b/contrib/pgcrypto/expected/3des.out
@@ -17,14 +17,14 @@ decode('01 01 01 01 01 01 01 01
select encode( encrypt('', 'foo', '3des'), 'hex');
encode
------------------
- 9b641a6936249eb4
+ 752111e37a2d7ac3
(1 row)
-- 10 bytes key
select encode( encrypt('foo', '0123456789', '3des'), 'hex');
encode
------------------
- 6f02b7076a366504
+ d2fb8baa1717cb02
(1 row)
-- 22 bytes key
@@ -45,10 +45,10 @@ select decrypt(encrypt('foo', '0123456', '3des'), '0123456', '3des');
select encode(encrypt_iv('foo', '0123456', 'abcd', '3des'), 'hex');
encode
------------------
- df27c264fb24ed7a
+ 50735067b073bb93
(1 row)
-select decrypt_iv(decode('df27c264fb24ed7a', 'hex'), '0123456', 'abcd', '3des');
+select decrypt_iv(decode('50735067b073bb93', 'hex'), '0123456', 'abcd', '3des');
decrypt_iv
------------
foo