diff options
author | Robert Haas <rhaas@postgresql.org> | 2018-01-31 16:28:11 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2018-01-31 16:33:24 -0500 |
commit | 7201c68793e98ffaa77616bda91613815aa0a66b (patch) | |
tree | a334fd0b02fe6bdeeecdc4528628268b47efa44b /contrib | |
parent | d397f558d5552b01643f000d4db7e0960d76241f (diff) |
pgcrypto's encrypt() supports AES-128, AES-192, and AES-256
Previously, only 128 was mentioned, but the others are also supported.
Thomas Munro, reviewed by Michael Paquier and extended a bit by me.
Discussion: http://postgr.es/m/CAEepm=1XbBHXYJKofGjnM2Qfz-ZBVqhGU4AqvtgR+Hegy4fdKg@mail.gmail.com
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pgcrypto/expected/rijndael.out | 2 | ||||
-rw-r--r-- | contrib/pgcrypto/sql/rijndael.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/expected/rijndael.out b/contrib/pgcrypto/expected/rijndael.out index 14b2650c324..5366604a3d3 100644 --- a/contrib/pgcrypto/expected/rijndael.out +++ b/contrib/pgcrypto/expected/rijndael.out @@ -1,5 +1,5 @@ -- --- AES / Rijndael-128 cipher +-- AES cipher (aka Rijndael-128, -192, or -256) -- -- ensure consistent test output regardless of the default bytea format SET bytea_output TO escape; diff --git a/contrib/pgcrypto/sql/rijndael.sql b/contrib/pgcrypto/sql/rijndael.sql index bfbf95d39b8..a9bcbf33d0a 100644 --- a/contrib/pgcrypto/sql/rijndael.sql +++ b/contrib/pgcrypto/sql/rijndael.sql @@ -1,5 +1,5 @@ -- --- AES / Rijndael-128 cipher +-- AES cipher (aka Rijndael-128, -192, or -256) -- -- ensure consistent test output regardless of the default bytea format SET bytea_output TO escape; |