Header And Logo

PostgreSQL
| The world's most advanced open source database.

crypt.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * crypt.h
00004  *    Interface to libpq/crypt.c
00005  *
00006  * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
00007  * Portions Copyright (c) 1994, Regents of the University of California
00008  *
00009  * src/include/libpq/crypt.h
00010  *
00011  *-------------------------------------------------------------------------
00012  */
00013 #ifndef PG_CRYPT_H
00014 #define PG_CRYPT_H
00015 
00016 #include "libpq/libpq-be.h"
00017 
00018 extern int md5_crypt_verify(const Port *port, const char *user,
00019                  char *client_pass);
00020 
00021 #endif