diff options
Diffstat (limited to 'contrib/pgcrypto/expected/pgp-pubkey-decrypt.out')
-rw-r--r-- | contrib/pgcrypto/expected/pgp-pubkey-decrypt.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/expected/pgp-pubkey-decrypt.out b/contrib/pgcrypto/expected/pgp-pubkey-decrypt.out index d290a1349f9..b4b6810a3c5 100644 --- a/contrib/pgcrypto/expected/pgp-pubkey-decrypt.out +++ b/contrib/pgcrypto/expected/pgp-pubkey-decrypt.out @@ -625,7 +625,7 @@ ERROR: No encryption key found -- rsa: password-protected secret key, wrong password select pgp_pub_decrypt(dearmor(data), dearmor(seckey), '123') from keytbl, encdata where keytbl.id=7 and encdata.id=4; -ERROR: Corrupt data +ERROR: Wrong key or corrupt data -- rsa: password-protected secret key, right password select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'parool') from keytbl, encdata where keytbl.id=7 and encdata.id=4; @@ -641,7 +641,7 @@ ERROR: Need password for secret key -- password-protected secret key, wrong password select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'foo') from keytbl, encdata where keytbl.id=5 and encdata.id=1; -ERROR: Corrupt data +ERROR: Wrong key or corrupt data -- password-protected secret key, right password select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'parool') from keytbl, encdata where keytbl.id=5 and encdata.id=1; |