1/*-------------------------------------------------------------------------
4 * Constants and common utilities related to MD5.
6 * These definitions are needed by both frontend and backend code to work
7 * with MD5-encrypted passwords.
9 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
10 * Portions Copyright (c) 1994, Regents of the University of California
12 * src/include/common/md5.h
14 *-------------------------------------------------------------------------
19/* Size of result generated by MD5 computation */
20 #define MD5_DIGEST_LENGTH 16
21/* Block size for MD5 */
22 #define MD5_BLOCK_SIZE 64
24/* password-related data */
25 #define MD5_PASSWD_CHARSET "0123456789abcdef"
26 #define MD5_PASSWD_LEN 35
28/* Utilities common to all the MD5 implementations, as of md5_common.c */
34 size_t salt_len,
char *
buf,
bool pg_md5_binary(const void *buff, size_t len, uint8 *outbuf, const char **errstr)
bool pg_md5_encrypt(const char *passwd, const uint8 *salt, size_t salt_len, char *buf, const char **errstr)
bool pg_md5_hash(const void *buff, size_t len, char *hexsum, const char **errstr)