1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-27 22:56:53 +03:00

Fix some more regression tests (missed these because they're only

run when built with --with-openssl).
This commit is contained in:
Tom Lane 2009-08-04 20:10:00 +00:00
parent 8476f055e0
commit c83d1fb155
6 changed files with 12 additions and 0 deletions

View File

@ -1,6 +1,8 @@
-- --
-- 3DES cipher -- 3DES cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vector from somewhere -- test vector from somewhere
SELECT encode(encrypt( SELECT encode(encrypt(
decode('80 00 00 00 00 00 00 00', 'hex'), decode('80 00 00 00 00 00 00 00', 'hex'),

View File

@ -1,6 +1,8 @@
-- --
-- Cast5 cipher -- Cast5 cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vectors from RFC2144 -- test vectors from RFC2144
-- 128 bit key -- 128 bit key
SELECT encode(encrypt( SELECT encode(encrypt(

View File

@ -1,6 +1,8 @@
-- --
-- DES cipher -- DES cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- no official test vectors atm -- no official test vectors atm
-- from blowfish.sql -- from blowfish.sql
SELECT encode(encrypt( SELECT encode(encrypt(

View File

@ -1,6 +1,8 @@
-- --
-- 3DES cipher -- 3DES cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vector from somewhere -- test vector from somewhere
SELECT encode(encrypt( SELECT encode(encrypt(

View File

@ -1,6 +1,8 @@
-- --
-- Cast5 cipher -- Cast5 cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vectors from RFC2144 -- test vectors from RFC2144

View File

@ -1,6 +1,8 @@
-- --
-- DES cipher -- DES cipher
-- --
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- no official test vectors atm -- no official test vectors atm