postgresql/src/include/libpq/crypt.h

22 lines
550 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* crypt.h
* Interface to libpq/crypt.c
*
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2010-09-20 16:08:53 -04:00
* src/include/libpq/crypt.h
*
*-------------------------------------------------------------------------
*/
#ifndef PG_CRYPT_H
#define PG_CRYPT_H
#include "libpq/libpq-be.h"
extern int md5_crypt_verify(const Port *port, const char *user,
2003-08-03 20:43:34 -04:00
char *client_pass);
2002-09-04 16:31:48 -04:00
#endif