mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
13 lines
237 B
C
13 lines
237 B
C
#ifndef PASSWORD_H
|
|
#define PASSWORD_H
|
|
|
|
#include <libpq/hba.h>
|
|
#include <libpq/pqcomm.h>
|
|
|
|
#define PWFILE_NAME_SIZE USERMAP_NAME_SIZE
|
|
|
|
int
|
|
verify_password(char *user, char *password, Port *port,
|
|
char *database, char *DataDir);
|
|
|
|
#endif
|