diff options
Diffstat (limited to 'contrib/pgcrypto/expected')
| -rw-r--r-- | contrib/pgcrypto/expected/3des.out | 2 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/cast5.out | 2 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/des.out | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/contrib/pgcrypto/expected/3des.out b/contrib/pgcrypto/expected/3des.out index 3e6a88e8bf4..8983a73b8a9 100644 --- a/contrib/pgcrypto/expected/3des.out +++ b/contrib/pgcrypto/expected/3des.out @@ -1,6 +1,8 @@ -- -- 3DES cipher -- +-- ensure consistent test output regardless of the default bytea format +SET bytea_output TO escape; -- test vector from somewhere SELECT encode(encrypt( decode('80 00 00 00 00 00 00 00', 'hex'), diff --git a/contrib/pgcrypto/expected/cast5.out b/contrib/pgcrypto/expected/cast5.out index 4ca824e2f87..c1ecd9197f6 100644 --- a/contrib/pgcrypto/expected/cast5.out +++ b/contrib/pgcrypto/expected/cast5.out @@ -1,6 +1,8 @@ -- -- Cast5 cipher -- +-- ensure consistent test output regardless of the default bytea format +SET bytea_output TO escape; -- test vectors from RFC2144 -- 128 bit key SELECT encode(encrypt( diff --git a/contrib/pgcrypto/expected/des.out b/contrib/pgcrypto/expected/des.out index 00513c4e6ac..d0fd0041cac 100644 --- a/contrib/pgcrypto/expected/des.out +++ b/contrib/pgcrypto/expected/des.out @@ -1,6 +1,8 @@ -- -- 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( |
