diff options
Diffstat (limited to 'contrib/pgcrypto/expected/init.out')
-rw-r--r-- | contrib/pgcrypto/expected/init.out | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/pgcrypto/expected/init.out b/contrib/pgcrypto/expected/init.out index 509f4540474..3252d4276ee 100644 --- a/contrib/pgcrypto/expected/init.out +++ b/contrib/pgcrypto/expected/init.out @@ -15,3 +15,12 @@ SELECT decode('666f6f', 'hex'); foo (1 row) +-- check error handling +select gen_salt('foo'); +ERROR: gen_salt: Unknown salt algorithm +select digest('foo', 'foo'); +ERROR: Cannot use "foo": No such hash algorithm +select hmac('foo', 'foo', 'foo'); +ERROR: Cannot use "foo": No such hash algorithm +select encrypt('foo', 'foo', 'foo'); +ERROR: Cannot use "foo": No such cipher algorithm |