OSDN Git Service

Fix typo in sslmode documentation
[pg-rex/syncrep.git] / src / include / libpq / crypt.h
1 /*-------------------------------------------------------------------------
2  *
3  * crypt.h
4  *        Interface to libpq/crypt.c
5  *
6  * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * src/include/libpq/crypt.h
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PG_CRYPT_H
14 #define PG_CRYPT_H
15
16 #include "libpq/libpq-be.h"
17
18 extern int md5_crypt_verify(const Port *port, const char *user,
19                                  char *client_pass);
20
21 #endif