1997-12-03 19:34:01 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* crypt.h
|
2001-11-02 13:39:57 -05:00
|
|
|
* Interface to libpq/crypt.c
|
1997-12-03 19:34:01 -05:00
|
|
|
*
|
2012-01-01 18:01:58 -05:00
|
|
|
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
|
2001-11-02 13:39:57 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1997-12-03 19:34:01 -05:00
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/libpq/crypt.h
|
2001-11-05 12:46:40 -05:00
|
|
|
*
|
1997-12-03 19:34:01 -05:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PG_CRYPT_H
|
|
|
|
|
#define PG_CRYPT_H
|
|
|
|
|
|
1999-07-15 19:04:24 -04:00
|
|
|
#include "libpq/libpq-be.h"
|
1997-12-03 19:34:01 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
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
|
|
|
|
1997-12-03 19:34:01 -05:00
|
|
|
#endif
|