Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / libpq / crypt.h
blob0c72bc3efaef1d2a4f16a770c5f15ebf416b64d2
1 /*-------------------------------------------------------------------------
3 * crypt.h
4 * Interface to libpq/crypt.c
6 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * $PostgreSQL$
11 *-------------------------------------------------------------------------
13 #ifndef PG_CRYPT_H
14 #define PG_CRYPT_H
16 #include "libpq/libpq-be.h"
18 extern int md5_crypt_verify(const Port *port, const char *user,
19 char *client_pass);
21 #endif