mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Rename cryptohashes.c to cryptohashfuncs.c
87ae969
has created two new files called cryptohash{_openssl}.c in
src/common/, whose names overlap with the existing backend file called
cryptohashes.c dedicated to the SQL wrappers for SHA2 and MD5. This
file is renamed to cryptohashfuncs.c to be more consistent with the
surroundings and reduce the confusion with the new cryptohash interface
of src/common/.
Author: Michael Paquier
Reviewed-by: Daniel Gustafsson
Discussion: https://postgr.es/m/X8hHhaQgbMbW+aGU@paquier.xyz
This commit is contained in:
@ -22,7 +22,7 @@ OBJS = \
|
|||||||
bool.o \
|
bool.o \
|
||||||
cash.o \
|
cash.o \
|
||||||
char.o \
|
char.o \
|
||||||
cryptohashes.o \
|
cryptohashfuncs.o \
|
||||||
date.o \
|
date.o \
|
||||||
datetime.o \
|
datetime.o \
|
||||||
datum.o \
|
datum.o \
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
/*-------------------------------------------------------------------------
|
/*-------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* cryptohashes.c
|
* cryptohashfuncs.c
|
||||||
* Cryptographic hash functions
|
* Cryptographic hash functions
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 2018-2020, PostgreSQL Global Development Group
|
* Portions Copyright (c) 2018-2020, PostgreSQL Global Development Group
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* src/backend/utils/adt/cryptohashes.c
|
* src/backend/utils/adt/cryptohashfuncs.c
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
Reference in New Issue
Block a user