postgresql/contrib
Peter Eisentraut 22e1943f13 pgcrypto: Check for error return of px_cipher_decrypt()
This has previously not been a problem (that anyone ever reported),
but in future OpenSSL versions (3.0.0), where legacy ciphers are/can
be disabled, this is the place where this is reported.  So we need to
catch the error here, otherwise the higher-level functions would
return garbage.  The nearby encryption code already handled errors
similarly.

Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://www.postgresql.org/message-id/9e9c431c-0adc-7a6d-9b1a-915de1ba3fe7@enterprisedb.com
2021-03-23 11:48:37 +01:00
..
adminpack
amcheck Allow configurable LZ4 TOAST compression. 2021-03-19 15:10:38 -04:00
auth_delay
auto_explain Fix ancient memory leak in contrib/auto_explain. 2021-02-02 13:49:08 -05:00
bloom
bool_plperl
btree_gin
btree_gist
citext
cube Add binary I/O capability for cube datatype. 2021-03-06 12:04:05 -05:00
dblink
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
hstore_plperl
hstore_plpython
intagg
intarray Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
old_snapshot
pageinspect Use full 64-bit XIDs in deleted nbtree pages. 2021-02-24 18:41:34 -08:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Use errmsg_internal for debug messages 2021-02-17 11:33:25 +01:00
pg_stat_statements
pg_surgery
pg_trgm Fix invalid array access in trgm_regexp.c. 2021-02-21 19:46:46 -05:00
pg_visibility
pgcrypto pgcrypto: Check for error return of px_cipher_decrypt() 2021-03-23 11:48:37 +01:00
pgrowlocks
pgstattuple Use full 64-bit XIDs in deleted nbtree pages. 2021-02-24 18:41:34 -08:00
postgres_fdw Revert changes for SSL compression in libpq 2021-03-10 09:35:42 +09:00
seg Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix memory lifetime issues of replication slot stats. 2021-03-17 16:21:46 -07:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp Add result size as argument of pg_cryptohash_final() for overflow checks 2021-02-15 10:18:34 +09:00
vacuumlo
xml2
contrib-global.mk
Makefile
README

The PostgreSQL contrib tree
---------------------------

This subtree contains porting tools, analysis utilities, and plug-in
features that are not part of the core PostgreSQL system, mainly
because they address a limited audience or are too experimental to be
part of the main source tree.  This does not preclude their
usefulness.

User documentation for each module appears in the main SGML
documentation.

When building from the source distribution, these modules are not
built automatically, unless you build the "world" target.  You can
also build and install them all by running "make all" and "make
install" in this directory; or to build and install just one selected
module, do the same in that module's subdirectory.

Some directories supply new user-defined functions, operators, or
types.  To make use of one of these modules, after you have installed
the code you need to register the new SQL objects in the database
system by executing a CREATE EXTENSION command.  In a fresh database,
you can simply do

    CREATE EXTENSION module_name;

See the PostgreSQL documentation for more information about this
procedure.