| From: | Michael Paquier <michael(at)paquier(dot)xyz> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Improve some code around cryptohash functions |
| Date: | 2020-12-14 03:38:34 |
| Message-ID: | E1koeh0-0007qR-LN@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Improve some code around cryptohash functions
This adjusts some code related to recent changes for cryptohash
functions:
- Add a variable in md5.h to track down the size of a computed result,
moved from pgcrypto. Note that pg_md5_hash() assumed a result of this
size already.
- Call explicit_bzero() on the hashed data when freeing the context for
fallback implementations. For MD5, particularly, it would be annoying
to leave some non-zeroed data around.
- Clean up some code related to recent changes of uuid-ossp. .gitignore
still included md5.c and a comment was incorrect.
Discussion: https://postgr.es/m/X9HXKTgrvJvYO7Oh@paquier.xyz
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/9b584953e7bf91e342af87ef44606acd6206cd1c
Modified Files
--------------
contrib/pgcrypto/internal.c | 4 ----
contrib/uuid-ossp/.gitignore | 1 -
contrib/uuid-ossp/uuid-ossp.c | 4 ++--
src/common/cryptohash.c | 20 ++++++++++++++++++++
src/common/md5_common.c | 2 +-
src/include/common/md5.h | 4 ++++
6 files changed, 27 insertions(+), 8 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Jeff Davis | 2020-12-15 07:47:54 | pgsql: Revert "Cannot use WL_SOCKET_WRITEABLE without WL_SOCKET_READABL |
| Previous Message | Michael Paquier | 2020-12-14 02:54:21 | pgsql: Add some checkpoint/restartpoint status to ps display |