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-2024, 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 */
22 extern int pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn);
23 extern char *pg_fe_getusername(uid_t user_id, PQExpBuffer errorMessage);
24 extern char *pg_fe_getauthname(PQExpBuffer errorMessage);
25 
26 /* Mechanisms in fe-auth-scram.c */
27 extern const pg_fe_sasl_mech pg_scram_mech;
28 extern 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:960
char * pg_fe_getauthname(PQExpBuffer errorMessage)
Definition: fe-auth.c:1213
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:1168
uint32 AuthRequest
Definition: pqcomm.h:121
static char * password
Definition: streamutil.c:54
PGconn * conn
Definition: streamutil.c:55
int iterations
Definition: thread-thread.c:39
int uid_t
Definition: win32_port.h:244