PostgreSQL Source Code git master
fe-auth.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * fe-auth.h
4 *
5 * Definitions for network authentication routines
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/interfaces/libpq/fe-auth.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef FE_AUTH_H
15#define FE_AUTH_H
16
17#include "libpq-fe.h"
18#include "libpq-int.h"
19
20
21/* Prototypes for functions in fe-auth.c */
22extern int pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn);
23extern char *pg_fe_getusername(uid_t user_id, PQExpBuffer errorMessage);
24extern char *pg_fe_getauthname(PQExpBuffer errorMessage);
25
26/* Mechanisms in fe-auth-scram.c */
28extern char *pg_fe_scram_build_secret(const char *password,
29 int iterations,
30 const char **errstr);
31
32#endif /* FE_AUTH_H */
const pg_fe_sasl_mech pg_scram_mech
Definition: fe-auth-scram.c:32
int pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn)
Definition: fe-auth.c:989
char * pg_fe_getauthname(PQExpBuffer errorMessage)
Definition: fe-auth.c:1255
char * pg_fe_scram_build_secret(const char *password, int iterations, const char **errstr)
char * pg_fe_getusername(uid_t user_id, PQExpBuffer errorMessage)
Definition: fe-auth.c:1197
uint32 AuthRequest
Definition: pqcomm.h:122
static char * password
Definition: streamutil.c:52
PGconn * conn
Definition: streamutil.c:53
int iterations
Definition: thread-thread.c:39
int uid_t
Definition: win32_port.h:234