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:09 -0500 |
commit | 1787c332dbb7629b893e52afcf37076ebe4db9a3 (patch) | |
tree | 5dace564542734f3dae33064ab6d9beb4b1c4fb3 /doc/src | |
parent | 3dcc7ceec034788b6ef89f90eb1be869e0c40a05 (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 'doc/src')
-rw-r--r-- | doc/src/sgml/pgcrypto.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml index 34d86219584..b9f34d2cf0b 100644 --- a/doc/src/sgml/pgcrypto.sgml +++ b/doc/src/sgml/pgcrypto.sgml @@ -1062,7 +1062,7 @@ decrypt_iv(data bytea, key bytea, iv bytea, type text) returns bytea <itemizedlist> <listitem><para><literal>bf</literal> — Blowfish</para></listitem> - <listitem><para><literal>aes</literal> — AES (Rijndael-128)</para></listitem> + <listitem><para><literal>aes</literal> — AES (Rijndael-128, -192 or -256)</para></listitem> </itemizedlist> and <replaceable>mode</> is one of: <itemizedlist> |